rmi_f01.txt 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. Synaptics RMI4 F01 Device Binding
  2. The Synaptics RMI4 core is able to support RMI4 devices using different
  3. transports and different functions. This file describes the device tree
  4. bindings for devices which contain Function 1. Complete documentation
  5. for transports and other functions can be found in:
  6. Documentation/devicetree/bindings/input/rmi4.
  7. Additional documentation for F01 can be found at:
  8. http://www.synaptics.com/sites/default/files/511-000136-01-Rev-E-RMI4-Interfacing-Guide.pdf
  9. Optional Properties:
  10. - syna,nosleep-mode: If set the device will run at full power without sleeping.
  11. nosleep has 3 modes, 0 will not change the default
  12. setting, 1 will disable nosleep (allow sleeping),
  13. and 2 will enable nosleep (disabling sleep).
  14. - syna,wakeup-threshold: Defines the amplitude of the disturbance to the
  15. background capacitance that will cause the
  16. device to wake from dozing.
  17. - syna,doze-holdoff-ms: The delay to wait after the last finger lift and the
  18. first doze cycle.
  19. - syna,doze-interval-ms: The time period that the device sleeps between finger
  20. activity.
  21. Example of a RMI4 I2C device with F01:
  22. Example:
  23. &i2c1 {
  24. rmi4-i2c-dev@2c {
  25. compatible = "syna,rmi4-i2c";
  26. ...
  27. rmi4-f01@1 {
  28. reg = <0x1>;
  29. syna,nosleep-mode = <1>;
  30. };
  31. };
  32. };