Merge tag 'gfs2-for-5.2' of git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / media / meson-ao-cec.txt
1 * Amlogic Meson AO-CEC driver
2
3 The Amlogic Meson AO-CEC module is present is Amlogic SoCs and its purpose is
4 to handle communication between HDMI connected devices over the CEC bus.
5
6 Required properties:
7   - compatible : value should be following depending on the SoC :
8         For GXBB, GXL, GXM and G12A (AO_CEC_A module) :
9         "amlogic,meson-gx-ao-cec"
10         For G12A (AO_CEC_B module) :
11         "amlogic,meson-g12a-ao-cec"
12
13   - reg : Physical base address of the IP registers and length of memory
14           mapped region.
15
16   - interrupts : AO-CEC interrupt number to the CPU.
17   - clocks : from common clock binding: handle to AO-CEC clock.
18   - clock-names : from common clock binding, must contain :
19                 For GXBB, GXL, GXM and G12A (AO_CEC_A module) :
20                 - "core"
21                 For G12A (AO_CEC_B module) :
22                 - "oscin"
23                 corresponding to entry in the clocks property.
24   - hdmi-phandle: phandle to the HDMI controller
25
26 Example:
27
28 cec_AO: cec@100 {
29         compatible = "amlogic,meson-gx-ao-cec";
30         reg = <0x0 0x00100 0x0 0x14>;
31         interrupts = <GIC_SPI 199 IRQ_TYPE_EDGE_RISING>;
32         clocks = <&clkc_AO CLKID_AO_CEC_32K>;
33         clock-names = "core";
34         hdmi-phandle = <&hdmi_tx>;
35 };