stmpe-keypad.txt 895 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. * STMPE Keypad
  2. Required properties:
  3. - compatible : "st,stmpe-keypad"
  4. - linux,keymap : See ./matrix-keymap.txt
  5. Optional properties:
  6. - debounce-interval : Debouncing interval time in milliseconds
  7. - st,scan-count : Scanning cycles elapsed before key data is updated
  8. - st,no-autorepeat : If specified device will not autorepeat
  9. - keypad,num-rows : See ./matrix-keymap.txt
  10. - keypad,num-columns : See ./matrix-keymap.txt
  11. Example:
  12. stmpe_keypad {
  13. compatible = "st,stmpe-keypad";
  14. debounce-interval = <64>;
  15. st,scan-count = <8>;
  16. st,no-autorepeat;
  17. linux,keymap = <0x205006b
  18. 0x4010074
  19. 0x3050072
  20. 0x1030004
  21. 0x502006a
  22. 0x500000a
  23. 0x5008b
  24. 0x706001c
  25. 0x405000b
  26. 0x6070003
  27. 0x3040067
  28. 0x303006c
  29. 0x60400e7
  30. 0x602009e
  31. 0x4020073
  32. 0x5050002
  33. 0x4030069
  34. 0x3020008>;
  35. };