keypad-pxa27x.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #ifndef __ASM_ARCH_PXA27x_KEYPAD_H
  2. #define __ASM_ARCH_PXA27x_KEYPAD_H
  3. #include <linux/input.h>
  4. #include <linux/input/matrix_keypad.h>
  5. #define MAX_MATRIX_KEY_ROWS (8)
  6. #define MAX_MATRIX_KEY_COLS (8)
  7. #define MATRIX_ROW_SHIFT (3)
  8. #define MAX_DIRECT_KEY_NUM (8)
  9. /* pxa3xx keypad platform specific parameters
  10. *
  11. * NOTE:
  12. * 1. direct_key_num indicates the number of keys in the direct keypad
  13. * _plus_ the number of rotary-encoder sensor inputs, this can be
  14. * left as 0 if only rotary encoders are enabled, the driver will
  15. * automatically calculate this
  16. *
  17. * 2. direct_key_map is the key code map for the direct keys, if rotary
  18. * encoder(s) are enabled, direct key 0/1(2/3) will be ignored
  19. *
  20. * 3. rotary can be either interpreted as a relative input event (e.g.
  21. * REL_WHEEL/REL_HWHEEL) or specific keys (e.g. UP/DOWN/LEFT/RIGHT)
  22. *
  23. * 4. matrix key and direct key will use the same debounce_interval by
  24. * default, which should be sufficient in most cases
  25. *
  26. * pxa168 keypad platform specific parameter
  27. *
  28. * NOTE:
  29. * clear_wakeup_event callback is a workaround required to clear the
  30. * keypad interrupt. The keypad wake must be cleared in addition to
  31. * reading the MI/DI bits in the KPC register.
  32. */
  33. struct pxa27x_keypad_platform_data {
  34. /* code map for the matrix keys */
  35. const struct matrix_keymap_data *matrix_keymap_data;
  36. unsigned int matrix_key_rows;
  37. unsigned int matrix_key_cols;
  38. /* direct keys */
  39. int direct_key_num;
  40. unsigned int direct_key_map[MAX_DIRECT_KEY_NUM];
  41. /* the key output may be low active */
  42. int direct_key_low_active;
  43. /* give board a chance to choose the start direct key */
  44. unsigned int direct_key_mask;
  45. /* rotary encoders 0 */
  46. int enable_rotary0;
  47. int rotary0_rel_code;
  48. int rotary0_up_key;
  49. int rotary0_down_key;
  50. /* rotary encoders 1 */
  51. int enable_rotary1;
  52. int rotary1_rel_code;
  53. int rotary1_up_key;
  54. int rotary1_down_key;
  55. /* key debounce interval */
  56. unsigned int debounce_interval;
  57. /* clear wakeup event requirement for pxa168 */
  58. void (*clear_wakeup_event)(void);
  59. };
  60. extern void pxa_set_keypad_info(struct pxa27x_keypad_platform_data *info);
  61. #endif /* __ASM_ARCH_PXA27x_KEYPAD_H */