thermal: fix Mediatek thermal controller build
[linux/fpc-iii.git] / Documentation / devicetree / bindings / sound / sunxi,sun4i-spdif.txt
blob13503aa505a9cc4e4a3920f69e1fb61c6746fa09
1 Allwinner Sony/Philips Digital Interface Format (S/PDIF) Controller
3 The Allwinner S/PDIF audio block is a transceiver that allows the
4 processor to receive and transmit digital audio via an coaxial cable or
5 a fibre cable.
6 For now only playback is supported.
8 Required properties:
10   - compatible          : should be one of the following:
11     - "allwinner,sun4i-a10-spdif": for the Allwinner A10 SoC
13   - reg                 : Offset and length of the register set for the device.
15   - interrupts          : Contains the spdif interrupt.
17   - dmas                : Generic dma devicetree binding as described in
18                           Documentation/devicetree/bindings/dma/dma.txt.
20   - dma-names           : Two dmas have to be defined, "tx" and "rx".
22   - clocks              : Contains an entry for each entry in clock-names.
24   - clock-names         : Includes the following entries:
25         "apb"             clock for the spdif bus.
26         "spdif"           clock for spdif controller.
28 Example:
30 spdif: spdif@01c21000 {
31         compatible = "allwinner,sun4i-a10-spdif";
32         reg = <0x01c21000 0x40>;
33         interrupts = <13>;
34         clocks = <&apb0_gates 1>, <&spdif_clk>;
35         clock-names = "apb", "spdif";
36         dmas = <&dma 0 2>, <&dma 0 2>;
37         dma-names = "rx", "tx";
38         status = "okay";