diff options
author | Sanchayan Maity <maitysanchayan@gmail.com> | 2016-11-14 18:07:01 +0530 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2016-11-14 22:02:15 +0800 |
commit | 4743ced991308d473f0d87f626c833b8731a7290 (patch) | |
tree | d42df81eb920d6b14b0c2d800200707e3d6dd865 | |
parent | 7f107887d1995c819389f292828097cac4ec4396 (diff) | |
download | op-kernel-dev-4743ced991308d473f0d87f626c833b8731a7290.zip op-kernel-dev-4743ced991308d473f0d87f626c833b8731a7290.tar.gz |
ARM: dts: vfxxx: Enable DMA for DSPI2 and DSPI3
Enable DMA for DSPI2 and DSPI3 on Vybrid.
Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
-rw-r--r-- | arch/arm/boot/dts/vfxxx.dtsi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi index 000550f..e9d2847 100644 --- a/arch/arm/boot/dts/vfxxx.dtsi +++ b/arch/arm/boot/dts/vfxxx.dtsi @@ -573,6 +573,9 @@ clocks = <&clks VF610_CLK_DSPI2>; clock-names = "dspi"; spi-num-chipselects = <2>; + dmas = <&edma1 0 10>, + <&edma1 0 11>; + dma-names = "rx", "tx"; status = "disabled"; }; @@ -585,6 +588,9 @@ clocks = <&clks VF610_CLK_DSPI3>; clock-names = "dspi"; spi-num-chipselects = <2>; + dmas = <&edma1 0 12>, + <&edma1 0 13>; + dma-names = "rx", "tx"; status = "disabled"; }; |