ektf2127.txt 850 B

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