diff options
author | Vinod Koul <vinod.koul@intel.com> | 2014-07-28 07:56:36 -0400 |
---|---|---|
committer | Vinod Koul <vinod.koul@intel.com> | 2014-07-28 07:56:36 -0400 |
commit | db0e7018191e1deb33e3ed8bb8ed89e5a4ae1ba1 (patch) | |
tree | 97dbc5853a1849bcd72c06f4191452b2adab167b /Documentation | |
parent | 8e8805d5bf704f24acb14d67d506cbd4c5893be5 (diff) | |
parent | caf18c27ddb2fb8ae2a7591b908e7efb7484e459 (diff) |
Merge commit 'renesas-rcar-audmapp-for-v3.17' into for-linus
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/dma/rcar-audmapp.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/dma/rcar-audmapp.txt b/Documentation/devicetree/bindings/dma/rcar-audmapp.txt new file mode 100644 index 000000000000..9f1d750d76de --- /dev/null +++ b/Documentation/devicetree/bindings/dma/rcar-audmapp.txt | |||
@@ -0,0 +1,29 @@ | |||
1 | * R-Car Audio DMAC peri peri Device Tree bindings | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: should be "renesas,rcar-audmapp" | ||
5 | - #dma-cells: should be <1>, see "dmas" property below | ||
6 | |||
7 | Example: | ||
8 | audmapp: audio-dma-pp@0xec740000 { | ||
9 | compatible = "renesas,rcar-audmapp"; | ||
10 | #dma-cells = <1>; | ||
11 | |||
12 | reg = <0 0xec740000 0 0x200>; | ||
13 | }; | ||
14 | |||
15 | |||
16 | * DMA client | ||
17 | |||
18 | Required properties: | ||
19 | - dmas: a list of <[DMA multiplexer phandle] [SRS/DRS value]> pairs, | ||
20 | where SRS/DRS values are fixed handles, specified in the SoC | ||
21 | manual as the value that would be written into the PDMACHCR. | ||
22 | - dma-names: a list of DMA channel names, one per "dmas" entry | ||
23 | |||
24 | Example: | ||
25 | |||
26 | dmas = <&audmapp 0x2d00 | ||
27 | &audmapp 0x3700>; | ||
28 | dma-names = "src0_ssiu0", | ||
29 | "dvc0_ssiu0"; | ||