From: Vinod Koul <vinod.koul@intel.com>
To: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Dan Williams <dan.j.williams@intel.com>,
dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v2 1/6] dmaengine: Update documentation for inline wrappers
Date: Fri, 25 Jul 2014 15:57:05 +0530 [thread overview]
Message-ID: <20140725102705.GR8181@intel.com> (raw)
In-Reply-To: <1405095208-14642-1-git-send-email-geert+renesas@glider.be>
On Fri, Jul 11, 2014 at 06:13:23PM +0200, Geert Uytterhoeven wrote:
> During the last few years, several inline wrappers for DMA operations have
> been introduced:
> - commit 16052827d98fbc13c31ebad560af4bd53e2b4dd5 ("dmaengine/dma_slave:
> introduce inline wrappers"),
> - commit a14acb4ac2a1486f6633c55eb7f7ded07f3ec9fc ("DMAEngine: add
> dmaengine_prep_interleaved_dma wrapper for interleaved api"),
> - commit 6e3ecaf0ad49de0bed829d409a164e7107c02993 ("dmaengine: add
> wrapper functions for device control functions").
>
> Update the documentation to use the wrappers.
>
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
> v2:
> - Added one more conversion in the textual explanation.
I have already applied v1, can you please send the update on added ones
Thanks
--
~Vinod
> ---
> Documentation/dmaengine.txt | 15 +++++++--------
> 1 file changed, 7 insertions(+), 8 deletions(-)
>
> diff --git a/Documentation/dmaengine.txt b/Documentation/dmaengine.txt
> index 87d3f192e160..11fb87ff6cd0 100644
> --- a/Documentation/dmaengine.txt
> +++ b/Documentation/dmaengine.txt
> @@ -84,21 +84,21 @@ The slave DMA usage consists of following steps:
> the given transaction.
>
> Interface:
> - struct dma_async_tx_descriptor *(*chan->device->device_prep_slave_sg)(
> + struct dma_async_tx_descriptor *dmaengine_prep_slave_sg(
> struct dma_chan *chan, struct scatterlist *sgl,
> unsigned int sg_len, enum dma_data_direction direction,
> unsigned long flags);
>
> - struct dma_async_tx_descriptor *(*chan->device->device_prep_dma_cyclic)(
> + struct dma_async_tx_descriptor *dmaengine_prep_dma_cyclic(
> struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
> size_t period_len, enum dma_data_direction direction);
>
> - struct dma_async_tx_descriptor *(*device_prep_interleaved_dma)(
> + struct dma_async_tx_descriptor *dmaengine_prep_interleaved_dma(
> struct dma_chan *chan, struct dma_interleaved_template *xt,
> unsigned long flags);
>
> The peripheral driver is expected to have mapped the scatterlist for
> - the DMA operation prior to calling device_prep_slave_sg, and must
> + the DMA operation prior to calling dmaengine_prep_slave_sg(), and must
> keep the scatterlist mapped until the DMA operation has completed.
> The scatterlist must be mapped using the DMA struct device.
> If a mapping needs to be synchronized later, dma_sync_*_for_*() must be
> @@ -109,8 +109,7 @@ The slave DMA usage consists of following steps:
> if (nr_sg == 0)
> /* error */
>
> - desc = chan->device->device_prep_slave_sg(chan, sgl, nr_sg,
> - direction, flags);
> + desc = dmaengine_prep_slave_sg(chan, sgl, nr_sg, direction, flags);
>
> Once a descriptor has been obtained, the callback information can be
> added and the descriptor must then be submitted. Some DMA engine
> @@ -190,11 +189,11 @@ Further APIs:
> description of this API.
>
> This can be used in conjunction with dma_async_is_complete() and
> - the cookie returned from 'descriptor->submit()' to check for
> + the cookie returned from dmaengine_submit() to check for
> completion of a specific DMA transaction.
>
> Note:
> Not all DMA engine drivers can return reliable information for
> a running DMA channel. It is recommended that DMA engine users
> - pause or stop (via dmaengine_terminate_all) the channel before
> + pause or stop (via dmaengine_terminate_all()) the channel before
> using this API.
> --
> 1.9.1
>
--
prev parent reply other threads:[~2014-07-25 10:33 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-11 16:13 [PATCH v2 1/6] dmaengine: Update documentation for inline wrappers Geert Uytterhoeven
2014-07-11 16:13 ` [PATCH v2 trivial 2/6] crypto: ux500: Update error message for dmaengine_prep_slave_sg() API Geert Uytterhoeven
2014-07-11 16:13 ` [PATCH v2 trivial 3/6] spi: topcliff-pch: Update error messages " Geert Uytterhoeven
2014-07-14 17:23 ` Mark Brown
2014-07-16 22:22 ` Mark Brown
2014-07-11 16:13 ` [PATCH v2 trivial 4/6] serial: pch_uart: Update error message " Geert Uytterhoeven
2014-07-11 16:13 ` [PATCH v2 trivial 5/6] video: mx3fb: Update comment " Geert Uytterhoeven
2014-08-26 12:42 ` Tomi Valkeinen
2014-07-11 16:13 ` [PATCH v2 6/6] spi: atmel: Use " Geert Uytterhoeven
2014-07-16 22:27 ` Mark Brown
2014-07-25 10:27 ` Vinod Koul [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=20140725102705.GR8181@intel.com \
--to=vinod.koul@intel.com \
--cc=dan.j.williams@intel.com \
--cc=dmaengine@vger.kernel.org \
--cc=geert+renesas@glider.be \
--cc=linux-kernel@vger.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