Merge tag 'rproc-v4.16' of git://github.com/andersson/remoteproc
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / sound / st,stm32-sai.txt
1 STMicroelectronics STM32 Serial Audio Interface (SAI).
2
3 The SAI interface (Serial Audio Interface) offers a wide set of audio protocols
4 as I2S standards, LSB or MSB-justified, PCM/DSP, TDM, and AC'97.
5 The SAI contains two independent audio sub-blocks. Each sub-block has
6 its own clock generator and I/O lines controller.
7
8 Required properties:
9   - compatible: Should be "st,stm32f4-sai" or "st,stm32h7-sai"
10   - reg: Base address and size of SAI common register set.
11   - clocks: Must contain phandle and clock specifier pairs for each entry
12         in clock-names.
13   - clock-names: Must contain "pclk" "x8k" and "x11k"
14         "pclk": Clock which feeds the peripheral bus interface.
15                 Mandatory for "st,stm32h7-sai" compatible.
16                 Not used for "st,stm32f4-sai" compatible.
17         "x8k": SAI parent clock for sampling rates multiple of 8kHz.
18         "x11k": SAI parent clock for sampling rates multiple of 11.025kHz.
19   - interrupts: cpu DAI interrupt line shared by SAI sub-blocks
20
21 Optional properties:
22   - resets: Reference to a reset controller asserting the SAI
23
24 SAI subnodes:
25 Two subnodes corresponding to SAI sub-block instances A et B can be defined.
26 Subnode can be omitted for unsused sub-block.
27
28 SAI subnodes required properties:
29   - compatible: Should be "st,stm32-sai-sub-a" or "st,stm32-sai-sub-b"
30         for SAI sub-block A or B respectively.
31   - reg: Base address and size of SAI sub-block register set.
32   - clocks: Must contain one phandle and clock specifier pair
33         for sai_ck which feeds the internal clock generator.
34   - clock-names: Must contain "sai_ck".
35   - dmas: see Documentation/devicetree/bindings/dma/stm32-dma.txt
36   - dma-names: identifier string for each DMA request line
37         "tx": if sai sub-block is configured as playback DAI
38         "rx": if sai sub-block is configured as capture DAI
39   - pinctrl-names: should contain only value "default"
40   - pinctrl-0: see Documentation/devicetree/bindings/pinctrl/pinctrl-stm32.txt
41
42 SAI subnodes Optional properties:
43   - st,sync: specify synchronization mode.
44         By default SAI sub-block is in asynchronous mode.
45         This property sets SAI sub-block as slave of another SAI sub-block.
46         Must contain the phandle and index of the sai sub-block providing
47         the synchronization.
48
49 The device node should contain one 'port' child node with one child 'endpoint'
50 node, according to the bindings defined in Documentation/devicetree/bindings/
51 graph.txt.
52
53 Example:
54 sound_card {
55         compatible = "audio-graph-card";
56         dais = <&sai1b_port>;
57 };
58
59 sai1: sai1@40015800 {
60         compatible = "st,stm32h7-sai";
61         #address-cells = <1>;
62         #size-cells = <1>;
63         ranges = <0 0x40015800 0x400>;
64         reg = <0x40015800 0x4>;
65         clocks = <&rcc SAI1_CK>, <&rcc PLL1_Q>, <&rcc PLL2_P>;
66         clock-names = "pclk", "x8k", "x11k";
67         interrupts = <87>;
68
69         sai1a: audio-controller@40015804 {
70                 compatible = "st,stm32-sai-sub-a";
71                 reg = <0x4 0x1C>;
72                 clocks = <&rcc SAI1_CK>;
73                 clock-names = "sai_ck";
74                 dmas = <&dmamux1 1 87 0x400 0x0>;
75                 dma-names = "tx";
76                 pinctrl-names = "default";
77                 pinctrl-0 = <&pinctrl_sai1a>;
78
79                 sai1b_port: port {
80                         cpu_endpoint: endpoint {
81                                 remote-endpoint = <&codec_endpoint>;
82                                 format = "i2s";
83                         };
84                 };
85         };
86 };
87
88 audio-codec {
89         codec_port: port {
90                 codec_endpoint: endpoint {
91                         remote-endpoint = <&cpu_endpoint>;
92                 };
93         };
94 };