cst816s_cob_tpkey_acts.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708
  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 <stdbool.h>
  14. #include <init.h>
  15. #include <irq.h>
  16. #include <drivers/adc.h>
  17. #include <drivers/input/input_dev.h>
  18. #include <sys/util.h>
  19. #include <sys/byteorder.h>
  20. #include <board.h>
  21. #include <soc_pmu.h>
  22. #include <logging/log.h>
  23. #include <device.h>
  24. #include <drivers/gpio.h>
  25. #include <soc.h>
  26. #include <string.h>
  27. #include <drivers/i2c.h>
  28. #include <board_cfg.h>
  29. #include "capacitive_hynitron_cst816t_update.h"
  30. LOG_MODULE_REGISTER(tpkey, 2);
  31. #define tp_slaver_addr (0x2A>>1) // 0x15
  32. #define tp_slaver_boot_addr (0x6A)
  33. #define REG_LEN_1B 1
  34. #define REG_LEN_2B 2
  35. #ifndef CONFIG_MERGE_WORK_Q
  36. #define CONFIG_USED_TP_WORK_QUEUE 1
  37. #endif
  38. #define POINT_REPORT_MODE 1
  39. #define GESTURE_REPORT_MODE 2
  40. #define GESTURE_AND_POINT_REPORT_MODE 3
  41. static const struct gpio_cfg reset_gpio_cfg = CONFIG_TPKEY_RESET_GPIO;
  42. static const struct gpio_cfg power_gpio_cfg = CONFIG_TPKEY_POWER_GPIO;
  43. static const struct gpio_cfg isr_gpio_cfg = CONFIG_TPKEY_ISR_GPIO;
  44. #ifdef CONFIG_USED_TP_WORK_QUEUE
  45. #define CONFIG_TP_WORK_Q_STACK_SIZE 1280
  46. struct k_work_q tp_drv_q;
  47. K_THREAD_STACK_DEFINE(tp_work_q_stack, CONFIG_TP_WORK_Q_STACK_SIZE);
  48. #endif
  49. struct acts_tpkey_data {
  50. input_notify_t notify;
  51. const struct device *i2c_dev;
  52. const struct device *gpio_dev;
  53. const struct device *this_dev;
  54. struct gpio_callback key_gpio_cb;
  55. struct k_work init_timer;
  56. bool inited;
  57. #ifdef CONFIG_PM_DEVICE
  58. uint32_t pm_state;
  59. #endif
  60. };
  61. struct acts_tpkey_config {
  62. uint16_t poll_interval_ms;
  63. uint32_t poll_total_ms;
  64. };
  65. uint16_t tp_crc[2] __attribute((used)) = {0};
  66. static struct acts_tpkey_data tpkey_acts_ddata;
  67. static void _cst816t_read_touch(const struct device *i2c_dev, struct input_value *val);
  68. extern int tpkey_put_point(struct input_value *value, uint32_t timestamp);
  69. extern int tpkey_get_last_point(struct input_value *value, uint32_t timestamp);
  70. #define mode_pin (GPIO_PULL_UP | GPIO_INPUT | GPIO_INT_DEBOUNCE)
  71. static void _cst816t_poweron(const struct device *dev, bool is_on)
  72. {
  73. const struct device *gpios_power = device_get_binding(power_gpio_cfg.gpio_dev_name);
  74. gpio_pin_configure(gpios_power, power_gpio_cfg.gpion, GPIO_OUTPUT| GPIO_PULL_UP);
  75. gpio_pin_set_raw(gpios_power, power_gpio_cfg.gpion, is_on ? 0 : 1);
  76. }
  77. static void _tpkey_irq_callback(const struct device *port, struct gpio_callback *cb, uint32_t pins)
  78. {
  79. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  80. struct input_value val;
  81. sys_trace_void(SYS_TRACE_ID_TP_IRQ);
  82. #if 0
  83. static int time_stame = 0;
  84. printk("irq duration : %d \n",k_cyc_to_ns_floor32(k_cycle_get_32() - time_stame));
  85. time_stame = k_cycle_get_32();
  86. #endif
  87. if(tpkey->inited) {
  88. _cst816t_read_touch(tpkey->i2c_dev, &val);
  89. }
  90. sys_trace_end_call(SYS_TRACE_ID_TP_IRQ);
  91. }
  92. static void _cst816t_irq_config(const struct device *dev, bool is_on)
  93. {
  94. struct acts_tpkey_data *tpkey = dev->data;
  95. gpio_pin_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, mode_pin);
  96. gpio_init_callback(&tpkey->key_gpio_cb , _tpkey_irq_callback, BIT(isr_gpio_cfg.gpion));
  97. if (is_on) {
  98. gpio_add_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  99. } else {
  100. gpio_remove_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  101. }
  102. }
  103. static void _cst816t_reset(const struct device *dev)
  104. {
  105. const struct device *gpios_reset = device_get_binding(reset_gpio_cfg.gpio_dev_name);
  106. gpio_pin_configure(gpios_reset , reset_gpio_cfg.gpion, GPIO_OUTPUT | GPIO_PULL_UP);
  107. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 1);
  108. k_msleep(50);
  109. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 0);
  110. k_msleep(10);
  111. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 1);
  112. k_msleep(5);
  113. }
  114. static int8_t _cst816t_enter_bootmode(const struct device *dev)
  115. {
  116. struct acts_tpkey_data *tpkey = dev->data;
  117. uint8_t retrycnt = 10;
  118. _cst816t_reset(dev);
  119. while(retrycnt--){
  120. uint8_t cmd[4] = {0};
  121. cmd[0] = 0xA0;
  122. cmd[1] = 0x01;
  123. cmd[2] = 0xab;
  124. if(-1 == i2c_write(tpkey->i2c_dev, cmd, 3, tp_slaver_boot_addr)) {
  125. k_msleep(4);
  126. continue;
  127. }
  128. cmd[0] = 0xA0;
  129. cmd[1] = 0x03;
  130. if(-1 == i2c_write(tpkey->i2c_dev, cmd, 2, tp_slaver_boot_addr)) {
  131. k_msleep(4);
  132. continue;
  133. }
  134. if(-1 == i2c_read(tpkey->i2c_dev, cmd, 1, tp_slaver_boot_addr)) {
  135. k_msleep(2);
  136. continue;
  137. } else {
  138. if(cmd[0] != 0xC1) {
  139. k_msleep(2);
  140. continue;
  141. } else {
  142. return 0;
  143. }
  144. }
  145. }
  146. return -1;
  147. }
  148. static bool _cst816t_write_bytes(const struct device *dev, uint16_t reg,
  149. uint8_t *data, uint16_t len, uint8_t regLen)
  150. {
  151. int i2c_op_ret = 0;
  152. struct acts_tpkey_data *tpkey = dev->data;
  153. uint8_t retrycnt = 10;
  154. uint8_t sendBuf[140];
  155. int lenT=0;
  156. if (regLen == 2) {
  157. sendBuf[0] = reg / 0x100;
  158. sendBuf[1] = reg % 0x100;
  159. lenT = 2;
  160. } else {
  161. sendBuf[0]=reg % 0x100;
  162. lenT = 1;
  163. }
  164. memcpy(sendBuf + lenT, data, len);
  165. lenT += len;
  166. while (retrycnt--)
  167. {
  168. i2c_op_ret = i2c_write(tpkey->i2c_dev, sendBuf, lenT, tp_slaver_boot_addr);
  169. if (0 != i2c_op_ret) {
  170. k_msleep(4);
  171. LOG_ERR("err = %d\n", i2c_op_ret);
  172. } else {
  173. return true;
  174. }
  175. }
  176. return false;
  177. }
  178. static bool _cst816t_read_bytes(const struct device *dev, uint16_t reg, uint8_t *value, uint16_t len,uint8_t regLen)
  179. {
  180. int i2c_op_ret = 0;
  181. struct acts_tpkey_data *tpkey = dev->data;
  182. uint8_t retrycnt = 10;
  183. uint8_t sendBuf[4];
  184. int lenT=0;
  185. if (regLen==2) {
  186. sendBuf[0] = reg / 0x100;
  187. sendBuf[1] = reg % 0x100;
  188. lenT=2;
  189. } else {
  190. sendBuf[0] = reg % 0x100;
  191. lenT=1;
  192. }
  193. while (retrycnt--)
  194. {
  195. i2c_op_ret = i2c_write(tpkey->i2c_dev, sendBuf, lenT, tp_slaver_boot_addr);
  196. if(0 != i2c_op_ret) {
  197. k_msleep(4);
  198. LOG_ERR("err = %d\n", i2c_op_ret);
  199. if (retrycnt == 1)
  200. {
  201. return false;
  202. }
  203. }
  204. else
  205. {
  206. break;
  207. }
  208. }
  209. retrycnt = 10;
  210. while (retrycnt--)
  211. {
  212. i2c_op_ret = i2c_read(tpkey->i2c_dev, value, len, tp_slaver_boot_addr);
  213. if(0 != i2c_op_ret) {
  214. k_msleep(4);
  215. LOG_ERR("err = %d\n", i2c_op_ret);
  216. }
  217. else
  218. {
  219. return true;
  220. }
  221. }
  222. return false;
  223. }
  224. static int32_t cst816t_read_checksum(const struct device *dev, uint16_t startAddr,uint16_t len)
  225. {
  226. union {
  227. uint32_t sum;
  228. uint8_t buf[4];
  229. } checksum;
  230. uint8_t cmd[3] = {0};
  231. memset(&checksum, 0, sizeof(checksum));
  232. //uint8_t readback[4] = {0};
  233. if (_cst816t_enter_bootmode(dev) == -1) {
  234. return -1;
  235. }
  236. cmd[0] = 0;
  237. if (false == _cst816t_write_bytes(dev, 0xA003, cmd, 1, REG_LEN_2B)) {
  238. return -1;
  239. }
  240. k_msleep(500);
  241. checksum.sum = 0;
  242. if (false == _cst816t_read_bytes(dev, 0xA008, checksum.buf, 2, REG_LEN_2B)) {
  243. return -1;
  244. }
  245. return checksum.sum;
  246. }
  247. static int _cst816t_update(const struct device *dev, uint16_t startAddr, uint16_t len, const uint8_t* src)
  248. {
  249. uint16_t sum_len;
  250. uint8_t cmd[10];
  251. if (_cst816t_enter_bootmode(dev) == -1) {
  252. return -1;
  253. }
  254. sum_len = 0;
  255. #define PER_LEN 512
  256. do
  257. {
  258. if (sum_len >= len)
  259. {
  260. return 0;
  261. }
  262. // send address
  263. cmd[0] = startAddr&0xFF;
  264. cmd[1] = startAddr>>8;
  265. _cst816t_write_bytes(dev, 0xA014, cmd, 2, REG_LEN_2B);
  266. int piece_len = 128;
  267. for(int x=0;x<512;x=x+piece_len)
  268. {
  269. _cst816t_write_bytes(dev, 0xA018 + x, (uint8_t*)src + x, piece_len, REG_LEN_2B);
  270. }
  271. cmd[0] = 0xEE;
  272. _cst816t_write_bytes(dev, 0xA004, cmd, 1, REG_LEN_2B);
  273. k_msleep(100);
  274. {
  275. uint8_t retrycnt = 50;
  276. while(retrycnt--)
  277. {
  278. cmd[0] = 0;
  279. _cst816t_read_bytes(dev, 0xA005, cmd, 1, REG_LEN_2B);
  280. if (cmd[0] == 0x55)
  281. {
  282. // success
  283. break;
  284. }
  285. k_msleep(10);
  286. }
  287. }
  288. startAddr += PER_LEN;
  289. src += PER_LEN;
  290. sum_len += PER_LEN;
  291. } while(len);
  292. // exit program mode
  293. cmd[0] = 0x00;
  294. _cst816t_write_bytes(dev, 0xA003, cmd, 1, REG_LEN_2B);
  295. return 0;
  296. }
  297. static bool _cst816t_hynitron_update(const struct device *dev, bool fource_update)
  298. {
  299. if (_cst816t_enter_bootmode(dev) == 0) {
  300. if(sizeof(app_bin) > 10) {
  301. uint16_t startAddr = app_bin[1];
  302. uint16_t length = app_bin[3];
  303. uint16_t checksum = app_bin[5];
  304. startAddr <<= 8;
  305. startAddr |= app_bin[0];
  306. length <<= 8;
  307. length |= app_bin[2];
  308. checksum <<= 8;
  309. checksum |= app_bin[4];
  310. tp_crc[0] = cst816t_read_checksum(dev, startAddr, length);
  311. tp_crc[0] = cst816t_read_checksum(dev, startAddr, length);
  312. tp_crc[0] = cst816t_read_checksum(dev, startAddr, length);
  313. tp_crc[1] = checksum;
  314. if ((tp_crc[0] != checksum) || fource_update) {
  315. int update_ret = -1;
  316. //LCD_Init();
  317. //tPUpdatePage(0);
  318. update_ret = _cst816t_update(dev, startAddr, length, app_bin+6);
  319. uint32_t crcR=cst816t_read_checksum(dev, startAddr, length);
  320. k_msleep(2000);
  321. LOG_INF("crc_now:0x%x, crc_fw:0x%x\n", crcR, checksum);
  322. } else {
  323. LOG_INF("cst816s checksum, crc_now=%x, crc_fw=%x, no need to update tp firmware\n", tp_crc[0], checksum);
  324. }
  325. }
  326. return true;
  327. } else {
  328. printk("_cst816t_enter_bootmode failed\n");
  329. }
  330. return false;
  331. }
  332. static int i2c_async_write_cb(void *cb_data, struct i2c_msg *msgs,
  333. uint8_t num_msgs, bool is_err)
  334. {
  335. if (is_err) {
  336. LOG_ERR("i2c write err\n");
  337. }
  338. return 0;
  339. }
  340. static int i2c_async_read_cb(void *cb_data, struct i2c_msg *msgs,
  341. uint8_t num_msgs, bool is_err)
  342. {
  343. if (!is_err) {
  344. struct input_value val;
  345. //int temp_read = k_cycle_get_32();
  346. val.point.loc_x = (((uint16_t)(msgs->buf[2]&0x0f))<<8) | msgs->buf[3];
  347. val.point.loc_y = (((uint16_t)(msgs->buf[4]&0x0f))<<8) | msgs->buf[5];
  348. val.point.pessure_value = msgs->buf[1];
  349. val.point.gesture = msgs->buf[0];
  350. tpkey_put_point(&val, k_cycle_get_32());
  351. #if 0
  352. LOG_DBG("finger_num = %d, gesture = %d,local:(%d,%d)\n",
  353. msgs->buf[1], val.point.gesture,val.point.loc_x, val.point.loc_y);
  354. #endif
  355. } else {
  356. LOG_ERR("i2c read err\n");
  357. }
  358. return 0;
  359. }
  360. static void _cst816t_read_touch(const struct device *i2c_dev, struct input_value *val)
  361. {
  362. static uint8_t write_cmd[1] = {0};
  363. static uint8_t read_cmd[6] = {0};
  364. int ret = 0;
  365. sys_trace_void(SYS_TRACE_ID_TP_READ);
  366. write_cmd[0] = 0x01;
  367. ret = i2c_write_async(i2c_dev, write_cmd, 1, tp_slaver_addr, i2c_async_write_cb, NULL);
  368. if (ret == -1)
  369. goto exit;
  370. ret = i2c_read_async(i2c_dev, read_cmd, 6, tp_slaver_addr, i2c_async_read_cb, NULL);
  371. if (ret == -1)
  372. goto exit;
  373. exit:
  374. sys_trace_end_call(SYS_TRACE_ID_TP_READ);
  375. }
  376. static void _cst816t_enter_low_power_mode(const struct device *dev, bool low_power)
  377. {
  378. uint8_t cmd[6] = {0};
  379. cmd[0] = 0xfe;
  380. if (low_power) {
  381. cmd[1] = 0;
  382. } else {
  383. cmd[1] = 1;
  384. }
  385. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  386. }
  387. #if 0
  388. static void _cst816t_set_report_mode(const struct device *dev, int mode)
  389. {
  390. uint8_t cmd[6] = {0};
  391. cmd[0] = 0xFA;
  392. if (mode == POINT_REPORT_MODE) {
  393. cmd[1] = 0x60;
  394. } else if (mode == GESTURE_REPORT_MODE) {
  395. cmd[1] = 0x11;
  396. } else if (mode == GESTURE_AND_POINT_REPORT_MODE) {
  397. cmd[1] = 0x71;
  398. }
  399. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  400. }
  401. static void _cst816t_turn_off_auto_reset()
  402. {
  403. uint8_t cmd[6] = {0};
  404. cmd[0] = 0xfb;
  405. cmd[1] = 0;
  406. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  407. cmd[0] = 0xfc;
  408. cmd[1] = 0;
  409. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  410. }
  411. #endif
  412. static const struct acts_tpkey_config _tpkey_acts_cdata = {
  413. .poll_interval_ms = 0,
  414. .poll_total_ms = 0,
  415. };
  416. static void _tpkey_acts_enable(const struct device *dev)
  417. {
  418. struct acts_tpkey_data *tpkey = dev->data;
  419. //const struct acts_tpkey_config *cfg = dev->config;
  420. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_EDGE_FALLING);//GPIO_INT_DISABLE
  421. LOG_DBG("enable tpkey");
  422. }
  423. static void _tpkey_acts_disable(const struct device *dev)
  424. {
  425. struct acts_tpkey_data *tpkey = dev->data;
  426. //const struct acts_tpkey_config *cfg = dev->config;
  427. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_DISABLE);//GPIO_INT_DISABLE
  428. LOG_DBG("disable tpkey");
  429. }
  430. static void _tpkey_acts_inquiry(const struct device *dev, struct input_value *val)
  431. {
  432. //struct acts_tpkey_data *tpkey = dev->data;
  433. tpkey_get_last_point(val, k_cycle_get_32());
  434. }
  435. static void _tpkey_acts_register_notify(const struct device *dev, input_notify_t notify)
  436. {
  437. struct acts_tpkey_data *tpkey = dev->data;
  438. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  439. tpkey->notify = notify;
  440. }
  441. static void _tpkey_acts_unregister_notify(const struct device *dev, input_notify_t notify)
  442. {
  443. struct acts_tpkey_data *tpkey = dev->data;
  444. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  445. tpkey->notify = NULL;
  446. }
  447. static void _tpkey_acts_get_capabilities(const struct device *dev,
  448. struct input_capabilities *capabilities)
  449. {
  450. capabilities->pointer.supported_gestures = INPUT_GESTURE_DIRECTION;
  451. }
  452. static void _tpkey_init_work(struct k_work *work)
  453. {
  454. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  455. if (!tpkey->inited) {
  456. _cst816t_poweron(tpkey->this_dev, true);
  457. _cst816t_reset(tpkey->this_dev);
  458. _cst816t_hynitron_update(tpkey->this_dev, false);
  459. _cst816t_reset(tpkey->this_dev);
  460. _cst816t_irq_config(tpkey->this_dev, true);
  461. tpkey->inited = true;
  462. } else {
  463. _cst816t_poweron(tpkey->this_dev, true);
  464. _cst816t_reset(tpkey->this_dev);
  465. _cst816t_irq_config(tpkey->this_dev, true);
  466. LOG_INF("ok\n");
  467. }
  468. }
  469. static int _tpkey_acts_init(const struct device *dev)
  470. {
  471. struct acts_tpkey_data *tpkey = dev->data;
  472. tpkey->this_dev = (struct device *)dev;
  473. tpkey->i2c_dev = (struct device *)device_get_binding(CONFIG_TPKEY_I2C_NAME);
  474. if (!tpkey->i2c_dev) {
  475. printk("can not access right i2c device\n");
  476. return -1;
  477. }
  478. tpkey->gpio_dev = device_get_binding(isr_gpio_cfg.gpio_dev_name);
  479. tpkey->inited = false;
  480. k_work_init(&tpkey->init_timer, _tpkey_init_work);
  481. #ifdef CONFIG_USED_TP_WORK_QUEUE
  482. k_work_queue_start(&tp_drv_q, tp_work_q_stack, K_THREAD_STACK_SIZEOF(tp_work_q_stack), 7, NULL);
  483. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_timer);
  484. #else
  485. k_work_submit(&tpkey->init_timer);
  486. #endif
  487. return 0;
  488. }
  489. static bool low_power_mode = false;
  490. void tpkey_acts_dump(void)
  491. {
  492. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  493. _cst816t_reset(tpkey->this_dev);
  494. k_msleep(30);
  495. if (low_power_mode) {
  496. _cst816t_enter_low_power_mode(tpkey->this_dev,false);
  497. low_power_mode = false;
  498. } else {
  499. low_power_mode = true;
  500. _cst816t_enter_low_power_mode(tpkey->this_dev,true);
  501. }
  502. }
  503. static const struct input_dev_driver_api _tpkey_acts_driver_api = {
  504. .enable = _tpkey_acts_enable,
  505. .disable = _tpkey_acts_disable,
  506. .inquiry = _tpkey_acts_inquiry,
  507. .register_notify = _tpkey_acts_register_notify,
  508. .unregister_notify = _tpkey_acts_unregister_notify,
  509. .get_capabilities = _tpkey_acts_get_capabilities,
  510. };
  511. #ifdef CONFIG_PM_DEVICE
  512. static void _cst816t_suspend(const struct device *dev)
  513. {
  514. struct acts_tpkey_data *tpkey = (struct acts_tpkey_data *)dev->data;
  515. const struct device *gpios_reset = device_get_binding(reset_gpio_cfg.gpio_dev_name);
  516. _cst816t_irq_config(tpkey->this_dev, false);
  517. _cst816t_poweron(tpkey->this_dev, false);
  518. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 0);
  519. LOG_INF("ok\n");
  520. }
  521. static void _cst816t_resume(const struct device *dev)
  522. {
  523. struct acts_tpkey_data *tpkey = (struct acts_tpkey_data *)dev->data;
  524. #ifdef CONFIG_USED_TP_WORK_QUEUE
  525. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_timer);
  526. #else
  527. k_work_submit(&tpkey->init_timer);
  528. #endif
  529. }
  530. static int _cst816t_pm_control(const struct device *dev, enum pm_device_action action)
  531. {
  532. int ret = 0;
  533. //struct acts_tpkey_data *data = (struct acts_tpkey_data *)dev->data;
  534. switch (action) {
  535. case PM_DEVICE_ACTION_SUSPEND:
  536. break;
  537. case PM_DEVICE_ACTION_RESUME:
  538. break;
  539. case PM_DEVICE_ACTION_EARLY_SUSPEND:
  540. _cst816t_suspend(dev);
  541. break;
  542. case PM_DEVICE_ACTION_LATE_RESUME:
  543. _cst816t_resume(dev);
  544. break;
  545. default:
  546. break;
  547. }
  548. return ret;
  549. }
  550. #else /* CONFIG_PM_DEVICE */
  551. static int _cst816t_pm_control(const struct device *dev, uint32_t ctrl_command,
  552. void *context, device_pm_cb cb, void *arg)
  553. {
  554. }
  555. #endif
  556. #if IS_ENABLED(CONFIG_TPKEY)
  557. DEVICE_DEFINE(tpkey, CONFIG_TPKEY_DEV_NAME, _tpkey_acts_init,
  558. _cst816t_pm_control, &tpkey_acts_ddata, &_tpkey_acts_cdata, POST_KERNEL,
  559. 60, &_tpkey_acts_driver_api);
  560. #endif