tegra-cec.txt 927 B

123456789101112131415161718192021222324252627
  1. * Tegra HDMI CEC hardware
  2. The HDMI CEC module is present in Tegra SoCs and its purpose is to
  3. handle communication between HDMI connected devices over the CEC bus.
  4. Required properties:
  5. - compatible : value should be one of the following:
  6. "nvidia,tegra114-cec"
  7. "nvidia,tegra124-cec"
  8. "nvidia,tegra210-cec"
  9. - reg : Physical base address of the IP registers and length of memory
  10. mapped region.
  11. - interrupts : HDMI CEC interrupt number to the CPU.
  12. - clocks : from common clock binding: handle to HDMI CEC clock.
  13. - clock-names : from common clock binding: must contain "cec",
  14. corresponding to the entry in the clocks property.
  15. - hdmi-phandle : phandle to the HDMI controller, see also cec.txt.
  16. Example:
  17. cec@70015000 {
  18. compatible = "nvidia,tegra124-cec";
  19. reg = <0x0 0x70015000 0x0 0x00001000>;
  20. interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
  21. clocks = <&tegra_car TEGRA124_CLK_CEC>;
  22. clock-names = "cec";
  23. };