panel-dpi.txt 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Generic MIPI DPI Panel
  2. ======================
  3. Required properties:
  4. - compatible: "panel-dpi"
  5. Optional properties:
  6. - label: a symbolic name for the panel
  7. - enable-gpios: panel enable gpio
  8. Required nodes:
  9. - "panel-timing" containing video timings
  10. (Documentation/devicetree/bindings/display/display-timing.txt)
  11. - Video port for DPI input
  12. Example
  13. -------
  14. lcd0: display@0 {
  15. compatible = "samsung,lte430wq-f0c", "panel-dpi";
  16. label = "lcd";
  17. port {
  18. lcd_in: endpoint {
  19. remote-endpoint = <&dpi_out>;
  20. };
  21. };
  22. panel-timing {
  23. clock-frequency = <9200000>;
  24. hactive = <480>;
  25. vactive = <272>;
  26. hfront-porch = <8>;
  27. hback-porch = <4>;
  28. hsync-len = <41>;
  29. vback-porch = <2>;
  30. vfront-porch = <4>;
  31. vsync-len = <10>;
  32. hsync-active = <0>;
  33. vsync-active = <0>;
  34. de-active = <1>;
  35. pixelclk-active = <1>;
  36. };
  37. };