auo_pixcir_ts.txt 667 B

12345678910111213141516171819202122232425262728293031
  1. * AUO in-cell touchscreen controller using Pixcir sensors
  2. Required properties:
  3. - compatible: must be "auo,auo_pixcir_ts"
  4. - reg: I2C address of the chip
  5. - interrupts: interrupt to which the chip is connected
  6. - gpios: gpios the chip is connected to
  7. first one is the interrupt gpio and second one the reset gpio
  8. - x-size: horizontal resolution of touchscreen
  9. - y-size: vertical resolution of touchscreen
  10. Example:
  11. i2c@00000000 {
  12. /* ... */
  13. auo_pixcir_ts@5c {
  14. compatible = "auo,auo_pixcir_ts";
  15. reg = <0x5c>;
  16. interrupts = <2 0>;
  17. gpios = <&gpf 2 0 2>, /* INT */
  18. <&gpf 5 1 0>; /* RST */
  19. x-size = <800>;
  20. y-size = <600>;
  21. };
  22. /* ... */
  23. };