sentelic.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*-
  2. * Finger Sensing Pad PS/2 mouse driver.
  3. *
  4. * Copyright (C) 2005-2007 Asia Vital Components Co., Ltd.
  5. * Copyright (C) 2005-2012 Tai-hwa Liang, Sentelic Corporation.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21. #ifndef __SENTELIC_H
  22. #define __SENTELIC_H
  23. /* Finger-sensing Pad information registers */
  24. #define FSP_REG_DEVICE_ID 0x00
  25. #define FSP_REG_VERSION 0x01
  26. #define FSP_REG_REVISION 0x04
  27. #define FSP_REG_TMOD_STATUS1 0x0B
  28. #define FSP_BIT_NO_ROTATION BIT(3)
  29. #define FSP_REG_PAGE_CTRL 0x0F
  30. /* Finger-sensing Pad control registers */
  31. #define FSP_REG_SYSCTL1 0x10
  32. #define FSP_BIT_EN_REG_CLK BIT(5)
  33. #define FSP_REG_TMOD_STATUS 0x20
  34. #define FSP_REG_OPC_QDOWN 0x31
  35. #define FSP_BIT_EN_OPC_TAG BIT(7)
  36. #define FSP_REG_OPTZ_XLO 0x34
  37. #define FSP_REG_OPTZ_XHI 0x35
  38. #define FSP_REG_OPTZ_YLO 0x36
  39. #define FSP_REG_OPTZ_YHI 0x37
  40. #define FSP_REG_SYSCTL5 0x40
  41. #define FSP_BIT_90_DEGREE BIT(0)
  42. #define FSP_BIT_EN_MSID6 BIT(1)
  43. #define FSP_BIT_EN_MSID7 BIT(2)
  44. #define FSP_BIT_EN_MSID8 BIT(3)
  45. #define FSP_BIT_EN_AUTO_MSID8 BIT(5)
  46. #define FSP_BIT_EN_PKT_G0 BIT(6)
  47. #define FSP_REG_ONPAD_CTL 0x43
  48. #define FSP_BIT_ONPAD_ENABLE BIT(0)
  49. #define FSP_BIT_ONPAD_FBBB BIT(1)
  50. #define FSP_BIT_FIX_VSCR BIT(3)
  51. #define FSP_BIT_FIX_HSCR BIT(5)
  52. #define FSP_BIT_DRAG_LOCK BIT(6)
  53. #define FSP_REG_SWC1 (0x90)
  54. #define FSP_BIT_SWC1_EN_ABS_1F BIT(0)
  55. #define FSP_BIT_SWC1_EN_GID BIT(1)
  56. #define FSP_BIT_SWC1_EN_ABS_2F BIT(2)
  57. #define FSP_BIT_SWC1_EN_FUP_OUT BIT(3)
  58. #define FSP_BIT_SWC1_EN_ABS_CON BIT(4)
  59. #define FSP_BIT_SWC1_GST_GRP0 BIT(5)
  60. #define FSP_BIT_SWC1_GST_GRP1 BIT(6)
  61. #define FSP_BIT_SWC1_BX_COMPAT BIT(7)
  62. #define FSP_PAGE_0B (0x0b)
  63. #define FSP_PAGE_82 (0x82)
  64. #define FSP_PAGE_DEFAULT FSP_PAGE_82
  65. #define FSP_REG_SN0 (0x40)
  66. #define FSP_REG_SN1 (0x41)
  67. #define FSP_REG_SN2 (0x42)
  68. /* Finger-sensing Pad packet formating related definitions */
  69. /* absolute packet type */
  70. #define FSP_PKT_TYPE_NORMAL (0x00)
  71. #define FSP_PKT_TYPE_ABS (0x01)
  72. #define FSP_PKT_TYPE_NOTIFY (0x02)
  73. #define FSP_PKT_TYPE_NORMAL_OPC (0x03)
  74. #define FSP_PKT_TYPE_SHIFT (6)
  75. /* bit definitions for the first byte of report packet */
  76. #define FSP_PB0_LBTN BIT(0)
  77. #define FSP_PB0_RBTN BIT(1)
  78. #define FSP_PB0_MBTN BIT(2)
  79. #define FSP_PB0_MFMC_FGR2 FSP_PB0_MBTN
  80. #define FSP_PB0_MUST_SET BIT(3)
  81. #define FSP_PB0_PHY_BTN BIT(4)
  82. #define FSP_PB0_MFMC BIT(5)
  83. /* hardware revisions */
  84. #define FSP_VER_STL3888_A4 (0xC1)
  85. #define FSP_VER_STL3888_B0 (0xD0)
  86. #define FSP_VER_STL3888_B1 (0xD1)
  87. #define FSP_VER_STL3888_B2 (0xD2)
  88. #define FSP_VER_STL3888_C0 (0xE0)
  89. #define FSP_VER_STL3888_C1 (0xE1)
  90. #define FSP_VER_STL3888_D0 (0xE2)
  91. #define FSP_VER_STL3888_D1 (0xE3)
  92. #define FSP_VER_STL3888_E0 (0xE4)
  93. #ifdef __KERNEL__
  94. struct fsp_data {
  95. unsigned char ver; /* hardware version */
  96. unsigned char rev; /* hardware revison */
  97. unsigned int buttons; /* Number of buttons */
  98. unsigned int flags;
  99. #define FSPDRV_FLAG_EN_OPC (0x001) /* enable on-pad clicking */
  100. bool vscroll; /* Vertical scroll zone enabled */
  101. bool hscroll; /* Horizontal scroll zone enabled */
  102. unsigned char last_reg; /* Last register we requested read from */
  103. unsigned char last_val;
  104. unsigned int last_mt_fgr; /* Last seen finger(multitouch) */
  105. };
  106. #ifdef CONFIG_MOUSE_PS2_SENTELIC
  107. extern int fsp_detect(struct psmouse *psmouse, bool set_properties);
  108. extern int fsp_init(struct psmouse *psmouse);
  109. #else
  110. static inline int fsp_detect(struct psmouse *psmouse, bool set_properties)
  111. {
  112. return -ENOSYS;
  113. }
  114. static inline int fsp_init(struct psmouse *psmouse)
  115. {
  116. return -ENOSYS;
  117. }
  118. #endif
  119. #endif /* __KERNEL__ */
  120. #endif /* !__SENTELIC_H */