diff options
author | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> | 2014-05-16 15:18:53 -0400 |
---|---|---|
committer | Kumar Gala <galak@codeaurora.org> | 2014-09-11 13:07:40 -0400 |
commit | edb81ca3bf586ad526ee67b245cb87f7c7142a87 (patch) | |
tree | ded0d2b4eaf21543853e3b116d04fe93bfc1d897 | |
parent | 045644ffe618f140791643aa8b78ad2587e8de0f (diff) |
ARM: DT: QCOM: apq8064: Add dma support for sdcc node
This patch adds dma support in both sdcc1 and sdcc3 device node.
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Kumar Gala <galak@codeaurora.org>
-rw-r--r-- | arch/arm/boot/dts/qcom-apq8064.dtsi | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/qcom-apq8064.dtsi b/arch/arm/boot/dts/qcom-apq8064.dtsi index 32075e84872e..b1e476ac5edf 100644 --- a/arch/arm/boot/dts/qcom-apq8064.dtsi +++ b/arch/arm/boot/dts/qcom-apq8064.dtsi | |||
@@ -206,6 +206,26 @@ | |||
206 | regulator-always-on; | 206 | regulator-always-on; |
207 | }; | 207 | }; |
208 | 208 | ||
209 | sdcc1bam:dma@12402000{ | ||
210 | compatible = "qcom,bam-v1.3.0"; | ||
211 | reg = <0x12402000 0x8000>; | ||
212 | interrupts = <0 98 0>; | ||
213 | clocks = <&gcc SDC1_H_CLK>; | ||
214 | clock-names = "bam_clk"; | ||
215 | #dma-cells = <1>; | ||
216 | qcom,ee = <0>; | ||
217 | }; | ||
218 | |||
219 | sdcc3bam:dma@12182000{ | ||
220 | compatible = "qcom,bam-v1.3.0"; | ||
221 | reg = <0x12182000 0x8000>; | ||
222 | interrupts = <0 96 0>; | ||
223 | clocks = <&gcc SDC3_H_CLK>; | ||
224 | clock-names = "bam_clk"; | ||
225 | #dma-cells = <1>; | ||
226 | qcom,ee = <0>; | ||
227 | }; | ||
228 | |||
209 | amba { | 229 | amba { |
210 | compatible = "arm,amba-bus"; | 230 | compatible = "arm,amba-bus"; |
211 | #address-cells = <1>; | 231 | #address-cells = <1>; |
@@ -226,6 +246,8 @@ | |||
226 | cap-sd-highspeed; | 246 | cap-sd-highspeed; |
227 | cap-mmc-highspeed; | 247 | cap-mmc-highspeed; |
228 | vmmc-supply = <&vsdcc_fixed>; | 248 | vmmc-supply = <&vsdcc_fixed>; |
249 | dmas = <&sdcc1bam 2>, <&sdcc1bam 1>; | ||
250 | dma-names = "tx", "rx"; | ||
229 | }; | 251 | }; |
230 | 252 | ||
231 | sdcc3: sdcc@12180000 { | 253 | sdcc3: sdcc@12180000 { |
@@ -243,6 +265,8 @@ | |||
243 | max-frequency = <192000000>; | 265 | max-frequency = <192000000>; |
244 | no-1-8-v; | 266 | no-1-8-v; |
245 | vmmc-supply = <&vsdcc_fixed>; | 267 | vmmc-supply = <&vsdcc_fixed>; |
268 | dmas = <&sdcc3bam 2>, <&sdcc3bam 1>; | ||
269 | dma-names = "tx", "rx"; | ||
246 | }; | 270 | }; |
247 | }; | 271 | }; |
248 | }; | 272 | }; |