stmpe.txt 824 B

12345678910111213141516171819202122232425
  1. * STMPE Multi-Functional Device
  2. Required properties:
  3. - compatible : "st,stmpe[811|1601|2401|2403]"
  4. - reg : I2C address of the device
  5. Optional properties:
  6. - interrupts : The interrupt outputs from the controller
  7. - interrupt-controller : Marks the device node as an interrupt controller
  8. - interrupt-parent : Specifies which IRQ controller we're connected to
  9. - wakeup-source : Marks the input device as wakable
  10. - st,autosleep-timeout : Valid entries (ms); 4, 16, 32, 64, 128, 256, 512 and 1024
  11. Example:
  12. stmpe1601: stmpe1601@40 {
  13. compatible = "st,stmpe1601";
  14. reg = <0x40>;
  15. interrupts = <26 0x4>;
  16. interrupt-parent = <&gpio6>;
  17. interrupt-controller;
  18. wakeup-source;
  19. st,autosleep-timeout = <1024>;
  20. };