ptn3460.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ptn3460 bridge bindings
  2. Required properties:
  3. - compatible: "nxp,ptn3460"
  4. - reg: i2c address of the bridge
  5. - powerdown-gpio: OF device-tree gpio specification for PD_N pin.
  6. - reset-gpio: OF device-tree gpio specification for RST_N pin.
  7. - edid-emulation: The EDID emulation entry to use
  8. +-------+------------+------------------+
  9. | Value | Resolution | Description |
  10. | 0 | 1024x768 | NXP Generic |
  11. | 1 | 1920x1080 | NXP Generic |
  12. | 2 | 1920x1080 | NXP Generic |
  13. | 3 | 1600x900 | Samsung LTM200KT |
  14. | 4 | 1920x1080 | Samsung LTM230HT |
  15. | 5 | 1366x768 | NXP Generic |
  16. | 6 | 1600x900 | ChiMei M215HGE |
  17. +-------+------------+------------------+
  18. - video interfaces: Device node can contain video interface port
  19. nodes for panel according to [1].
  20. [1]: Documentation/devicetree/bindings/media/video-interfaces.txt
  21. Example:
  22. lvds-bridge@20 {
  23. compatible = "nxp,ptn3460";
  24. reg = <0x20>;
  25. powerdown-gpio = <&gpy2 5 1 0 0>;
  26. reset-gpio = <&gpx1 5 1 0 0>;
  27. edid-emulation = <5>;
  28. ports {
  29. port@0 {
  30. bridge_out: endpoint {
  31. remote-endpoint = <&panel_in>;
  32. };
  33. };
  34. };
  35. };