diff options
author | Stefan Agner <stefan@agner.ch> | 2014-11-04 14:25:33 +0100 |
---|---|---|
committer | Stefan Agner <stefan.agner@toradex.com> | 2015-07-15 14:49:33 +0200 |
commit | 593a6df222ee37c96a374c2c3464840759901349 (patch) | |
tree | c4eb44582ea770eabe55fe299b4f7051565308ef /arch/arm/boot/dts/vfxxx.dtsi | |
parent | b953c0d234bc72e8489d3bf51a276c5c4ec85345 (diff) |
ARM: dts: vf610: add SAI0/SAI2 and AC97 sound
Activate SAI0/SAI2 according to our needs and create a sound node
which enables the Wolfson WM9712 compatible AC97 codec.
Diffstat (limited to 'arch/arm/boot/dts/vfxxx.dtsi')
-rw-r--r-- | arch/arm/boot/dts/vfxxx.dtsi | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/vfxxx.dtsi b/arch/arm/boot/dts/vfxxx.dtsi index 4aa335166be7..3b48cad955d7 100644 --- a/arch/arm/boot/dts/vfxxx.dtsi +++ b/arch/arm/boot/dts/vfxxx.dtsi @@ -174,12 +174,24 @@ status = "disabled"; }; + sai0: sai@4002f000 { + compatible = "fsl,vf610-sai"; + reg = <0x4002f000 0x1000>; + interrupts = <84 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&clks VF610_CLK_SAI0>; + clock-names = "bus"; + dma-names = "tx", "rx"; + dmas = <&edma0 0 17>, + <&edma0 0 16>; + status = "disabled"; + }; + sai2: sai@40031000 { compatible = "fsl,vf610-sai"; reg = <0x40031000 0x1000>; interrupts = <86 IRQ_TYPE_LEVEL_HIGH>; clocks = <&clks VF610_CLK_SAI2>; - clock-names = "sai"; + clock-names = "bus"; dma-names = "tx", "rx"; dmas = <&edma0 0 21>, <&edma0 0 20>; |