stmpe.txt 973 B

12345678910111213141516171819202122232425262728
  1. * ST Microelectronics STMPE Multi-Functional Device
  2. STMPE is an MFD device which may expose the following inbuilt devices: gpio,
  3. keypad, touchscreen, adc, pwm, rotator.
  4. Required properties:
  5. - compatible : "st,stmpe[610|801|811|1600|1601|2401|2403]"
  6. - reg : I2C/SPI address of the device
  7. Optional properties:
  8. - interrupts : The interrupt outputs from the controller
  9. - interrupt-controller : Marks the device node as an interrupt controller
  10. - wakeup-source : Marks the input device as wakable
  11. - st,autosleep-timeout : Valid entries (ms); 4, 16, 32, 64, 128, 256, 512 and 1024
  12. - irq-gpio : If present, which GPIO to use for event IRQ
  13. Example:
  14. stmpe1601: stmpe1601@40 {
  15. compatible = "st,stmpe1601";
  16. reg = <0x40>;
  17. interrupts = <26 0x4>;
  18. interrupt-parent = <&gpio6>;
  19. interrupt-controller;
  20. wakeup-source;
  21. st,autosleep-timeout = <1024>;
  22. };