samsung,s6e3ha2.txt 860 B

12345678910111213141516171819202122232425262728293031
  1. Samsung S6E3HA2 5.7" 1440x2560 AMOLED panel
  2. Samsung S6E3HF2 5.65" 1600x2560 AMOLED panel
  3. Required properties:
  4. - compatible: should be one of:
  5. "samsung,s6e3ha2",
  6. "samsung,s6e3hf2".
  7. - reg: the virtual channel number of a DSI peripheral
  8. - vdd3-supply: I/O voltage supply
  9. - vci-supply: voltage supply for analog circuits
  10. - reset-gpios: a GPIO spec for the reset pin (active low)
  11. - enable-gpios: a GPIO spec for the panel enable pin (active high)
  12. Optional properties:
  13. - te-gpios: a GPIO spec for the tearing effect synchronization signal
  14. gpio pin (active high)
  15. Example:
  16. &dsi {
  17. ...
  18. panel@0 {
  19. compatible = "samsung,s6e3ha2";
  20. reg = <0>;
  21. vdd3-supply = <&ldo27_reg>;
  22. vci-supply = <&ldo28_reg>;
  23. reset-gpios = <&gpg0 0 GPIO_ACTIVE_LOW>;
  24. enable-gpios = <&gpf1 5 GPIO_ACTIVE_HIGH>;
  25. te-gpios = <&gpf1 3 GPIO_ACTIVE_HIGH>;
  26. };
  27. };