ps8622.txt 837 B

12345678910111213141516171819202122232425262728293031
  1. ps8622-bridge bindings
  2. Required properties:
  3. - compatible: "parade,ps8622" or "parade,ps8625"
  4. - reg: first i2c address of the bridge
  5. - sleep-gpios: OF device-tree gpio specification for PD_ pin.
  6. - reset-gpios: OF device-tree gpio specification for RST_ pin.
  7. Optional properties:
  8. - lane-count: number of DP lanes to use
  9. - use-external-pwm: backlight will be controlled by an external PWM
  10. - video interfaces: Device node can contain video interface port
  11. nodes for panel according to [1].
  12. [1]: Documentation/devicetree/bindings/media/video-interfaces.txt
  13. Example:
  14. lvds-bridge@48 {
  15. compatible = "parade,ps8622";
  16. reg = <0x48>;
  17. sleep-gpios = <&gpc3 6 1 0 0>;
  18. reset-gpios = <&gpc3 1 1 0 0>;
  19. lane-count = <1>;
  20. ports {
  21. port@0 {
  22. bridge_out: endpoint {
  23. remote-endpoint = <&panel_in>;
  24. };
  25. };
  26. };
  27. };