pixcir_i2c_ts.txt 655 B

1234567891011121314151617181920212223242526
  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. Example:
  10. i2c@00000000 {
  11. /* ... */
  12. pixcir_ts@5c {
  13. compatible = "pixcir,pixcir_ts";
  14. reg = <0x5c>;
  15. interrupts = <2 0>;
  16. attb-gpio = <&gpf 2 0 2>;
  17. touchscreen-size-x = <800>;
  18. touchscreen-size-y = <600>;
  19. };
  20. /* ... */
  21. };