diff options
author | Rongjun Ying <rongjun.ying@csr.com> | 2014-07-01 22:45:42 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-03 12:11:41 -0400 |
commit | 374a6679bef2e79fc2a27eea79b0400295e39df0 (patch) | |
tree | f6a5dac8c4c0d85d4b0ca897d040d4a9243b9b7d /Documentation/devicetree | |
parent | 2bd8d1d5cf8905c7652fa90a8ec952ba52f820ac (diff) |
ASoC: sirf: Add device tree binding for the USP audio device
Signed-off-by: Rongjun Ying <rongjun.ying@csr.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/sound/sirf-usp.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/sound/sirf-usp.txt b/Documentation/devicetree/bindings/sound/sirf-usp.txt new file mode 100644 index 000000000000..02f85b32d359 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/sirf-usp.txt | |||
@@ -0,0 +1,27 @@ | |||
1 | * SiRF SoC USP module | ||
2 | |||
3 | Required properties: | ||
4 | - compatible: "sirf,prima2-usp-pcm" | ||
5 | - reg: Base address and size entries: | ||
6 | - dmas: List of DMA controller phandle and DMA request line ordered pairs. | ||
7 | - dma-names: Identifier string for each DMA request line in the dmas property. | ||
8 | These strings correspond 1:1 with the ordered pairs in dmas. | ||
9 | |||
10 | One of the DMA channels will be responsible for transmission (should be | ||
11 | named "tx") and one for reception (should be named "rx"). | ||
12 | |||
13 | - clocks: USP controller clock source | ||
14 | - pinctrl-names: Must contain a "default" entry. | ||
15 | - pinctrl-NNN: One property must exist for each entry in pinctrl-names. | ||
16 | |||
17 | Example: | ||
18 | usp0: usp@b0080000 { | ||
19 | compatible = "sirf,prima2-usp-pcm"; | ||
20 | reg = <0xb0080000 0x10000>; | ||
21 | clocks = <&clks 28>; | ||
22 | dmas = <&dmac1 1>, <&dmac1 2>; | ||
23 | dma-names = "rx", "tx"; | ||
24 | pinctrl-names = "default"; | ||
25 | pinctrl-0 = <&usp0_only_utfs_pins_a>; | ||
26 | }; | ||
27 | |||