tpkey_acts_opt.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief TP Keyboard driver for Actions SoC
  9. */
  10. #include <errno.h>
  11. #include <kernel.h>
  12. #include <string.h>
  13. #include <init.h>
  14. #include <irq.h>
  15. #include <drivers/adc.h>
  16. #include <drivers/input/input_dev.h>
  17. #include <sys/util.h>
  18. #include <sys/byteorder.h>
  19. #include <board.h>
  20. #include <soc_pmu.h>
  21. #include <logging/log.h>
  22. #include <device.h>
  23. #include <drivers/gpio.h>
  24. #include <soc.h>
  25. #include <string.h>
  26. #include <drivers/i2c.h>
  27. #include <board_cfg.h>
  28. #include <stdlib.h>
  29. #ifdef CONFIG_PANEL_OFFSET_X
  30. # define CONFIG_TP_LOC_X_MIN CONFIG_PANEL_OFFSET_X
  31. #else
  32. # define CONFIG_TP_LOC_X_MIN (0)
  33. #endif
  34. #ifdef CONFIG_PANEL_OFFSET_Y
  35. # define CONFIG_TP_LOC_Y_MIN CONFIG_PANEL_OFFSET_Y
  36. #else
  37. # define CONFIG_TP_LOC_Y_MIN (0)
  38. #endif
  39. #ifdef CONFIG_PANEL_HOR_RES
  40. # define CONFIG_TP_LOC_X_MAX (CONFIG_PANEL_HOR_RES - 1)
  41. #elif defined(CONFIG_PANEL_TIMING_HACTIVE)
  42. # define CONFIG_TP_LOC_X_MAX (CONFIG_PANEL_TIMING_HACTIVE - 1)
  43. #else
  44. # define CONFIG_TP_LOC_X_MAX (512 - 1)
  45. #endif
  46. #ifdef CONFIG_PANEL_VER_RES
  47. # define CONFIG_TP_LOC_Y_MAX (CONFIG_PANEL_VER_RES - 1)
  48. #elif defined(CONFIG_PANEL_TIMING_VACTIVE)
  49. # define CONFIG_TP_LOC_Y_MAX (CONFIG_PANEL_TIMING_VACTIVE - 1)
  50. #else
  51. # define CONFIG_TP_LOC_Y_MAX (512 - 1)
  52. #endif
  53. #define CONFIG_TP_FORECAST_LIMIT 2
  54. #define TP_ABS(x) (((x) >= 0) ? (x) : -(x))
  55. //#define CONFIG_DEBUG_TP 1
  56. #define MAX_CACHE_KEY_NUM 5
  57. #define COOR_COEF0 1
  58. #define COOR_COEF1 2
  59. #define COOR_COEF2 3
  60. #define COOR_COEF3 10
  61. /** key action type */
  62. enum GESTURE_TYPE
  63. {
  64. /** gesture drop down */
  65. GESTURE_DROP_DOWN = 1,
  66. /** gesture drop up */
  67. GESTURE_DROP_UP,
  68. /** gesture drop left */
  69. GESTURE_DROP_LEFT,
  70. /** gesture drop right */
  71. GESTURE_DROP_RIGHT,
  72. };
  73. #define COOR_COEF_TOTAL (COOR_COEF0 + COOR_COEF1 + COOR_COEF2 + COOR_COEF3)
  74. struct acts_tpkey_context {
  75. struct input_value key_value[MAX_CACHE_KEY_NUM];
  76. struct input_value next_point;
  77. uint32_t tp_point_duration;
  78. uint32_t last_timestamp;
  79. uint32_t next_timestamp;
  80. uint8_t key_index;
  81. uint8_t key_num;
  82. uint8_t gesture;
  83. uint8_t fixed_gesture;
  84. uint8_t gesture_speed;
  85. };
  86. static struct acts_tpkey_context key_context;
  87. static int gesture_fixed(int gesture, int scroll_off_x, int scroll_off_y)
  88. {
  89. int fixed_gesture = gesture;
  90. static const uint8_t fixed_gesture_table[] = {
  91. 0, GESTURE_DROP_UP, GESTURE_DROP_DOWN,
  92. GESTURE_DROP_RIGHT, GESTURE_DROP_LEFT,
  93. };
  94. if ((gesture == GESTURE_DROP_DOWN && scroll_off_y < -2)
  95. || (gesture == GESTURE_DROP_UP && scroll_off_y > 2)) {
  96. fixed_gesture = fixed_gesture_table[gesture];
  97. }
  98. if ((gesture == GESTURE_DROP_LEFT && scroll_off_x > 2)
  99. || (gesture == GESTURE_DROP_RIGHT && scroll_off_x < -2)) {
  100. fixed_gesture = fixed_gesture_table[gesture];
  101. }
  102. key_context.fixed_gesture = fixed_gesture;
  103. return fixed_gesture;
  104. }
  105. static int _tpkey_forecast_next_point(void)
  106. {
  107. uint8_t start_index = (key_context.key_index + 1) % MAX_CACHE_KEY_NUM;
  108. int16_t x_coor_change[MAX_CACHE_KEY_NUM] = {0};
  109. int16_t y_coor_change[MAX_CACHE_KEY_NUM] = {0};
  110. //uint16_t x_coor = 0;
  111. //uint16_t y_coor = 0;
  112. int i = 0;
  113. for (i = 0 ; i < key_context.key_num; i++) {
  114. uint8_t current_index = (start_index + i) % MAX_CACHE_KEY_NUM;
  115. uint8_t next_index = (start_index + i + 1) % MAX_CACHE_KEY_NUM;
  116. if (i == 4) {
  117. x_coor_change[i] = key_context.key_value[current_index].point.loc_x - key_context.key_value[next_index].point.loc_x;
  118. y_coor_change[i] = key_context.key_value[current_index].point.loc_y - key_context.key_value[next_index].point.loc_y;
  119. } else {
  120. x_coor_change[i] = key_context.key_value[next_index].point.loc_x - key_context.key_value[current_index].point.loc_x;
  121. y_coor_change[i] = key_context.key_value[next_index].point.loc_y - key_context.key_value[current_index].point.loc_y;
  122. }
  123. }
  124. if ((int32_t)x_coor_change[0] * x_coor_change[1] * x_coor_change[2] * x_coor_change[3] > 0) {
  125. x_coor_change[4] = (x_coor_change[0] * COOR_COEF0 + x_coor_change[1] * COOR_COEF1
  126. + x_coor_change[2] * COOR_COEF2 + x_coor_change[3] * COOR_COEF3) / COOR_COEF_TOTAL;
  127. #ifdef CONFIG_DEBUG_TP
  128. printk("x1 %d x1 %d x1 %d x1 %d COOR_COEF_TOTAL %d \n",x_coor_change[0], x_coor_change[1], x_coor_change[2], x_coor_change[3],COOR_COEF_TOTAL);
  129. #endif
  130. } else {
  131. x_coor_change[4] = x_coor_change[3];
  132. }
  133. if ((int32_t)y_coor_change[0] * y_coor_change[1] * y_coor_change[2] * y_coor_change[3] > 0) {
  134. y_coor_change[4] = (y_coor_change[0] * COOR_COEF0 + y_coor_change[1] * COOR_COEF1
  135. + y_coor_change[2] * COOR_COEF2 + y_coor_change[3] * COOR_COEF3) / COOR_COEF_TOTAL;
  136. y_coor_change[4] = (y_coor_change[0] * COOR_COEF0 + y_coor_change[1] * COOR_COEF1
  137. + y_coor_change[2] * COOR_COEF2 + y_coor_change[3] * COOR_COEF3) / COOR_COEF_TOTAL;
  138. #ifdef CONFIG_DEBUG_TP
  139. printk("y1 %d y2 %d y3 %d y4 %d COOR_COEF_TOTAL %d \n",y_coor_change[0], y_coor_change[1],y_coor_change[2], y_coor_change[3],COOR_COEF_TOTAL);
  140. #endif
  141. } else {
  142. y_coor_change[4] = y_coor_change[3];
  143. }
  144. #ifdef CONFIG_DEBUG_TP
  145. printk("gesture %d xcoor %d ycoor %d \n",key_context.key_value[key_context.key_index].point.gesture,abs(x_coor_change[4]), abs(y_coor_change[4]));
  146. #endif
  147. if (key_context.gesture && !key_context.fixed_gesture) {
  148. if (abs(x_coor_change[4]) > abs(y_coor_change[4])
  149. || key_context.key_value[key_context.key_index].point.loc_x < 50) {
  150. if (x_coor_change[4] > 0) {
  151. key_context.fixed_gesture = 4;
  152. } else {
  153. key_context.fixed_gesture = 3;
  154. }
  155. } else {
  156. key_context.fixed_gesture = 0;
  157. }
  158. }
  159. #ifdef CONFIG_DEBUG_TP
  160. printk("fixed_gesture %d\n",key_context.fixed_gesture);
  161. #endif
  162. if (key_context.fixed_gesture) {
  163. key_context.key_value[key_context.key_index].point.gesture = key_context.fixed_gesture;
  164. }
  165. key_context.next_point.point.loc_x = key_context.key_value[key_context.key_index].point.loc_x + x_coor_change[4];
  166. key_context.next_point.point.loc_y = key_context.key_value[key_context.key_index].point.loc_y + y_coor_change[4];
  167. key_context.next_point.point.gesture = gesture_fixed(key_context.key_value[key_context.key_index].point.gesture, x_coor_change[3], y_coor_change[3]);
  168. #ifdef CONFIG_DEBUG_TP
  169. printk(" x :");
  170. for (i = 0 ; i < key_context.key_num; i++) {
  171. printk(" %d ",x_coor_change[i]);
  172. }
  173. printk("\n");
  174. printk(" y :");
  175. for (i = 0 ; i < key_context.key_num; i++) {
  176. printk(" %d ",y_coor_change[i]);
  177. }
  178. printk("\n");
  179. #endif
  180. return 0;
  181. }
  182. int tpkey_put_point(struct input_value *value, uint32_t timestamp)
  183. {
  184. struct input_value *current_value = NULL;
  185. uint8_t prev_index = key_context.key_index;
  186. if (!value->point.pessure_value) {
  187. key_context.gesture = 0;
  188. key_context.key_num = 0;
  189. key_context.key_index = 0;
  190. key_context.fixed_gesture = 0;
  191. } else {
  192. #ifdef CONFIG_INPUT_DEV_ACTS_CST820_TP_KEY
  193. if (key_context.gesture == 0)
  194. #endif
  195. key_context.gesture = value->point.gesture;
  196. if (key_context.gesture == 0)
  197. key_context.fixed_gesture = 0;
  198. key_context.key_index++;
  199. if (key_context.key_index >= MAX_CACHE_KEY_NUM) {
  200. key_context.key_index = 0;
  201. }
  202. }
  203. current_value = &key_context.key_value[key_context.key_index];
  204. memcpy(current_value, value, sizeof(struct input_value));
  205. key_context.key_num++;
  206. if (key_context.key_num >= MAX_CACHE_KEY_NUM) {
  207. key_context.key_num = MAX_CACHE_KEY_NUM;
  208. }
  209. #ifdef CONFIG_DEBUG_TP
  210. printk("put gesture = %d,pessure_value = %d local:(%d,%d),index %d num %d duration %d\n"
  211. ,key_context.gesture,value->point.pessure_value,value->point.loc_x, value->point.loc_y,
  212. key_context.key_index, key_context.key_num,
  213. k_cyc_to_us_floor32(timestamp - key_context.last_timestamp));
  214. #endif
  215. key_context.tp_point_duration = k_cyc_to_us_floor32(timestamp - key_context.last_timestamp);
  216. key_context.next_timestamp = timestamp - key_context.last_timestamp;
  217. key_context.last_timestamp = timestamp;
  218. key_context.next_timestamp += key_context.last_timestamp;
  219. if (/*key_context.gesture && */key_context.key_num == MAX_CACHE_KEY_NUM) {
  220. struct input_value *prev_value = &key_context.key_value[prev_index];
  221. int diff_x = TP_ABS((int)current_value->point.loc_x - prev_value->point.loc_x);
  222. int diff_y = TP_ABS((int)current_value->point.loc_y - prev_value->point.loc_y);
  223. if (diff_x < CONFIG_TP_FORECAST_LIMIT && diff_y < CONFIG_TP_FORECAST_LIMIT) {
  224. memcpy(&key_context.next_point, current_value, sizeof(*current_value));
  225. } else {
  226. _tpkey_forecast_next_point();
  227. }
  228. }
  229. return 0;
  230. }
  231. int tpkey_get_last_point(struct input_value *value, uint32_t timestamp)
  232. {
  233. struct input_value *current_value = NULL;
  234. struct input_value *next_value = NULL;
  235. /* FIXME: add 6ms to compensate the duration between this and the time show on the screen. */
  236. uint32_t current_duration = k_cyc_to_us_floor32(timestamp - key_context.last_timestamp) + 6000;
  237. if (current_duration > key_context.tp_point_duration) {
  238. current_duration = key_context.tp_point_duration;
  239. }
  240. current_value = &key_context.key_value[key_context.key_index];
  241. if (k_cyc_to_us_floor32(timestamp - key_context.last_timestamp) > 20000) {
  242. memcpy(value, current_value, sizeof(struct input_value));
  243. goto exit;
  244. }
  245. next_value = &key_context.next_point;
  246. if (key_context.key_num == MAX_CACHE_KEY_NUM) {
  247. int32_t next_duration = (int32_t)(key_context.tp_point_duration - current_duration);
  248. if (next_value->point.loc_x != current_value->point.loc_x) {
  249. value->point.loc_x = (next_value->point.loc_x * (int32_t)current_duration
  250. + current_value->point.loc_x * next_duration)
  251. / (int32_t)key_context.tp_point_duration;
  252. } else {
  253. value->point.loc_x = current_value->point.loc_x;
  254. }
  255. if (next_value->point.loc_y != current_value->point.loc_y) {
  256. value->point.loc_y = (next_value->point.loc_y * (int32_t)current_duration
  257. + current_value->point.loc_y * next_duration)
  258. / (int32_t)key_context.tp_point_duration;
  259. } else {
  260. value->point.loc_y = current_value->point.loc_y;
  261. }
  262. value->point.gesture = current_value->point.gesture;
  263. value->point.pessure_value = current_value->point.pessure_value;
  264. } else {
  265. memcpy(value, current_value, sizeof(struct input_value));
  266. #if !CONFIG_AEM_WATCH_SUPPORT
  267. if (!current_value->point.pessure_value) {
  268. int32_t next_duration = (int32_t)(key_context.tp_point_duration - current_duration);
  269. if (next_value->point.loc_x != current_value->point.loc_x) {
  270. value->point.loc_x = (next_value->point.loc_x * (int32_t)current_duration
  271. + current_value->point.loc_x * next_duration)
  272. / (int32_t)key_context.tp_point_duration;
  273. } else {
  274. value->point.loc_x = current_value->point.loc_x;
  275. }
  276. if (next_value->point.loc_y != current_value->point.loc_y) {
  277. value->point.loc_y = (next_value->point.loc_y * (int32_t)current_duration
  278. + current_value->point.loc_y * next_duration)
  279. / (int32_t)key_context.tp_point_duration;
  280. } else {
  281. value->point.loc_y = current_value->point.loc_y;
  282. }
  283. }
  284. #endif
  285. }
  286. exit:
  287. value->point.loc_x = MIN(MAX(value->point.loc_x - CONFIG_TP_LOC_X_MIN, 0), CONFIG_TP_LOC_X_MAX);
  288. value->point.loc_y = MIN(MAX(value->point.loc_y - CONFIG_TP_LOC_Y_MIN, 0), CONFIG_TP_LOC_Y_MAX);
  289. #ifdef CONFIG_DEBUG_TP
  290. printk("duration %d, current(%d %d) next(%d %d) report(%d %d) pessure_value %d\n\n",
  291. current_duration, current_value->point.loc_x, current_value->point.loc_y,
  292. next_value->point.loc_x, next_value->point.loc_y,
  293. value->point.loc_x, value->point.loc_y, value->point.pessure_value);
  294. #endif
  295. return 0;
  296. }