pixcir_i2c_ts.txt 857 B

1234567891011121314151617181920212223242526272829303132
  1. * Pixcir I2C touchscreen controllers
  2. Required properties:
  3. - compatible: must be "pixcir,pixcir_ts" or "pixcir,pixcir_tangoc"
  4. - reg: I2C address of the chip
  5. - interrupts: interrupt to which the chip is connected
  6. - attb-gpio: GPIO connected to the ATTB line of the chip
  7. - touchscreen-size-x: horizontal resolution of touchscreen (in pixels)
  8. - touchscreen-size-y: vertical resolution of touchscreen (in pixels)
  9. Optional properties:
  10. - reset-gpios: GPIO connected to the RESET line of the chip
  11. - enable-gpios: GPIO connected to the ENABLE line of the chip
  12. - wake-gpios: GPIO connected to the WAKE line of the chip
  13. Example:
  14. i2c@00000000 {
  15. /* ... */
  16. pixcir_ts@5c {
  17. compatible = "pixcir,pixcir_ts";
  18. reg = <0x5c>;
  19. interrupts = <2 0>;
  20. attb-gpio = <&gpf 2 0 2>;
  21. touchscreen-size-x = <800>;
  22. touchscreen-size-y = <600>;
  23. };
  24. /* ... */
  25. };