st,stmfts.txt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. * ST-Microelectronics FingerTip touchscreen controller
  2. The ST-Microelectronics FingerTip device provides a basic touchscreen
  3. functionality. Along with it the user can enable the touchkey which can work as
  4. a basic HOME and BACK key for phones.
  5. The driver supports also hovering as an absolute single touch event with x, y, z
  6. coordinates.
  7. Required properties:
  8. - compatible : must be "st,stmfts"
  9. - reg : I2C slave address, (e.g. 0x49)
  10. - interrupts : interrupt specification
  11. - avdd-supply : analogic power supply
  12. - vdd-supply : power supply
  13. - touchscreen-size-x : see touchscreen.txt
  14. - touchscreen-size-y : see touchscreen.txt
  15. Optional properties:
  16. - touch-key-connected : specifies whether the touchkey feature is connected
  17. - ledvdd-supply : power supply to the touch key leds
  18. Example:
  19. i2c@00000000 {
  20. /* ... */
  21. touchscreen@49 {
  22. compatible = "st,stmfts";
  23. reg = <0x49>;
  24. interrupt-parent = <&gpa1>;
  25. interrupts = <1 IRQ_TYPE_NONE>;
  26. touchscreen-size-x = <1599>;
  27. touchscreen-size-y = <2559>;
  28. touch-key-connected;
  29. avdd-supply = <&ldo30_reg>;
  30. vdd-supply = <&ldo31_reg>;
  31. ledvdd-supply = <&ldo33_reg>;
  32. };
  33. };