1Freescale Sony/Philips Digital Interface Format (S/PDIF) Controller
2
3The Freescale S/PDIF audio block is a stereo transceiver that allows the
4processor to receive and transmit digital audio via an coaxial cable or
5a fibre cable.
6
7Required properties:
8
9  - compatible		: Compatible list, must contain "fsl,imx35-spdif".
10
11  - reg			: Offset and length of the register set for the device.
12
13  - interrupts		: Contains the spdif interrupt.
14
15  - dmas		: Generic dma devicetree binding as described in
16			  Documentation/devicetree/bindings/dma/dma.txt.
17
18  - dma-names		: Two dmas have to be defined, "tx" and "rx".
19
20  - clocks		: Contains an entry for each entry in clock-names.
21
22  - clock-names		: Includes the following entries:
23	"core"		  The core clock of spdif controller.
24	"rxtx<0-7>"	  Clock source list for tx and rx clock.
25			  This clock list should be identical to the source
26			  list connecting to the spdif clock mux in "SPDIF
27			  Transceiver Clock Diagram" of SoC reference manual.
28			  It can also be referred to TxClk_Source bit of
29			  register SPDIF_STC.
30	"spba"		  The spba clock is required when SPDIF is placed as a
31			  bus slave of the Shared Peripheral Bus and when two
32			  or more bus masters (CPU, DMA or DSP) try to access
33			  it. This property is optional depending on the SoC
34			  design.
35
36Optional properties:
37
38   - big-endian		: If this property is absent, the native endian mode
39			  will be in use as default, or the big endian mode
40			  will be in use for all the device registers.
41
42Example:
43
44spdif: spdif@2004000 {
45	compatible = "fsl,imx35-spdif";
46	reg = <0x02004000 0x4000>;
47	interrupts = <0 52 0x04>;
48	dmas = <&sdma 14 18 0>,
49	       <&sdma 15 18 0>;
50	dma-names = "rx", "tx";
51
52	clocks = <&clks 197>, <&clks 3>,
53	       <&clks 197>, <&clks 107>,
54	       <&clks 0>, <&clks 118>,
55	       <&clks 62>, <&clks 139>,
56	       <&clks 0>;
57	clock-names = "core", "rxtx0",
58		"rxtx1", "rxtx2",
59		"rxtx3", "rxtx4",
60		"rxtx5", "rxtx6",
61		"rxtx7";
62
63	big-endian;
64};
65