sii902x.txt 805 B

1234567891011121314151617181920212223242526272829303132333435
  1. sii902x HDMI bridge bindings
  2. Required properties:
  3. - compatible: "sil,sii9022"
  4. - reg: i2c address of the bridge
  5. Optional properties:
  6. - interrupts: describe the interrupt line used to inform the host
  7. about hotplug events.
  8. - reset-gpios: OF device-tree gpio specification for RST_N pin.
  9. Optional subnodes:
  10. - video input: this subnode can contain a video input port node
  11. to connect the bridge to a display controller output (See this
  12. documentation [1]).
  13. [1]: Documentation/devicetree/bindings/media/video-interfaces.txt
  14. Example:
  15. hdmi-bridge@39 {
  16. compatible = "sil,sii9022";
  17. reg = <0x39>;
  18. reset-gpios = <&pioA 1 0>;
  19. ports {
  20. #address-cells = <1>;
  21. #size-cells = <0>;
  22. port@0 {
  23. reg = <0>;
  24. bridge_in: endpoint {
  25. remote-endpoint = <&dc_out>;
  26. };
  27. };
  28. };
  29. };