From: vinod.koul@intel.com (Vinod Koul)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/5] dmaengine: Support for querying maximum trasnfer length (of an SG element)
Date: Tue, 26 Sep 2017 22:24:13 +0530 [thread overview]
Message-ID: <20170926165413.GQ30097@localhost> (raw)
In-Reply-To: <02509904-4ae8-c6f8-3514-5f77d665c9a6@ti.com>
On Fri, Sep 22, 2017 at 12:39:38PM +0300, Peter Ujfalusi wrote:
>
> Texas Instruments Finland Oy, Porkkalankatu 22, 00180 Helsinki. Y-tunnus/Business ID: 0615521-4. Kotipaikka/Domicile: Helsinki
>
> On 2017-09-21 20:14, Vinod Koul wrote:
> > On Tue, Sep 12, 2017 at 01:44:22PM +0300, Peter Ujfalusi wrote:
> >> Certain DMA engines have limitation on the maximum size of a transfer they
> >> can support. This size limitation is per SG element or for period length in
> >> cyclic transfers.
> >> In TI's eDMA and sDMA this limitation is not really a length limit, but it
> >> is the number of bursts that we can support in one transfer.
> >>
> >> With this callback the DMA drivers can provide hints to clients on how they
> >> should set up their buffers (sglist, cyclic buffer). Without this the
> >> clients must have open coded workarounds in place for each and every DMA
> >> engine they might be interfacing with to have correct length for the
> >> transfers.
> >>
> >> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
> >> ---
> >> include/linux/dmaengine.h | 14 ++++++++++++++
> >> 1 file changed, 14 insertions(+)
> >>
> >> diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h
> >> index 8319101170fc..739824b94c1b 100644
> >> --- a/include/linux/dmaengine.h
> >> +++ b/include/linux/dmaengine.h
> >> @@ -705,6 +705,9 @@ struct dma_filter {
> >> * @device_prep_dma_imm_data: DMA's 8 byte immediate data to the dst address
> >> * @device_config: Pushes a new configuration to a channel, return 0 or an error
> >> * code
> >> + * @device_get_max_len: Get the maximum supported length in bytes of a slave
> >> + * transfer based on the set dma_slave_config. The length limitation
> >> + * applies to each SG element's length.
> >> * @device_pause: Pauses any transfer happening on a channel. Returns
> >> * 0 or an error code
> >> * @device_resume: Resumes any transfer on a channel previously
> >> @@ -792,6 +795,8 @@ struct dma_device {
> >>
> >> int (*device_config)(struct dma_chan *chan,
> >> struct dma_slave_config *config);
> >> + u32 (*device_get_max_len)(struct dma_chan *chan,
> >> + enum dma_transfer_direction dir);
> >> int (*device_pause)(struct dma_chan *chan);
> >> int (*device_resume)(struct dma_chan *chan);
> >> int (*device_terminate_all)(struct dma_chan *chan);
> >> @@ -812,6 +817,15 @@ static inline int dmaengine_slave_config(struct dma_chan *chan,
> >> return -ENOSYS;
> >> }
> >>
> >> +static inline u32 dmaengine_slave_get_max_len(struct dma_chan *chan,
> >> + enum dma_transfer_direction dir)
> >> +{
> >> + if (chan->device->device_get_max_len)
> >> + return chan->device->device_get_max_len(chan, dir);
> >
> > not another callback :)
> >
> > on a serious note, why shouldn't this be one more capability in
> > dma_slave_caps. looking at next patch it seems static
>
> It is not really static, the size in bytes depends on the dev_width and
> the maxburst:
> dev_width * burst * (SZ_64K - 1);
well DMAengines work on FIFOs, in above you are giving length as SZ_64K - 1
'items' which IIUC in DMAengine terms for bytes would always refer wrt width
used and burst applied.
Return length in bytes does make sense (from user PoV), but then you need to
"know" the applied width and burst. How do you decide those?
>
> The number of (dev_width * burst) is static, yes. Other DMA engines
> might have similar interpretation, but returning the maximum length in
> bytes sounded more generic for other engines to be able to adopt.
>
> Initially I had maxburst_cnt in struct dma_device for maximum burst
> count within one SG, but it felt clumsy and not too intuitive either.
>
> - P?ter
>
--
~Vinod
next prev parent reply other threads:[~2017-09-26 16:54 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-12 10:44 [PATCH 0/5] dmaengine: core/edma/omap-dma: maximum SG len reporting Peter Ujfalusi
2017-09-12 10:44 ` [PATCH 1/5] dmaengine: edma: Implement protection for invalid max_burst Peter Ujfalusi
2017-09-21 17:10 ` Vinod Koul
2017-09-12 10:44 ` [PATCH 2/5] dmaengine: omap-dma: " Peter Ujfalusi
2017-09-21 17:12 ` Vinod Koul
2017-09-12 10:44 ` [PATCH 3/5] dmaengine: Support for querying maximum trasnfer length (of an SG element) Peter Ujfalusi
2017-09-21 17:14 ` Vinod Koul
2017-09-22 9:39 ` Peter Ujfalusi
2017-09-26 16:54 ` Vinod Koul [this message]
2017-10-02 11:24 ` Peter Ujfalusi
2017-10-08 5:25 ` Vinod Koul
2017-10-11 15:47 ` Peter Ujfalusi
2017-10-12 13:57 ` Vinod Koul
2017-09-12 10:44 ` [PATCH 4/5] dmaengine: edma: Implement device_get_max_len callback Peter Ujfalusi
2017-09-12 10:44 ` [PATCH 5/5] dmaengine: omap-dma: " Peter Ujfalusi
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=20170926165413.GQ30097@localhost \
--to=vinod.koul@intel.com \
--cc=linux-arm-kernel@lists.infradead.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;
as well as URLs for NNTP newsgroup(s).