From: mporter@ti.com (Matt Porter)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V6 1/2] of: Add generic device tree DMA helpers
Date: Wed, 19 Sep 2012 09:52:08 -0400 [thread overview]
Message-ID: <20120919135208.GA16522@beef> (raw)
In-Reply-To: <1347662517-4210-2-git-send-email-jon-hunter@ti.com>
On Fri, Sep 14, 2012 at 05:41:56PM -0500, Jon Hunter wrote:
...
Typo nits in the binding examples below...
> Documentation/devicetree/bindings/dma/dma.txt | 81 +++++++++
> drivers/of/Makefile | 2 +-
> drivers/of/dma.c | 219 +++++++++++++++++++++++++
> include/linux/of_dma.h | 45 +++++
> 4 files changed, 346 insertions(+), 1 deletion(-)
> create mode 100644 Documentation/devicetree/bindings/dma/dma.txt
> create mode 100644 drivers/of/dma.c
> create mode 100644 include/linux/of_dma.h
>
> diff --git a/Documentation/devicetree/bindings/dma/dma.txt b/Documentation/devicetree/bindings/dma/dma.txt
> new file mode 100644
> index 0000000..a4f59a5
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/dma/dma.txt
> @@ -0,0 +1,81 @@
> +* Generic DMA Controller and DMA request bindings
> +
> +Generic binding to provide a way for a driver using DMA Engine to retrieve the
> +DMA request or channel information that goes from a hardware device to a DMA
> +controller.
> +
> +
> +* DMA controller
> +
> +Required property:
> +- #dma-cells: Must be at least 1. Used to provide DMA controller
> + specific information. See DMA client binding below for
> + more details.
> +
> +Optional properties:
> +- #dma-channels: Number of DMA channels supported by the controller.
> +- #dma-requests: Number of DMA requests signals supported by the
> + controller.
> +
> +Example:
> +
> + dma: dma at 48000000 {
> + compatible = "ti,omap-sdma"
; here
> + reg = <0x48000000 0x1000>;
> + interrupts = <0 12 0x4
> + 0 13 0x4
> + 0 14 0x4
> + 0 15 0x4>;
> + #dma-cells = <1>;
> + #dma-channels = <32>;
> + #dma-requests = <127>;
> + };
> +
> +
> +* DMA client
> +
> +Client drivers should specify the DMA property using a phandle to the controller
> +followed by DMA controller specific data.
> +
> +Required property:
> +- dmas: List of one or more DMA specifiers, each consisting of
> + - A phandle pointing to DMA controller node
> + - A number of integer cells, as determined by the
> + #dma-cells property in the node referenced by phandle
> + containing DMA controller specific information. This
> + typically contains a DMA request line number or a
> + channel number, but can contain any data that is used
> + required for configuring a channel.
> +- dma-names: Contains one identifier string for each DMA specifier in
> + the dmas property. The specific strings that can be used
> + are defined in the binding of the DMA client device.
> + Multiple DMA specifiers can be used to represent
> + alternatives and in this case the dma-names for those
> + DMA specifiers must be identical (see examples).
> +
> +Examples:
> +
> +1. A device with one DMA read channel, one DMA write channel:
> +
> + i2c1: i2c at 1 {
> + ...
> + dmas = <&dma 2 /* read channel */
> + &dma 3>; /* write channel */
> + dma-names = "rx", "tx"
; here too
> + ...
> + };
> +
> +2. A single read-write channel with three alternative DMA controllers:
> +
> + dmas = <&dma1 5
> + &dma2 7
> + &dma3 2>;
> + dma-names = "rx-tx", "rx-tx", "rx-tx"
again ;
> +
> +3. A device with three channels, one of which has two alternatives:
> +
> + dmas = <&dma1 2 /* read channel */
> + &dma1 3 /* write channel */
> + &dma2 0 /* error read */
> + &dma3 0>; /* alternative error read */
> + dma-names = "rx", "tx", "error", "error";
Patch for these posted separately.
-Matt
next prev parent reply other threads:[~2012-09-19 13:52 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-14 22:41 [PATCH V6 0/2] of: Add generic device tree DMA helpers Jon Hunter
2012-09-14 22:41 ` [PATCH V6 1/2] " Jon Hunter
2012-09-14 22:46 ` Stephen Warren
2012-09-15 0:14 ` Russell King - ARM Linux
2012-09-17 20:42 ` Arnd Bergmann
2012-09-17 23:06 ` David Brown
2012-09-18 12:50 ` Arnd Bergmann
2012-09-18 22:19 ` Mitch Bradley
2012-09-18 22:32 ` Russell King - ARM Linux
2012-09-19 11:09 ` Arnd Bergmann
2012-09-19 14:40 ` Mitch Bradley
2012-09-19 13:52 ` Matt Porter [this message]
2012-09-19 14:07 ` Matt Porter
2012-09-19 14:24 ` Arnd Bergmann
2012-09-19 14:36 ` Rob Herring
2012-09-19 14:40 ` Matt Porter
2012-09-19 14:50 ` Arnd Bergmann
2012-09-19 21:25 ` Mitch Bradley
2012-09-19 14:10 ` Rob Herring
2012-09-14 22:41 ` [PATCH V6 2/2] dmaengine: add helper function to request a slave DMA channel Jon Hunter
2012-09-17 3:33 ` Vinod Koul
2012-09-17 11:59 ` Arnd Bergmann
2012-09-17 22:36 ` Russell King - ARM Linux
2012-09-18 3:13 ` Vinod Koul
2012-09-18 13:21 ` Matt Porter
2012-09-18 15:20 ` Arnd Bergmann
2012-09-18 18:10 ` Russell King - ARM Linux
2012-09-24 22:25 ` Jon Hunter
2012-09-25 4:35 ` Vinod Koul
2012-10-16 2:43 ` Shawn Guo
2012-10-16 2:39 ` Vinod Koul
2012-11-09 20:01 ` Jon Hunter
2012-11-16 1:37 ` Vinod Koul
2012-11-16 8:39 ` Nicolas Ferre
2012-11-16 15:45 ` Jon Hunter
2012-11-28 17:06 ` Vinod Koul
2012-12-19 17:12 ` Jon Hunter
2012-12-20 14:57 ` Vinod Koul
2012-09-18 3:00 ` 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=20120919135208.GA16522@beef \
--to=mporter@ti.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).