meson-ao-cec.txt 894 B

12345678910111213141516171819202122232425262728
  1. * Amlogic Meson AO-CEC driver
  2. The Amlogic Meson AO-CEC module is present is Amlogic SoCs and its purpose is
  3. to handle communication between HDMI connected devices over the CEC bus.
  4. Required properties:
  5. - compatible : value should be following
  6. "amlogic,meson-gx-ao-cec"
  7. - reg : Physical base address of the IP registers and length of memory
  8. mapped region.
  9. - interrupts : AO-CEC interrupt number to the CPU.
  10. - clocks : from common clock binding: handle to AO-CEC clock.
  11. - clock-names : from common clock binding: must contain "core",
  12. corresponding to entry in the clocks property.
  13. - hdmi-phandle: phandle to the HDMI controller
  14. Example:
  15. cec_AO: cec@100 {
  16. compatible = "amlogic,meson-gx-ao-cec";
  17. reg = <0x0 0x00100 0x0 0x14>;
  18. interrupts = <GIC_SPI 199 IRQ_TYPE_EDGE_RISING>;
  19. clocks = <&clkc_AO CLKID_AO_CEC_32K>;
  20. clock-names = "core";
  21. hdmi-phandle = <&hdmi_tx>;
  22. };