ft3169_tpkey_acts.c 16 KB

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