exc3000.txt 676 B

1234567891011121314151617181920212223242526
  1. * EETI EXC3000 Multiple Touch Controller
  2. Required properties:
  3. - compatible: must be "eeti,exc3000"
  4. - reg: i2c slave address
  5. - interrupts: touch controller interrupt
  6. - touchscreen-size-x: See touchscreen.txt
  7. - touchscreen-size-y: See touchscreen.txt
  8. Optional properties:
  9. - touchscreen-inverted-x: See touchscreen.txt
  10. - touchscreen-inverted-y: See touchscreen.txt
  11. - touchscreen-swapped-x-y: See touchscreen.txt
  12. Example:
  13. touchscreen@2a {
  14. compatible = "eeti,exc3000";
  15. reg = <0x2a>;
  16. interrupt-parent = <&gpio1>;
  17. interrupts = <9 IRQ_TYPE_LEVEL_LOW>;
  18. touchscreen-size-x = <4096>;
  19. touchscreen-size-y = <4096>;
  20. touchscreen-inverted-x;
  21. touchscreen-swapped-x-y;
  22. };