panel-dpi.txt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. - reset-gpios: GPIO to control the RESET pin
  9. - vcc-supply: phandle of regulator that will be used to enable power to the display
  10. Required nodes:
  11. - "panel-timing" containing video timings
  12. (Documentation/devicetree/bindings/display/display-timing.txt)
  13. - Video port for DPI input
  14. Example
  15. -------
  16. lcd0: display@0 {
  17. compatible = "samsung,lte430wq-f0c", "panel-dpi";
  18. label = "lcd";
  19. port {
  20. lcd_in: endpoint {
  21. remote-endpoint = <&dpi_out>;
  22. };
  23. };
  24. panel-timing {
  25. clock-frequency = <9200000>;
  26. hactive = <480>;
  27. vactive = <272>;
  28. hfront-porch = <8>;
  29. hback-porch = <4>;
  30. hsync-len = <41>;
  31. vback-porch = <2>;
  32. vfront-porch = <4>;
  33. vsync-len = <10>;
  34. hsync-active = <0>;
  35. vsync-active = <0>;
  36. de-active = <1>;
  37. pixelclk-active = <1>;
  38. };
  39. };