ektf2127.txt 736 B

12345678910111213141516171819202122232425
  1. * Elan eKTF2127 I2C touchscreen controller
  2. Required properties:
  3. - compatible : "elan,ektf2127"
  4. - reg : I2C slave address of the chip (0x40)
  5. - interrupts : interrupt specification for the ektf2127 interrupt
  6. - power-gpios : GPIO specification for the pin connected to the
  7. ektf2127's wake input. This needs to be driven high
  8. to take ektf2127 out of it's low power state
  9. For additional optional properties see: touchscreen.txt
  10. Example:
  11. i2c@00000000 {
  12. ektf2127: touchscreen@15 {
  13. compatible = "elan,ektf2127";
  14. reg = <0x15>;
  15. interrupt-parent = <&pio>;
  16. interrupts = <6 11 IRQ_TYPE_EDGE_FALLING>
  17. power-gpios = <&pio 1 3 GPIO_ACTIVE_HIGH>;
  18. touchscreen-inverted-x;
  19. touchscreen-swapped-x-y;
  20. };
  21. };