sil-sii8620.txt 931 B

123456789101112131415161718192021222324252627282930313233
  1. Silicon Image SiI8620 HDMI/MHL bridge bindings
  2. Required properties:
  3. - compatible: "sil,sii8620"
  4. - reg: i2c address of the bridge
  5. - cvcc10-supply: Digital Core Supply Voltage (1.0V)
  6. - iovcc18-supply: I/O Supply Voltage (1.8V)
  7. - interrupts: interrupt specifier of INT pin
  8. - reset-gpios: gpio specifier of RESET pin
  9. - clocks, clock-names: specification and name of "xtal" clock
  10. - video interfaces: Device node can contain video interface port
  11. node for HDMI encoder according to [1].
  12. [1]: Documentation/devicetree/bindings/media/video-interfaces.txt
  13. Example:
  14. sii8620@39 {
  15. reg = <0x39>;
  16. compatible = "sil,sii8620";
  17. cvcc10-supply = <&ldo36_reg>;
  18. iovcc18-supply = <&ldo34_reg>;
  19. interrupt-parent = <&gpf0>;
  20. interrupts = <2 0>;
  21. reset-gpio = <&gpv7 0 0>;
  22. clocks = <&pmu_system_controller 0>;
  23. clock-names = "xtal";
  24. port {
  25. mhl_to_hdmi: endpoint {
  26. remote-endpoint = <&hdmi_to_mhl>;
  27. };
  28. };
  29. };