ft3168_tpkey_acts.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief TP Keyboard driver for Actions SoC
  9. */
  10. /*****************************************************************************
  11. * Included header files
  12. *****************************************************************************/
  13. #include <errno.h>
  14. #include <string.h>
  15. #include <device.h>
  16. #include <drivers/i2c.h>
  17. #include <drivers/gpio.h>
  18. #include <drivers/input/input_dev.h>
  19. #include <board.h>
  20. #include <logging/log.h>
  21. #include <board_cfg.h>
  22. LOG_MODULE_REGISTER(tpkey, LOG_LEVEL_DBG);
  23. /*****************************************************************************
  24. * Macro using #define
  25. *****************************************************************************/
  26. #define CONFIG_DEBUG_TP_REPORT_RATE 0
  27. #define TPKEY_SLAVE_ADDR (0x70 >> 1)
  28. /*****************************************************************************
  29. * Private constant and macro definitions using #define
  30. *****************************************************************************/
  31. #define INTERVAL_READ_REG 200 /* unit:ms */
  32. #define FTS_CMD_READ_ID 0x90
  33. /* chip id */
  34. #define FTS_CHIP_IDH 0x64
  35. #define FTS_CHIP_IDL 0x56
  36. /* register address */
  37. #define FTS_REG_CHIP_ID 0xA3
  38. #define FTS_REG_CHIP_ID2 0x9F
  39. #define FTS_REG_FW_VER 0xA6
  40. #define FTS_REG_UPGRADE 0xFC
  41. #define FTS_CMD_START_DELAY 12
  42. /* register address */
  43. #define FTS_REG_WORKMODE 0x00
  44. #define FTS_REG_WORKMODE_FACTORY_VALUE 0x40
  45. #define FTS_REG_WORKMODE_SCAN_VALUE 0xC0
  46. #define FTS_REG_FLOW_WORK_CNT 0x91
  47. #define FTS_REG_POWER_MODE 0xA5
  48. #define FTS_REG_GESTURE_EN 0xD0
  49. #define FTS_REG_GESTURE_ENABLE 0x01
  50. #define FTS_REG_GESTURE_OUTPUT_ADDRESS 0xD3
  51. #define CONFIG_USED_TP_WORK_QUEUE 1
  52. #ifdef CONFIG_USED_TP_WORK_QUEUE
  53. #define CONFIG_TP_WORK_Q_STACK_SIZE 1280
  54. struct k_work_q tp_drv_q;
  55. K_THREAD_STACK_DEFINE(tp_work_q_stack, CONFIG_TP_WORK_Q_STACK_SIZE);
  56. #endif
  57. /*Max point numbers of gesture trace*/
  58. #define MAX_POINTS_GESTURE_TRACE 6
  59. /*Length of gesture information*/
  60. #define MAX_LEN_GESTURE_INFO (MAX_POINTS_GESTURE_TRACE * 4 + 2)
  61. /*Max point numbers of touch trace*/
  62. #define MAX_POINTS_TOUCH_TRACE 1
  63. /*Length of touch information*/
  64. #define MAX_LEN_TOUCH_INFO (MAX_POINTS_TOUCH_TRACE * 6 + 2)
  65. /*Max touch points that touch controller supports*/
  66. #define FTS_MAX_POINTS_SUPPORT 10
  67. /*****************************************************************************
  68. * Private enumerations, structures and unions using typedef
  69. *****************************************************************************/
  70. struct tpkey_data {
  71. input_notify_t notify;
  72. const struct device *bus;
  73. const struct device *int_gpio;
  74. const struct device *power_gpio;
  75. const struct device *reset_gpio;
  76. struct gpio_callback int_gpio_cb;
  77. struct k_work init_work;
  78. int8_t enable_cnt;
  79. uint8_t inited : 1;
  80. };
  81. struct tpkey_config {
  82. struct gpio_cfg int_cfg;
  83. struct gpio_cfg power_cfg;
  84. struct gpio_cfg reset_cfg;
  85. uint8_t slave_addr;
  86. };
  87. /*****************************************************************************
  88. * Private variables/functions
  89. *****************************************************************************/
  90. /*****************************************************************************
  91. * Global variable or extern global variabls/functions
  92. *****************************************************************************/
  93. extern int tpkey_put_point(struct input_value *value, uint32_t timestamp);
  94. extern int tpkey_get_last_point(struct input_value *value, uint32_t timestamp);
  95. static void _fts_read_touch(const struct device *dev);
  96. /*Functions*/
  97. /*****************************************************************************
  98. * power on
  99. *****************************************************************************/
  100. static void _tpkey_poweron(const struct device *dev, bool is_on)
  101. {
  102. const struct tpkey_config *tpcfg = dev->config;
  103. struct tpkey_data *tpkey = dev->data;
  104. if (is_on) {
  105. gpio_pin_set(tpkey->power_gpio, tpcfg->power_cfg.gpion, 1);
  106. } else {
  107. gpio_pin_set(tpkey->power_gpio, tpcfg->power_cfg.gpion, 0);
  108. gpio_pin_set(tpkey->reset_gpio, tpcfg->reset_cfg.gpion, 1);
  109. }
  110. }
  111. /*****************************************************************************
  112. * reset
  113. *****************************************************************************/
  114. static void _tpkey_reset(const struct device *dev)
  115. {
  116. const struct tpkey_config *tpcfg = dev->config;
  117. struct tpkey_data *tpkey = dev->data;
  118. gpio_pin_set(tpkey->reset_gpio, tpcfg->reset_cfg.gpion, 1);
  119. k_msleep(10); // 5
  120. gpio_pin_set(tpkey->reset_gpio, tpcfg->reset_cfg.gpion, 0);
  121. k_msleep(20); // 80
  122. }
  123. /*****************************************************************************
  124. * control interrupt
  125. *****************************************************************************/
  126. static void _tpkey_irq_enable(const struct device *dev, bool enabled)
  127. {
  128. const struct tpkey_config *tpcfg = dev->config;
  129. struct tpkey_data *tpkey = dev->data;
  130. unsigned key = irq_lock();
  131. if (enabled) {
  132. if (++tpkey->enable_cnt == 1) {
  133. gpio_pin_interrupt_configure(tpkey->int_gpio,
  134. tpcfg->int_cfg.gpion, GPIO_INT_EDGE_TO_ACTIVE);
  135. }
  136. } else {
  137. if (--tpkey->enable_cnt == 0) {
  138. gpio_pin_interrupt_configure(tpkey->int_gpio,
  139. tpcfg->int_cfg.gpion, GPIO_INT_DISABLE);
  140. }
  141. }
  142. irq_unlock(key);
  143. }
  144. /*****************************************************************************
  145. * interrupt callback
  146. *****************************************************************************/
  147. DEVICE_DECLARE(tpkey);
  148. static void _tpkey_irq_callback(const struct device *port, struct gpio_callback *cb, uint32_t pins)
  149. {
  150. const struct device *dev = DEVICE_GET(tpkey);
  151. struct tpkey_data *tpkey = dev->data;
  152. sys_trace_void(SYS_TRACE_ID_TP_IRQ);
  153. if (tpkey->inited) {
  154. _fts_read_touch(dev);
  155. }
  156. sys_trace_end_call(SYS_TRACE_ID_TP_IRQ);
  157. }
  158. /*****************************************************************************
  159. * read/write functons that might sleep
  160. *****************************************************************************/
  161. static int _tpkey_i2c_write(uint16_t reg, uint8_t reglen, uint8_t *data, uint16_t datalen)
  162. {
  163. const struct device *dev = DEVICE_GET(tpkey);
  164. const struct tpkey_config *tpcfg = dev->config;
  165. struct tpkey_data *tpkey = dev->data;
  166. uint8_t retrycnt = 10;
  167. uint8_t txbuf[140];
  168. uint16_t txlen = reglen;
  169. int ret = 0;
  170. if (reglen == 2) {
  171. txbuf[0] = reg >> 8;
  172. txbuf[1] = reg & 0xFF;
  173. } else {
  174. txbuf[0] = reg & 0xFF;
  175. }
  176. if (data && datalen) {
  177. memcpy(&txbuf[txlen], data, datalen);
  178. txlen += datalen;
  179. }
  180. for (; retrycnt > 0; retrycnt--) {
  181. ret = i2c_write(tpkey->bus, txbuf, txlen, tpcfg->slave_addr);
  182. if (ret) {
  183. LOG_ERR("i2c wr err %d\n", ret);
  184. k_msleep(4);
  185. } else {
  186. break;
  187. }
  188. }
  189. return ret;
  190. }
  191. static int _tpkey_i2c_read(uint16_t reg, uint8_t reglen, uint8_t *data, uint16_t datalen)
  192. {
  193. const struct device *dev = DEVICE_GET(tpkey);
  194. const struct tpkey_config *tpcfg = dev->config;
  195. struct tpkey_data *tpkey = dev->data;
  196. uint8_t regbuf[2];
  197. uint8_t retrycnt = 10;
  198. int ret = 0;
  199. if (reglen == 2) {
  200. regbuf[0] = reg >> 8;
  201. regbuf[1] = reg & 0xFF;
  202. } else {
  203. regbuf[0] = reg & 0xFF;
  204. }
  205. printk("tpcfg->slave_addr:%02x\n",tpcfg->slave_addr);
  206. for (; retrycnt > 0; retrycnt--) {
  207. ret = i2c_write(tpkey->bus, regbuf, reglen, tpcfg->slave_addr);
  208. if (ret) {
  209. LOG_ERR("i2c wr err %d\n", ret);
  210. k_msleep(4);
  211. continue;
  212. }
  213. ret = i2c_read(tpkey->bus, data, datalen, tpcfg->slave_addr);
  214. if (ret) {
  215. LOG_ERR("i2c rd err %d\n", ret);
  216. k_msleep(4);
  217. continue;
  218. }
  219. break;
  220. }
  221. return ret;
  222. }
  223. /*****************************************************************************
  224. * fts porting functions
  225. *****************************************************************************/
  226. int fts_write(uint8_t addr, uint8_t *data, uint16_t datalen)
  227. {
  228. return _tpkey_i2c_write(addr, 1, data, datalen);
  229. }
  230. static int fts_read(uint8_t addr, uint8_t *data, uint16_t datalen)
  231. {
  232. return _tpkey_i2c_read(addr, 1, data, datalen);
  233. }
  234. static int fts_write_reg(uint8_t addr, uint8_t val)
  235. {
  236. return fts_write(addr, &val, 1);
  237. }
  238. static int fts_read_reg(uint8_t addr, uint8_t *val)
  239. {
  240. return fts_read(addr, val, 1);
  241. }
  242. /*delay, unit: millisecond */
  243. static void fts_msleep(unsigned int msec)
  244. {
  245. k_msleep(msec);
  246. }
  247. static int _i2c_async_write_cb(void *cb_data, struct i2c_msg *msgs,
  248. uint8_t num_msgs, bool is_err)
  249. {
  250. if (is_err) {
  251. LOG_ERR("i2c write err\n");
  252. }
  253. return 0;
  254. }
  255. static void _debug_report_rate(uint32_t timestamp)
  256. {
  257. #if CONFIG_DEBUG_TP_REPORT_RATE
  258. static uint32_t report_timestamp;
  259. static uint8_t report_cnt;
  260. if (++report_cnt >= 64) {
  261. LOG_INF("TP period %u us\n",
  262. k_cyc_to_us_floor32((timestamp - report_timestamp) / report_cnt));
  263. report_timestamp = timestamp;
  264. report_cnt = 0;
  265. }
  266. #endif
  267. }
  268. #define X_COMPENSATE (20)
  269. #define Y_COMPENSATE (0)
  270. static int _i2c_async_read_cb(void *cb_data, struct i2c_msg *msgs,
  271. uint8_t num_msgs, bool is_err)
  272. {
  273. struct input_value val;
  274. uint32_t timestamp;
  275. if (is_err) {
  276. LOG_ERR("i2c read err\n");
  277. goto exit;
  278. }
  279. timestamp = k_cycle_get_32();
  280. _debug_report_rate(timestamp);
  281. val.point.loc_x = ((msgs->buf[2] & 0x0F) << 8) + msgs->buf[3] + X_COMPENSATE;
  282. val.point.loc_y = ((msgs->buf[4] & 0x0F) << 8) + msgs->buf[5] + Y_COMPENSATE;
  283. val.point.pessure_value = (((msgs->buf[2] >> 6) & 0x03) == 1) ? 0 : 1;//msgs->buf[1];
  284. val.point.gesture = 0;//msgs->buf[0]; //
  285. tpkey_put_point(&val, timestamp);
  286. LOG_INF("pressed %d, loc (%d %d)\n",
  287. val.point.pessure_value, val.point.loc_x, val.point.loc_y);
  288. exit:
  289. return 0;
  290. }
  291. static void _fts_read_touch(const struct device *dev)
  292. {
  293. const struct tpkey_config *tpcfg = dev->config;
  294. struct tpkey_data *tpkey = dev->data;
  295. static uint8_t reg[1] = { 0x1 };
  296. static uint8_t buf[MAX_LEN_TOUCH_INFO];/*A maximum of two points are supported*/
  297. int ret = 0;
  298. sys_trace_void(SYS_TRACE_ID_TP_READ);
  299. ret = i2c_write_async(tpkey->bus, reg, 1, tpcfg->slave_addr, _i2c_async_write_cb, NULL);
  300. if (ret)
  301. goto exit;
  302. ret = i2c_read_async(tpkey->bus, buf, sizeof(buf), tpcfg->slave_addr, _i2c_async_read_cb, NULL);
  303. if (ret)
  304. goto exit;
  305. exit:
  306. sys_trace_end_call(SYS_TRACE_ID_TP_READ);
  307. }
  308. /*****************************************************************************
  309. * Name: fts_check_id
  310. * Brief:
  311. * The function is used to check id.
  312. * Input:
  313. * Output:
  314. * Return:
  315. * return 0 if check id successfully, otherwise error code.
  316. *****************************************************************************/
  317. static int _fts_check_id(void)
  318. {
  319. int ret = 0;
  320. uint8_t chip_id[2] = { 0 };
  321. uint8_t val;
  322. /*get chip id*/
  323. fts_read_reg(FTS_REG_CHIP_ID, &chip_id[0]);
  324. fts_read_reg(FTS_REG_CHIP_ID2, &chip_id[1]);
  325. printk("ft3168 get ic information, chip id = 0x%02x%02x", chip_id[0], chip_id[1]);
  326. if ((FTS_CHIP_IDH == chip_id[0]) && (FTS_CHIP_IDL == chip_id[1])) {
  327. LOG_INF("get ic information, chip id = 0x%02x%02x", chip_id[0], chip_id[1]);
  328. return 0;
  329. }
  330. /*get boot id*/
  331. LOG_INF("fw is invalid, need read boot id");
  332. val = 0xAA;
  333. ret = fts_write_reg(0x55, 0xAA);
  334. if (ret) {
  335. LOG_ERR("start cmd write fail");
  336. return ret;
  337. }
  338. fts_msleep(FTS_CMD_START_DELAY);
  339. ret = fts_read(FTS_CMD_READ_ID, chip_id, 2);
  340. if ((ret == 0) && ((FTS_CHIP_IDH == chip_id[0]) && (FTS_CHIP_IDL == chip_id[1]))) {
  341. LOG_INF("get ic information, boot id = 0x%02x%02x", chip_id[0], chip_id[1]);
  342. } else {
  343. LOG_ERR("read boot id fail, read:0x%02x%02x", chip_id[0], chip_id[1]);
  344. ret = -1;
  345. }
  346. return ret;
  347. }
  348. static void _tpkey_init_work(struct k_work *work)
  349. {
  350. const struct device *dev = DEVICE_GET(tpkey);
  351. struct tpkey_data *tpkey = dev->data;
  352. _tpkey_poweron(dev, true);
  353. _tpkey_reset(dev);
  354. _tpkey_irq_enable(dev, true);
  355. /*delay 200ms,wait fw*/
  356. k_msleep(200);
  357. if (!tpkey->inited) {
  358. if (_fts_check_id()) {
  359. LOG_ERR("tpkey init failed\n");
  360. return;
  361. }
  362. tpkey->inited = 1;
  363. }
  364. LOG_INF("tpkey init ok\n");
  365. }
  366. /*****************************************************************************
  367. * device API implemention
  368. *****************************************************************************/
  369. static void _tpkey_dev_enable(const struct device *dev)
  370. {
  371. _tpkey_irq_enable(dev, true);
  372. }
  373. static void _tpkey_dev_disable(const struct device *dev)
  374. {
  375. _tpkey_irq_enable(dev, false);
  376. }
  377. static void _tpkey_dev_inquiry(const struct device *dev, struct input_value *val)
  378. {
  379. tpkey_get_last_point(val, k_cycle_get_32());
  380. }
  381. static void _tpkey_dev_register_notify(const struct device *dev, input_notify_t notify)
  382. {
  383. struct tpkey_data *tpkey = dev->data;
  384. tpkey->notify = notify;
  385. }
  386. static void _tpkey_dev_unregister_notify(const struct device *dev, input_notify_t notify)
  387. {
  388. struct tpkey_data *tpkey = dev->data;
  389. tpkey->notify = NULL;
  390. }
  391. static void _tpkey_acts_get_capabilities(const struct device *dev,
  392. struct input_capabilities *capabilities)
  393. {
  394. capabilities->pointer.supported_gestures = 0;
  395. }
  396. static int _tpkey_dev_init(const struct device *dev)
  397. {
  398. printk("ft3168_t init \n");
  399. const struct tpkey_config *tpcfg = dev->config;
  400. struct tpkey_data *tpkey = dev->data;
  401. tpkey->bus = (struct device *)device_get_binding(CONFIG_TPKEY_I2C_NAME);
  402. if (tpkey->bus == NULL) {
  403. LOG_ERR("can not access i2c dev\n");
  404. return -1;
  405. }
  406. tpkey->int_gpio = device_get_binding(tpcfg->int_cfg.gpio_dev_name);
  407. if (tpkey->int_gpio == NULL) {
  408. LOG_ERR("can not access gpio dev %s\n", tpcfg->int_cfg.gpio_dev_name);
  409. return -1;
  410. }
  411. tpkey->power_gpio = device_get_binding(tpcfg->power_cfg.gpio_dev_name);
  412. if (tpkey->power_gpio == NULL) {
  413. LOG_ERR("can not access gpio dev %s\n", tpcfg->power_cfg.gpio_dev_name);
  414. return -1;
  415. }
  416. tpkey->reset_gpio = device_get_binding(tpcfg->reset_cfg.gpio_dev_name);
  417. if (tpkey->reset_gpio == NULL) {
  418. LOG_ERR("can not access gpio dev %s\n", tpcfg->reset_cfg.gpio_dev_name);
  419. return -1;
  420. }
  421. tpkey->inited = 0;
  422. tpkey->enable_cnt = 0;
  423. gpio_pin_configure(tpkey->power_gpio, tpcfg->power_cfg.gpion,
  424. GPIO_OUTPUT_INACTIVE | tpcfg->power_cfg.flag);
  425. gpio_pin_configure(tpkey->reset_gpio, tpcfg->reset_cfg.gpion,
  426. GPIO_OUTPUT_ACTIVE | tpcfg->reset_cfg.flag);
  427. /* configure interrupt */
  428. gpio_pin_configure(tpkey->int_gpio, tpcfg->int_cfg.gpion,
  429. GPIO_INPUT | GPIO_INT_DEBOUNCE | tpcfg->int_cfg.flag);
  430. gpio_init_callback(&tpkey->int_gpio_cb, _tpkey_irq_callback, BIT(tpcfg->int_cfg.gpion));
  431. gpio_add_callback(tpkey->int_gpio, &tpkey->int_gpio_cb);
  432. k_work_init(&tpkey->init_work, _tpkey_init_work);
  433. #ifdef CONFIG_USED_TP_WORK_QUEUE
  434. k_work_queue_start(&tp_drv_q, tp_work_q_stack, K_THREAD_STACK_SIZEOF(tp_work_q_stack), 7, NULL);
  435. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_work);
  436. #else
  437. k_work_submit(&tpkey->init_work);
  438. #endif
  439. return 0;
  440. }
  441. #ifdef CONFIG_PM_DEVICE
  442. static void _tpkey_dev_suspend(const struct device *dev)
  443. {
  444. _tpkey_irq_enable(dev, false);
  445. _tpkey_poweron(dev, false);
  446. LOG_INF("tpkey suspend\n");
  447. }
  448. static void _tpkey_dev_resume(const struct device *dev)
  449. {
  450. struct tpkey_data *tpkey = dev->data;
  451. LOG_INF("tpkey resume\n");
  452. #ifdef CONFIG_USED_TP_WORK_QUEUE
  453. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_work);
  454. #else
  455. k_work_submit(&tpkey->init_work);
  456. #endif
  457. }
  458. static int _tpkey_dev_pm_control(const struct device *dev, enum pm_device_action action)
  459. {
  460. switch (action) {
  461. case PM_DEVICE_ACTION_EARLY_SUSPEND:
  462. _tpkey_dev_suspend(dev);
  463. break;
  464. case PM_DEVICE_ACTION_LATE_RESUME:
  465. _tpkey_dev_resume(dev);
  466. break;
  467. default:
  468. break;
  469. }
  470. return 0;
  471. }
  472. #endif /* CONFIG_PM_DEVICE */
  473. static struct tpkey_data tpkey_data;
  474. static const struct tpkey_config tpkey_config = {
  475. .slave_addr = TPKEY_SLAVE_ADDR,
  476. .int_cfg = CONFIG_TPKEY_ISR_GPIO,
  477. .power_cfg = CONFIG_TPKEY_POWER_GPIO,
  478. .reset_cfg = CONFIG_TPKEY_RESET_GPIO,
  479. };
  480. static const struct input_dev_driver_api tpkey_driver_api = {
  481. .enable = _tpkey_dev_enable,
  482. .disable = _tpkey_dev_disable,
  483. .inquiry = _tpkey_dev_inquiry,
  484. .register_notify = _tpkey_dev_register_notify,
  485. .unregister_notify = _tpkey_dev_unregister_notify,
  486. .get_capabilities = _tpkey_acts_get_capabilities,
  487. };
  488. #if IS_ENABLED(CONFIG_TPKEY)
  489. DEVICE_DEFINE(tpkey, CONFIG_TPKEY_DEV_NAME, _tpkey_dev_init,
  490. _tpkey_dev_pm_control, &tpkey_data, &tpkey_config, POST_KERNEL,
  491. 60, &tpkey_driver_api);
  492. #endif