sitronix-st1232.txt 431 B

123456789101112131415161718192021222324
  1. * Sitronix st1232 touchscreen controller
  2. Required properties:
  3. - compatible: must be "sitronix,st1232"
  4. - reg: I2C address of the chip
  5. - interrupts: interrupt to which the chip is connected
  6. Optional properties:
  7. - gpios: a phandle to the reset GPIO
  8. Example:
  9. i2c@00000000 {
  10. /* ... */
  11. touchscreen@55 {
  12. compatible = "sitronix,st1232";
  13. reg = <0x55>;
  14. interrupts = <2 0>;
  15. gpios = <&gpio1 166 0>;
  16. };
  17. /* ... */
  18. };