samsung,s6e8aa0.txt 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. Samsung S6E8AA0 AMOLED LCD 5.3 inch panel
  2. Required properties:
  3. - compatible: "samsung,s6e8aa0"
  4. - reg: the virtual channel number of a DSI peripheral
  5. - vdd3-supply: core voltage supply
  6. - vci-supply: voltage supply for analog circuits
  7. - reset-gpios: a GPIO spec for the reset pin
  8. - display-timings: timings for the connected panel as described by [1]
  9. Optional properties:
  10. - power-on-delay: delay after turning regulators on [ms]
  11. - reset-delay: delay after reset sequence [ms]
  12. - init-delay: delay after initialization sequence [ms]
  13. - panel-width-mm: physical panel width [mm]
  14. - panel-height-mm: physical panel height [mm]
  15. - flip-horizontal: boolean to flip image horizontally
  16. - flip-vertical: boolean to flip image vertically
  17. The device node can contain one 'port' child node with one child
  18. 'endpoint' node, according to the bindings defined in [2]. This
  19. node should describe panel's video bus.
  20. [1]: Documentation/devicetree/bindings/display/panel/display-timing.txt
  21. [2]: Documentation/devicetree/bindings/media/video-interfaces.txt
  22. Example:
  23. panel {
  24. compatible = "samsung,s6e8aa0";
  25. reg = <0>;
  26. vdd3-supply = <&vcclcd_reg>;
  27. vci-supply = <&vlcd_reg>;
  28. reset-gpios = <&gpy4 5 0>;
  29. power-on-delay= <50>;
  30. reset-delay = <100>;
  31. init-delay = <100>;
  32. panel-width-mm = <58>;
  33. panel-height-mm = <103>;
  34. flip-horizontal;
  35. flip-vertical;
  36. display-timings {
  37. timing0: timing-0 {
  38. clock-frequency = <57153600>;
  39. hactive = <720>;
  40. vactive = <1280>;
  41. hfront-porch = <5>;
  42. hback-porch = <5>;
  43. hsync-len = <5>;
  44. vfront-porch = <13>;
  45. vback-porch = <1>;
  46. vsync-len = <2>;
  47. };
  48. };
  49. };