stih-cec.txt 910 B

123456789101112131415161718192021222324252627
  1. STMicroelectronics STIH4xx HDMI CEC driver
  2. Required properties:
  3. - compatible : value should be "st,stih-cec"
  4. - reg : Physical base address of the IP registers and length of memory
  5. mapped region.
  6. - clocks : from common clock binding: handle to HDMI CEC clock
  7. - interrupts : HDMI CEC interrupt number to the CPU.
  8. - pinctrl-names: Contains only one value - "default"
  9. - pinctrl-0: Specifies the pin control groups used for CEC hardware.
  10. - resets: Reference to a reset controller
  11. - hdmi-phandle: Phandle to the HDMI controller, see also cec.txt.
  12. Example for STIH407:
  13. sti-cec@94a087c {
  14. compatible = "st,stih-cec";
  15. reg = <0x94a087c 0x64>;
  16. clocks = <&clk_sysin>;
  17. clock-names = "cec-clk";
  18. interrupts = <GIC_SPI 140 IRQ_TYPE_NONE>;
  19. interrupt-names = "cec-irq";
  20. pinctrl-names = "default";
  21. pinctrl-0 = <&pinctrl_cec0_default>;
  22. resets = <&softreset STIH407_LPM_SOFTRESET>;
  23. hdmi-phandle = <&hdmi>;
  24. };