cst816s_tpkey_acts.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  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. LOG_MODULE_REGISTER(tpkey, 4);
  30. #define tp_slaver_addr (0x2A >> 1) // 0x15
  31. #define REG_LEN_1B 1
  32. #define REG_LEN_2B 2
  33. #ifndef CONFIG_MERGE_WORK_Q
  34. #define CONFIG_USED_TP_WORK_QUEUE 1
  35. #endif
  36. #define POINT_REPORT_MODE 1
  37. #define GESTURE_REPORT_MODE 2
  38. #define GESTURE_AND_POINT_REPORT_MODE 3
  39. static const struct gpio_cfg reset_gpio_cfg = CONFIG_TPKEY_RESET_GPIO;
  40. static const struct gpio_cfg power_gpio_cfg = CONFIG_TPKEY_POWER_GPIO;
  41. static const struct gpio_cfg isr_gpio_cfg = CONFIG_TPKEY_ISR_GPIO;
  42. #ifdef CONFIG_USED_TP_WORK_QUEUE
  43. #define CONFIG_TP_WORK_Q_STACK_SIZE 1280
  44. struct k_work_q tp_drv_q;
  45. K_THREAD_STACK_DEFINE(tp_work_q_stack, CONFIG_TP_WORK_Q_STACK_SIZE);
  46. #endif
  47. struct acts_tpkey_data {
  48. input_notify_t notify;
  49. const struct device *i2c_dev;
  50. const struct device *gpio_dev;
  51. const struct device *this_dev;
  52. struct gpio_callback key_gpio_cb;
  53. struct k_work init_timer;
  54. bool inited;
  55. #ifdef CONFIG_PM_DEVICE
  56. uint32_t pm_state;
  57. #endif
  58. };
  59. struct acts_tpkey_config {
  60. uint16_t poll_interval_ms;
  61. uint32_t poll_total_ms;
  62. };
  63. uint16_t tp_crc[2] __attribute((used)) = {0};
  64. static struct acts_tpkey_data tpkey_acts_ddata;
  65. static void _cst816s_read_touch(const struct device *i2c_dev, struct input_value *val);
  66. extern int tpkey_put_point(struct input_value *value, uint32_t timestamp);
  67. extern int tpkey_get_last_point(struct input_value *value, uint32_t timestamp);
  68. #define mode_pin (GPIO_INPUT | GPIO_INT_DEBOUNCE)
  69. static void _cst816s_poweron(const struct device *dev, bool is_on)
  70. {
  71. const struct device *gpios_power = device_get_binding(power_gpio_cfg.gpio_dev_name);
  72. gpio_pin_configure(gpios_power, power_gpio_cfg.gpion, GPIO_OUTPUT| GPIO_PULL_UP);
  73. gpio_pin_set_raw(gpios_power, power_gpio_cfg.gpion, is_on ? 0 : 1);
  74. printk("power_gpio_cfg.gpion %d \n",power_gpio_cfg.gpion);
  75. }
  76. static void _tpkey_irq_callback(const struct device *port, struct gpio_callback *cb, uint32_t pins)
  77. {
  78. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  79. struct input_value val;
  80. sys_trace_void(SYS_TRACE_ID_TP_IRQ);
  81. #if 0
  82. static int time_stame = 0;
  83. printk("irq duration : %d \n",k_cyc_to_ns_floor32(k_cycle_get_32() - time_stame));
  84. time_stame = k_cycle_get_32();
  85. #endif
  86. if(tpkey->inited) {
  87. _cst816s_read_touch(tpkey->i2c_dev, &val);
  88. }
  89. sys_trace_end_call(SYS_TRACE_ID_TP_IRQ);
  90. }
  91. static void _cst816s_irq_config(const struct device *dev, bool is_on)
  92. {
  93. struct acts_tpkey_data *tpkey = dev->data;
  94. gpio_pin_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, mode_pin);
  95. gpio_init_callback(&tpkey->key_gpio_cb , _tpkey_irq_callback, BIT(isr_gpio_cfg.gpion));
  96. if (is_on) {
  97. gpio_add_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  98. } else {
  99. gpio_remove_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  100. }
  101. printk("isr_gpio_cfg.gpion %d \n",isr_gpio_cfg.gpion);
  102. }
  103. static void _cst816s_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(100);
  111. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 1);
  112. k_msleep(10);
  113. }
  114. static int i2c_async_write_cb(void *cb_data, struct i2c_msg *msgs,
  115. uint8_t num_msgs, bool is_err)
  116. {
  117. if (is_err) {
  118. LOG_ERR("i2c write err\n");
  119. }
  120. return 0;
  121. }
  122. static int i2c_async_read_cb(void *cb_data, struct i2c_msg *msgs,
  123. uint8_t num_msgs, bool is_err)
  124. {
  125. if (!is_err) {
  126. struct input_value val;
  127. //int temp_read = k_cycle_get_32();
  128. val.point.loc_x = (((uint16_t)(msgs->buf[2]&0x0f))<<8) | msgs->buf[3];
  129. val.point.loc_y = (((uint16_t)(msgs->buf[4]&0x0f))<<8) | msgs->buf[5];
  130. val.point.pessure_value = msgs->buf[1];
  131. val.point.gesture = msgs->buf[0];
  132. tpkey_put_point(&val, k_cycle_get_32());
  133. #if 0
  134. printk("finger_num = %d, gesture = %d,local:(%d,%d)\n",
  135. msgs->buf[1], val.point.gesture,val.point.loc_x, val.point.loc_y);
  136. #endif
  137. } else {
  138. LOG_ERR("i2c read err\n");
  139. }
  140. return 0;
  141. }
  142. static void _cst816s_read_touch(const struct device *i2c_dev, struct input_value *val)
  143. {
  144. static uint8_t write_cmd[1] = {0};
  145. static uint8_t read_cmd[6] = {0};
  146. int ret = 0;
  147. sys_trace_void(SYS_TRACE_ID_TP_READ);
  148. write_cmd[0] = 0x01;
  149. ret = i2c_write_async(i2c_dev, write_cmd, 1, tp_slaver_addr, i2c_async_write_cb, NULL);
  150. if (ret == -1)
  151. goto exit;
  152. ret = i2c_read_async(i2c_dev, read_cmd, 6, tp_slaver_addr, i2c_async_read_cb, NULL);
  153. if (ret == -1)
  154. goto exit;
  155. exit:
  156. sys_trace_end_call(SYS_TRACE_ID_TP_READ);
  157. }
  158. static void _cst816s_enter_low_power_mode(const struct device *dev, bool low_power)
  159. {
  160. uint8_t cmd[6] = {0};
  161. cmd[0] = 0xfe;
  162. if (low_power) {
  163. cmd[1] = 0;
  164. } else {
  165. cmd[1] = 1;
  166. }
  167. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  168. }
  169. static void _cst816s_set_report_mode(const struct device *dev, int mode)
  170. {
  171. uint8_t cmd[6] = {0};
  172. cmd[0] = 0xFA;
  173. if (mode == POINT_REPORT_MODE) {
  174. cmd[1] = 0x60;
  175. } else if (mode == GESTURE_REPORT_MODE) {
  176. cmd[1] = 0x11;
  177. } else if (mode == GESTURE_AND_POINT_REPORT_MODE) {
  178. cmd[1] = 0x71;
  179. }
  180. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  181. }
  182. #if 0
  183. static void _cst816s_turn_off_auto_reset()
  184. {
  185. uint8_t cmd[6] = {0};
  186. cmd[0] = 0xfb;
  187. cmd[1] = 0;
  188. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  189. cmd[0] = 0xfc;
  190. cmd[1] = 0;
  191. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  192. }
  193. #endif
  194. static const struct acts_tpkey_config _tpkey_acts_cdata = {
  195. .poll_interval_ms = 0,
  196. .poll_total_ms = 0,
  197. };
  198. static void _tpkey_acts_enable(const struct device *dev)
  199. {
  200. struct acts_tpkey_data *tpkey = dev->data;
  201. //const struct acts_tpkey_config *cfg = dev->config;
  202. printk("isr_gpio_cfg.gpion %x ",isr_gpio_cfg.gpion);
  203. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_EDGE_FALLING);//GPIO_INT_DISABLE
  204. }
  205. static void _tpkey_acts_disable(const struct device *dev)
  206. {
  207. struct acts_tpkey_data *tpkey = dev->data;
  208. //const struct acts_tpkey_config *cfg = dev->config;
  209. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_DISABLE);//GPIO_INT_DISABLE
  210. LOG_DBG("disable tpkey");
  211. }
  212. static void _tpkey_acts_inquiry(const struct device *dev, struct input_value *val)
  213. {
  214. //struct acts_tpkey_data *tpkey = dev->data;
  215. tpkey_get_last_point(val, k_cycle_get_32());
  216. }
  217. static void _tpkey_acts_register_notify(const struct device *dev, input_notify_t notify)
  218. {
  219. struct acts_tpkey_data *tpkey = dev->data;
  220. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  221. tpkey->notify = notify;
  222. }
  223. static void _tpkey_acts_unregister_notify(const struct device *dev, input_notify_t notify)
  224. {
  225. struct acts_tpkey_data *tpkey = dev->data;
  226. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  227. tpkey->notify = NULL;
  228. }
  229. static void _tpkey_acts_get_capabilities(const struct device *dev,
  230. struct input_capabilities *capabilities)
  231. {
  232. capabilities->pointer.supported_gestures = INPUT_GESTURE_DIRECTION;
  233. }
  234. static void _tpkey_init_work(struct k_work *work)
  235. {
  236. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  237. _cst816s_poweron(tpkey->this_dev, true);
  238. _cst816s_reset(tpkey->this_dev);
  239. k_msleep(50);
  240. _cst816s_irq_config(tpkey->this_dev, true);
  241. //_cst816s_enter_low_power_mode(tpkey->this_dev,false);
  242. _cst816s_set_report_mode(tpkey->this_dev,POINT_REPORT_MODE);
  243. tpkey->inited = true;
  244. }
  245. static int _tpkey_acts_init(const struct device *dev)
  246. {
  247. struct acts_tpkey_data *tpkey = dev->data;
  248. tpkey->this_dev = (struct device *)dev;
  249. tpkey->i2c_dev = (struct device *)device_get_binding(CONFIG_TPKEY_I2C_NAME);
  250. if (!tpkey->i2c_dev) {
  251. printk("can not access right i2c device\n");
  252. return -1;
  253. }
  254. tpkey->gpio_dev = device_get_binding(isr_gpio_cfg.gpio_dev_name);
  255. tpkey->inited = false;
  256. k_work_init(&tpkey->init_timer, _tpkey_init_work);
  257. #ifdef CONFIG_USED_TP_WORK_QUEUE
  258. k_work_queue_start(&tp_drv_q, tp_work_q_stack, K_THREAD_STACK_SIZEOF(tp_work_q_stack), 7, NULL);
  259. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_timer);
  260. #else
  261. k_work_submit(&tpkey->init_timer);
  262. #endif
  263. return 0;
  264. }
  265. static bool low_power_mode = false;
  266. void tpkey_acts_dump(void)
  267. {
  268. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  269. _cst816s_reset(tpkey->this_dev);
  270. k_busy_wait(30*1000);
  271. if (low_power_mode) {
  272. _cst816s_enter_low_power_mode(tpkey->this_dev,false);
  273. low_power_mode = false;
  274. } else {
  275. low_power_mode = true;
  276. _cst816s_enter_low_power_mode(tpkey->this_dev,true);
  277. }
  278. }
  279. static const struct input_dev_driver_api _tpkey_acts_driver_api = {
  280. .enable = _tpkey_acts_enable,
  281. .disable = _tpkey_acts_disable,
  282. .inquiry = _tpkey_acts_inquiry,
  283. .register_notify = _tpkey_acts_register_notify,
  284. .unregister_notify = _tpkey_acts_unregister_notify,
  285. .get_capabilities = _tpkey_acts_get_capabilities,
  286. };
  287. #ifdef CONFIG_PM_DEVICE
  288. static void _cst816s_suspend(const struct device *dev)
  289. {
  290. struct acts_tpkey_data *tpkey = (struct acts_tpkey_data *)dev->data;
  291. const struct device *gpios_reset = device_get_binding(reset_gpio_cfg.gpio_dev_name);
  292. _cst816s_irq_config(tpkey->this_dev, false);
  293. _cst816s_poweron(tpkey->this_dev, false);
  294. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 0);
  295. printk("ok\n");
  296. }
  297. static void _cst816s_resume(const struct device *dev)
  298. {
  299. struct acts_tpkey_data *tpkey = (struct acts_tpkey_data *)dev->data;
  300. #ifdef CONFIG_USED_TP_WORK_QUEUE
  301. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_timer);
  302. #else
  303. k_work_submit(&tpkey->init_timer);
  304. #endif
  305. }
  306. static int _cst816s_pm_control(const struct device *dev, enum pm_device_action action)
  307. {
  308. int ret = 0;
  309. //struct acts_tpkey_data *data = (struct acts_tpkey_data *)dev->data;
  310. switch (action) {
  311. case PM_DEVICE_ACTION_SUSPEND:
  312. break;
  313. case PM_DEVICE_ACTION_RESUME:
  314. break;
  315. case PM_DEVICE_ACTION_EARLY_SUSPEND:
  316. _cst816s_suspend(dev);
  317. break;
  318. case PM_DEVICE_ACTION_LATE_RESUME:
  319. _cst816s_resume(dev);
  320. break;
  321. default:
  322. break;
  323. }
  324. return ret;
  325. }
  326. #else /* CONFIG_PM_DEVICE */
  327. static int _cst816s_pm_control(const struct device *dev, uint32_t ctrl_command,
  328. void *context, device_pm_cb cb, void *arg)
  329. {
  330. }
  331. #endif
  332. #if IS_ENABLED(CONFIG_TPKEY)
  333. DEVICE_DEFINE(tpkey, CONFIG_TPKEY_DEV_NAME, _tpkey_acts_init,
  334. _cst816s_pm_control, &tpkey_acts_ddata, &_tpkey_acts_cdata, POST_KERNEL,
  335. 60, &_tpkey_acts_driver_api);
  336. #endif