stih-cec.txt 819 B

1234567891011121314151617181920212223242526
  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. Example for STIH407:
  12. sti-cec@094a087c {
  13. compatible = "st,stih-cec";
  14. reg = <0x94a087c 0x64>;
  15. clocks = <&clk_sysin>;
  16. clock-names = "cec-clk";
  17. interrupts = <GIC_SPI 140 IRQ_TYPE_NONE>;
  18. interrupt-names = "cec-irq";
  19. pinctrl-names = "default";
  20. pinctrl-0 = <&pinctrl_cec0_default>;
  21. resets = <&softreset STIH407_LPM_SOFTRESET>;
  22. };