tpo,tpg110.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. TPO TPG110 Panel
  2. ================
  3. This binding builds on the DPI bindings, adding a few properties
  4. as a superset of a DPI. See panel-dpi.txt for the required DPI
  5. bindings.
  6. Required properties:
  7. - compatible : "tpo,tpg110"
  8. - grestb-gpios : panel reset GPIO
  9. - scen-gpios : serial control enable GPIO
  10. - scl-gpios : serial control clock line GPIO
  11. - sda-gpios : serial control data line GPIO
  12. Required nodes:
  13. - Video port for DPI input, see panel-dpi.txt
  14. - Panel timing for DPI setup, see panel-dpi.txt
  15. Example
  16. -------
  17. panel {
  18. compatible = "tpo,tpg110", "panel-dpi";
  19. grestb-gpios = <&stmpe_gpio44 5 GPIO_ACTIVE_LOW>;
  20. scen-gpios = <&gpio0 6 GPIO_ACTIVE_LOW>;
  21. scl-gpios = <&gpio0 5 GPIO_ACTIVE_HIGH>;
  22. sda-gpios = <&gpio0 4 GPIO_ACTIVE_HIGH>;
  23. backlight = <&bl>;
  24. port {
  25. nomadik_clcd_panel: endpoint {
  26. remote-endpoint = <&nomadik_clcd_pads>;
  27. };
  28. };
  29. panel-timing {
  30. clock-frequency = <33200000>;
  31. hactive = <800>;
  32. hback-porch = <216>;
  33. hfront-porch = <40>;
  34. hsync-len = <1>;
  35. vactive = <480>;
  36. vback-porch = <35>;
  37. vfront-porch = <10>;
  38. vsync-len = <1>;
  39. };
  40. };