gt911.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. /*
  2. * Copyright (c) 2006-2022, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2021-01-13 RiceChen the first version
  9. * 2022-02-25 Wayne optimization
  10. */
  11. #include <rtthread.h>
  12. #include <rtdevice.h>
  13. #define DBG_TAG "gt911"
  14. #define DBG_LVL DBG_INFO
  15. #include <rtdbg.h>
  16. #include "gt911.h"
  17. static struct rt_i2c_client gt911_client;
  18. /* hardware section */
  19. static rt_uint8_t GT911_CFG_TBL[] =
  20. {
  21. 0x6b, 0x00, 0x04, 0x58, 0x02, 0x05, 0x0d, 0x00, 0x01, 0x0f,
  22. 0x28, 0x0f, 0x50, 0x32, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00,
  23. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x2a, 0x0c,
  24. 0x45, 0x47, 0x0c, 0x08, 0x00, 0x00, 0x00, 0x40, 0x03, 0x2c,
  25. 0x00, 0x01, 0x00, 0x00, 0x00, 0x03, 0x64, 0x32, 0x00, 0x00,
  26. 0x00, 0x28, 0x64, 0x94, 0xd5, 0x02, 0x07, 0x00, 0x00, 0x04,
  27. 0x95, 0x2c, 0x00, 0x8b, 0x34, 0x00, 0x82, 0x3f, 0x00, 0x7d,
  28. 0x4c, 0x00, 0x7a, 0x5b, 0x00, 0x7a, 0x00, 0x00, 0x00, 0x00,
  29. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  30. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  31. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  32. 0x00, 0x00, 0x18, 0x16, 0x14, 0x12, 0x10, 0x0e, 0x0c, 0x0a,
  33. 0x08, 0x06, 0x04, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
  34. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  35. 0x00, 0x00, 0x16, 0x18, 0x1c, 0x1d, 0x1e, 0x1f, 0x20, 0x21,
  36. 0x22, 0x24, 0x13, 0x12, 0x10, 0x0f, 0x0a, 0x08, 0x06, 0x04,
  37. 0x02, 0x00, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x00, 0x00,
  38. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  39. 0x00, 0x00, 0x00, 0x00, 0x79, 0x01,
  40. };
  41. static void gt911_touch_up(void *buf, rt_int8_t id);
  42. static rt_err_t gt911_write_reg(struct rt_i2c_client *dev, rt_uint8_t *data, rt_uint8_t len)
  43. {
  44. struct rt_i2c_msg msgs;
  45. msgs.addr = dev->client_addr;
  46. msgs.flags = RT_I2C_WR;
  47. msgs.buf = data;
  48. msgs.len = len;
  49. if (rt_i2c_transfer(dev->bus, &msgs, 1) == 1)
  50. {
  51. return RT_EOK;
  52. }
  53. else
  54. {
  55. return -RT_ERROR;
  56. }
  57. }
  58. static rt_err_t gt911_read_regs(struct rt_i2c_client *dev, rt_uint8_t *reg, rt_uint8_t *data, rt_uint8_t len)
  59. {
  60. struct rt_i2c_msg msgs[2];
  61. msgs[0].addr = dev->client_addr;
  62. msgs[0].flags = RT_I2C_WR;
  63. msgs[0].buf = reg;
  64. msgs[0].len = GT911_REGITER_LEN;
  65. msgs[1].addr = dev->client_addr;
  66. msgs[1].flags = RT_I2C_RD;
  67. msgs[1].buf = data;
  68. msgs[1].len = len;
  69. if (rt_i2c_transfer(dev->bus, msgs, 2) == 2)
  70. {
  71. return RT_EOK;
  72. }
  73. else
  74. {
  75. return -RT_ERROR;
  76. }
  77. }
  78. static rt_err_t gt911_get_product_id(struct rt_i2c_client *dev, rt_uint8_t *data, rt_uint8_t len)
  79. {
  80. rt_uint8_t reg[2];
  81. reg[0] = (rt_uint8_t)(GT911_PRODUCT_ID >> 8);
  82. reg[1] = (rt_uint8_t)(GT911_PRODUCT_ID & 0xff);
  83. if (gt911_read_regs(dev, reg, data, len) != RT_EOK)
  84. {
  85. LOG_E("read id failed");
  86. return -RT_ERROR;
  87. }
  88. return RT_EOK;
  89. }
  90. static rt_err_t gt911_get_info(struct rt_i2c_client *dev, struct rt_touch_info *info)
  91. {
  92. rt_uint8_t reg[2];
  93. rt_uint8_t out_info[7];
  94. rt_uint8_t out_len = 7;
  95. reg[0] = (rt_uint8_t)(GT911_CONFIG_REG >> 8);
  96. reg[1] = (rt_uint8_t)(GT911_CONFIG_REG & 0xFF);
  97. if (gt911_read_regs(dev, reg, out_info, out_len) != RT_EOK)
  98. {
  99. LOG_E("read info failed");
  100. return -RT_ERROR;
  101. }
  102. info->range_x = (out_info[2] << 8) | out_info[1];
  103. info->range_y = (out_info[4] << 8) | out_info[3];
  104. info->point_num = out_info[5] & 0x0f;
  105. return RT_EOK;
  106. }
  107. static rt_err_t gt911_soft_reset(struct rt_i2c_client *dev)
  108. {
  109. rt_uint8_t buf[3];
  110. buf[0] = (rt_uint8_t)(GT911_COMMAND_REG >> 8);
  111. buf[1] = (rt_uint8_t)(GT911_COMMAND_REG & 0xFF);
  112. buf[2] = 0x02;
  113. if (gt911_write_reg(dev, buf, 3) != RT_EOK)
  114. {
  115. LOG_E("soft reset failed");
  116. return -RT_ERROR;
  117. }
  118. return RT_EOK;
  119. }
  120. static rt_int16_t pre_x[GT911_MAX_TOUCH];
  121. static rt_int16_t pre_y[GT911_MAX_TOUCH];
  122. static rt_int16_t pre_w[GT911_MAX_TOUCH];
  123. static rt_uint8_t s_tp_dowm[GT911_MAX_TOUCH];
  124. static void gt911_touch_up(void *buf, rt_int8_t id)
  125. {
  126. struct rt_touch_data *read_data = (struct rt_touch_data *)buf;
  127. if (s_tp_dowm[id] == 1)
  128. {
  129. s_tp_dowm[id] = 0;
  130. read_data[id].event = RT_TOUCH_EVENT_UP;
  131. }
  132. else
  133. {
  134. read_data[id].event = RT_TOUCH_EVENT_NONE;
  135. }
  136. read_data[id].timestamp = rt_touch_get_ts();
  137. read_data[id].width = pre_w[id];
  138. read_data[id].x_coordinate = pre_x[id];
  139. read_data[id].y_coordinate = pre_y[id];
  140. read_data[id].track_id = id;
  141. pre_x[id] = -1; /* last point is none */
  142. pre_y[id] = -1;
  143. pre_w[id] = -1;
  144. }
  145. static void gt911_touch_down(void *buf, rt_int8_t id, rt_int16_t x, rt_int16_t y, rt_int16_t w)
  146. {
  147. struct rt_touch_data *read_data = (struct rt_touch_data *)buf;
  148. if (s_tp_dowm[id] == 1)
  149. {
  150. read_data[id].event = RT_TOUCH_EVENT_MOVE;
  151. }
  152. else
  153. {
  154. read_data[id].event = RT_TOUCH_EVENT_DOWN;
  155. s_tp_dowm[id] = 1;
  156. }
  157. read_data[id].timestamp = rt_touch_get_ts();
  158. read_data[id].width = w;
  159. read_data[id].x_coordinate = x;
  160. read_data[id].y_coordinate = y;
  161. read_data[id].track_id = id;
  162. pre_x[id] = x; /* save last point */
  163. pre_y[id] = y;
  164. pre_w[id] = w;
  165. }
  166. static rt_int8_t pre_id[GT911_MAX_TOUCH];
  167. static rt_uint8_t pre_touch = 0;
  168. static rt_ssize_t gt911_read_point(struct rt_touch_device *touch, void *buf, rt_size_t read_num)
  169. {
  170. rt_uint8_t point_status = 0;
  171. rt_uint8_t touch_num = 0;
  172. rt_uint8_t write_buf[3];
  173. rt_uint8_t cmd[2];
  174. rt_uint8_t read_buf[8 * GT911_MAX_TOUCH] = {0};
  175. rt_uint8_t i;
  176. rt_int8_t read_id = 0;
  177. rt_int16_t input_x = 0;
  178. rt_int16_t input_y = 0;
  179. rt_int16_t input_w = 0;
  180. /* point status register */
  181. cmd[0] = (rt_uint8_t)((GT911_READ_STATUS >> 8) & 0xFF);
  182. cmd[1] = (rt_uint8_t)(GT911_READ_STATUS & 0xFF);
  183. if (gt911_read_regs(&gt911_client, cmd, &point_status, 1) != RT_EOK)
  184. {
  185. LOG_D("read point failed\n");
  186. read_num = 0;
  187. goto exit_;
  188. }
  189. if (point_status == 0) /* no data */
  190. {
  191. read_num = 0;
  192. goto exit_;
  193. }
  194. if ((point_status & 0x80) == 0) /* data is not ready */
  195. {
  196. read_num = 0;
  197. goto exit_;
  198. }
  199. touch_num = point_status & 0x0f; /* get point num */
  200. if (touch_num > GT911_MAX_TOUCH) /* point num is not correct */
  201. {
  202. read_num = 0;
  203. goto exit_;
  204. }
  205. cmd[0] = (rt_uint8_t)((GT911_POINT1_REG >> 8) & 0xFF);
  206. cmd[1] = (rt_uint8_t)(GT911_POINT1_REG & 0xFF);
  207. /* read point num is touch_num */
  208. if (gt911_read_regs(&gt911_client, cmd, read_buf, read_num * GT911_POINT_INFO_NUM) != RT_EOK)
  209. {
  210. LOG_D("read point failed\n");
  211. read_num = 0;
  212. goto exit_;
  213. }
  214. if (pre_touch > touch_num) /* point up */
  215. {
  216. for (i = 0; i < GT911_MAX_TOUCH; i++)
  217. {
  218. rt_uint8_t j;
  219. for (j = 0; j < touch_num; j++) /* this time touch num */
  220. {
  221. read_id = read_buf[j * 8] & 0x0F;
  222. if (pre_id[i] == read_id) /* this id is not free */
  223. break;
  224. }
  225. if ((j == touch_num) && (pre_id[i] != -1)) /* free this node */
  226. {
  227. gt911_touch_up(buf, pre_id[i]);
  228. pre_id[i] = -1;
  229. }
  230. }
  231. }
  232. if (touch_num > 0) /* point down */
  233. {
  234. rt_uint8_t off_set;
  235. for (i = 0; i < touch_num; i++)
  236. {
  237. off_set = i * 8;
  238. read_id = read_buf[off_set] & 0x0f;
  239. pre_id[i] = read_id;
  240. input_x = read_buf[off_set + 1] | (read_buf[off_set + 2] << 8); /* x */
  241. input_y = read_buf[off_set + 3] | (read_buf[off_set + 4] << 8); /* y */
  242. input_w = read_buf[off_set + 5] | (read_buf[off_set + 6] << 8); /* size */
  243. gt911_touch_down(buf, read_id, input_x, input_y, input_w);
  244. }
  245. }
  246. pre_touch = touch_num;
  247. exit_:
  248. write_buf[0] = (rt_uint8_t)((GT911_READ_STATUS >> 8) & 0xFF);
  249. write_buf[1] = (rt_uint8_t)(GT911_READ_STATUS & 0xFF);
  250. write_buf[2] = 0x00;
  251. gt911_write_reg(&gt911_client, write_buf, 3);
  252. return read_num;
  253. }
  254. static rt_err_t gt911_control(struct rt_touch_device *touch, int cmd, void *arg)
  255. {
  256. if (cmd == RT_TOUCH_CTRL_GET_ID)
  257. {
  258. return gt911_get_product_id(&gt911_client, arg, 6);
  259. }
  260. if (cmd == RT_TOUCH_CTRL_GET_INFO)
  261. {
  262. return gt911_get_info(&gt911_client, arg);
  263. }
  264. rt_uint8_t buf[4];
  265. rt_uint8_t i = 0;
  266. rt_uint8_t *config;
  267. config = (rt_uint8_t *)rt_calloc(1, sizeof(GT911_CFG_TBL) + GT911_REGITER_LEN);
  268. if (config == RT_NULL)
  269. {
  270. LOG_D("malloc config memory failed\n");
  271. return -RT_ERROR;
  272. }
  273. config[0] = (rt_uint8_t)((GT911_CONFIG_REG >> 8) & 0xFF);
  274. config[1] = (rt_uint8_t)(GT911_CONFIG_REG & 0xFF);
  275. rt_memcpy(&config[2], GT911_CFG_TBL, sizeof(GT911_CFG_TBL));
  276. switch (cmd)
  277. {
  278. case RT_TOUCH_CTRL_SET_X_RANGE:
  279. {
  280. rt_uint16_t x_range;
  281. x_range = *(rt_uint16_t *)arg;
  282. config[4] = (rt_uint8_t)(x_range >> 8);
  283. config[3] = (rt_uint8_t)(x_range & 0xff);
  284. GT911_CFG_TBL[2] = config[4];
  285. GT911_CFG_TBL[1] = config[3];
  286. break;
  287. }
  288. case RT_TOUCH_CTRL_SET_Y_RANGE:
  289. {
  290. rt_uint16_t y_range;
  291. y_range = *(rt_uint16_t *)arg;
  292. config[6] = (rt_uint8_t)(y_range >> 8);
  293. config[5] = (rt_uint8_t)(y_range & 0xff);
  294. GT911_CFG_TBL[4] = config[6];
  295. GT911_CFG_TBL[3] = config[5];
  296. break;
  297. }
  298. case RT_TOUCH_CTRL_SET_X_TO_Y:
  299. {
  300. config[8] ^= (1 << 3);
  301. break;
  302. }
  303. case RT_TOUCH_CTRL_SET_MODE:
  304. {
  305. rt_uint16_t trig_type;
  306. trig_type = *(rt_uint16_t *)arg;
  307. switch (trig_type)
  308. {
  309. case RT_DEVICE_FLAG_INT_RX:
  310. config[8] &= 0xFC;
  311. break;
  312. case RT_DEVICE_FLAG_RDONLY:
  313. config[8] &= 0xFC;
  314. config[8] |= 0x02;
  315. break;
  316. default:
  317. break;
  318. }
  319. break;
  320. }
  321. default:
  322. {
  323. break;
  324. }
  325. }
  326. if (gt911_write_reg(&gt911_client, config, sizeof(GT911_CFG_TBL) + GT911_ADDR_LEN) != RT_EOK)
  327. {
  328. LOG_D("send config failed");
  329. return -1;
  330. }
  331. buf[0] = (rt_uint8_t)((GT911_CHECK_SUM >> 8) & 0xFF);
  332. buf[1] = (rt_uint8_t)(GT911_CHECK_SUM & 0xFF);
  333. buf[2] = 0;
  334. for (i = GT911_ADDR_LEN; i < sizeof(GT911_CFG_TBL) + GT911_ADDR_LEN; i++)
  335. {
  336. buf[GT911_ADDR_LEN] += config[i];
  337. }
  338. buf[2] = (~buf[2]) + 1;
  339. buf[3] = 1;
  340. gt911_write_reg(&gt911_client, buf, 4);
  341. rt_free(config);
  342. return RT_EOK;
  343. }
  344. static struct rt_touch_ops gt911_touch_ops =
  345. {
  346. .touch_readpoint = gt911_read_point,
  347. .touch_control = gt911_control,
  348. };
  349. int rt_hw_gt911_init(const char *name, struct rt_touch_config *cfg)
  350. {
  351. struct rt_touch_device *touch_device = RT_NULL;
  352. rt_uint32_t bus_speed = 400000;
  353. touch_device = (struct rt_touch_device *)rt_malloc(sizeof(struct rt_touch_device));
  354. if (touch_device == RT_NULL)
  355. {
  356. LOG_E("touch device malloc fail");
  357. return -RT_ERROR;
  358. }
  359. rt_memset((void *)touch_device, 0, sizeof(struct rt_touch_device));
  360. /* hw init*/
  361. rt_pin_mode(*(rt_uint8_t *)cfg->user_data, PIN_MODE_OUTPUT);
  362. rt_pin_mode(cfg->irq_pin.pin, PIN_MODE_OUTPUT);
  363. rt_pin_write(*(rt_uint8_t *)cfg->user_data, PIN_LOW);
  364. rt_pin_write(cfg->irq_pin.pin, PIN_LOW);
  365. rt_thread_delay(10);
  366. rt_pin_write(*(rt_uint8_t *)cfg->user_data, PIN_HIGH);
  367. rt_thread_delay(10);
  368. rt_pin_write(cfg->irq_pin.pin, PIN_MODE_INPUT);
  369. rt_thread_delay(100);
  370. gt911_client.bus = (struct rt_i2c_bus_device *)rt_device_find(cfg->dev_name);
  371. if (gt911_client.bus == RT_NULL)
  372. {
  373. LOG_E("Can't find %s device", cfg->dev_name);
  374. return -RT_ERROR;
  375. }
  376. if (rt_device_open((rt_device_t)gt911_client.bus, RT_DEVICE_FLAG_RDWR) != RT_EOK)
  377. {
  378. LOG_E("open %s device failed", cfg->dev_name);
  379. return -RT_ERROR;
  380. }
  381. if (rt_device_control((rt_device_t)gt911_client.bus, RT_I2C_DEV_CTRL_CLK, &bus_speed) != RT_EOK)
  382. {
  383. LOG_E("control %s device failed", cfg->dev_name);
  384. return -RT_ERROR;
  385. }
  386. gt911_client.client_addr = GT911_ADDRESS_HIGH;
  387. gt911_soft_reset(&gt911_client);
  388. rt_memset(&pre_x[0], 0xff, GT911_MAX_TOUCH * sizeof(rt_int16_t));
  389. rt_memset(&pre_y[0], 0xff, GT911_MAX_TOUCH * sizeof(rt_int16_t));
  390. rt_memset(&pre_w[0], 0xff, GT911_MAX_TOUCH * sizeof(rt_int16_t));
  391. rt_memset(&s_tp_dowm[0], 0, GT911_MAX_TOUCH * sizeof(rt_int8_t));
  392. rt_memset(&pre_id[0], 0xff, GT911_MAX_TOUCH * sizeof(rt_uint8_t));
  393. /* register touch device */
  394. touch_device->info.type = RT_TOUCH_TYPE_CAPACITANCE;
  395. touch_device->info.vendor = RT_TOUCH_VENDOR_GT;
  396. rt_memcpy(&touch_device->config, cfg, sizeof(struct rt_touch_config));
  397. touch_device->ops = &gt911_touch_ops;
  398. rt_hw_touch_register(touch_device, name, RT_DEVICE_FLAG_INT_RX, RT_NULL);
  399. LOG_I("touch device gt911 init success");
  400. return RT_EOK;
  401. }