diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-07-02 10:58:49 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-07-18 04:49:43 -0400 |
commit | aeb885387f3d18c6fc9d5cbd6895bcd10c2703f5 (patch) | |
tree | 809b1f9b1c90ec5b51a89e4a5e701a3e8d1c9228 /arch/arm/boot/dts/imx6sx.dtsi | |
parent | 37183793f5de7ffd6d5421ff4caa3a972a0a887c (diff) |
ARM: dts: imx6sx: Fix sdma node
Use the correct compatible string for sdma and also provide the sdma firmware
path.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/boot/dts/imx6sx.dtsi')
-rw-r--r-- | arch/arm/boot/dts/imx6sx.dtsi | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/imx6sx.dtsi b/arch/arm/boot/dts/imx6sx.dtsi index a7d74e7324e3..29290780206a 100644 --- a/arch/arm/boot/dts/imx6sx.dtsi +++ b/arch/arm/boot/dts/imx6sx.dtsi | |||
@@ -703,13 +703,15 @@ | |||
703 | }; | 703 | }; |
704 | 704 | ||
705 | sdma: sdma@020ec000 { | 705 | sdma: sdma@020ec000 { |
706 | compatible = "fsl,imx6sx-sdma"; | 706 | compatible = "fsl,imx6sx-sdma", "fsl,imx35-sdma"; |
707 | reg = <0x020ec000 0x4000>; | 707 | reg = <0x020ec000 0x4000>; |
708 | interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; | 708 | interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; |
709 | clocks = <&clks IMX6SX_CLK_SDMA>, | 709 | clocks = <&clks IMX6SX_CLK_SDMA>, |
710 | <&clks IMX6SX_CLK_SDMA>; | 710 | <&clks IMX6SX_CLK_SDMA>; |
711 | clock-names = "ipg", "ahb"; | 711 | clock-names = "ipg", "ahb"; |
712 | #dma-cells = <3>; | 712 | #dma-cells = <3>; |
713 | /* imx6sx reuses imx6q sdma firmware */ | ||
714 | fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin"; | ||
713 | }; | 715 | }; |
714 | }; | 716 | }; |
715 | 717 | ||