Linux-libre 5.4.48-gnu
[librecmc/linux-libre.git] / Documentation / devicetree / bindings / sound / amlogic,axg-fifo.txt
1 * Amlogic Audio FIFO controllers
2
3 Required properties:
4 - compatible: 'amlogic,axg-toddr' or
5               'amlogic,axg-toddr' or
6               'amlogic,g12a-frddr' or
7               'amlogic,g12a-toddr' or
8               'amlogic,sm1-frddr' or
9               'amlogic,sm1-toddr'
10 - reg: physical base address of the controller and length of memory
11        mapped region.
12 - interrupts: interrupt specifier for the fifo.
13 - clocks: phandle to the fifo peripheral clock provided by the audio
14           clock controller.
15 - resets: list of reset phandle, one for each entry reset-names.
16 - reset-names: should contain the following:
17   * "arb" : memory ARB line (required)
18   * "rst" : dedicated device reset line (optional)
19 - #sound-dai-cells: must be 0.
20
21 Example of FRDDR A on the A113 SoC:
22
23 frddr_a: audio-controller@1c0 {
24         compatible = "amlogic,axg-frddr";
25         reg = <0x0 0x1c0 0x0 0x1c>;
26         #sound-dai-cells = <0>;
27         interrupts = <GIC_SPI 88 IRQ_TYPE_EDGE_RISING>;
28         clocks = <&clkc_audio AUD_CLKID_FRDDR_A>;
29         resets = <&arb AXG_ARB_FRDDR_A>;
30 };