diff options
author | Stefan Agner <stefan.agner@toradex.com> | 2015-01-29 17:59:37 +0100 |
---|---|---|
committer | Stefan Agner <stefan.agner@toradex.com> | 2015-02-02 15:55:16 +0100 |
commit | 5757b6753c3290e7b7e8ce2047368eac572392ee (patch) | |
tree | 8d39347a3bb9b4e48d20473a70b1e78451b0298c | |
parent | 3f885b0dbe9b967073026e9688e9993d78432419 (diff) |
ARM: dts: vf610: complete clock definition for SAI0/SAI2
Complete the clock definitions for SAI0/SAI2. On Vybrid, there are
not much useful choices, actually you can choose between the SAI
input clock and no clock. However, not having them specified leads
to error message due to missing clocks.
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
-rw-r--r-- | arch/arm/boot/dts/vfxxx.dtsi | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi index d27ed8a96c48..6eeaf9ddbc34 100644 --- a/arch/arm/boot/dts/vfxxx.dtsi +++ b/arch/arm/boot/dts/vfxxx.dtsi @@ -164,8 +164,10 @@ sai0: sai@4002f000 { compatible = "fsl,vf610-sai"; reg = <0x4002f000 0x1000>; - clocks = <&clks VF610_CLK_SAI0>; - clock-names = "bus"; + clocks = <&clks VF610_CLK_SAI0>, + <&clks VF610_CLK_SAI0>, + <&clks 0>, <&clks 0>; + clock-names = "bus", "mclk1", "mclk2", "mclk3"; dma-names = "tx", "rx"; dmas = <&edma0 0 17>, <&edma0 0 16>; @@ -175,8 +177,10 @@ sai2: sai@40031000 { compatible = "fsl,vf610-sai"; reg = <0x40031000 0x1000>; - clocks = <&clks VF610_CLK_SAI2>; - clock-names = "bus"; + clocks = <&clks VF610_CLK_SAI2>, + <&clks VF610_CLK_SAI2>, + <&clks 0>, <&clks 0>; + clock-names = "bus", "mclk1", "mclk2", "mclk3"; dma-names = "tx", "rx"; dmas = <&edma0 0 21>, <&edma0 0 20>; |