cst820_tpkey_acts.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  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. #ifdef CONFIG_TPKEY_POWER_GPIO
  41. static const struct gpio_cfg power_gpio_cfg = CONFIG_TPKEY_POWER_GPIO;
  42. #endif
  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 _cst820_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_INPUT | GPIO_INT_DEBOUNCE)
  71. static void _cst820_poweron(const struct device *dev, bool is_on)
  72. {
  73. #ifdef CONFIG_TPKEY_POWER_GPIO
  74. const struct device *gpios_power = device_get_binding(power_gpio_cfg.gpio_dev_name);
  75. gpio_pin_configure(gpios_power, power_gpio_cfg.gpion, GPIO_OUTPUT| GPIO_PULL_UP);
  76. gpio_pin_set_raw(gpios_power, power_gpio_cfg.gpion, is_on ? 1 : 0);
  77. printk("power_gpio_cfg.gpion %d \n",power_gpio_cfg.gpion);
  78. #endif
  79. }
  80. static void _cst820_pmctl_io(const struct device *dev, bool is_suspend)
  81. {
  82. static uint32_t isr_ctl;
  83. /* scl/sda pin suspend/resume is not here and handled in soc_sleep. */
  84. if (is_suspend) {
  85. isr_ctl = sys_read32(GPION_CTL(CONFIG_TPKEY_GPIO_ISR_NUM));
  86. sys_write32(0x1000, GPION_CTL(CONFIG_TPKEY_GPIO_ISR_NUM));
  87. } else {
  88. sys_write32(isr_ctl, GPION_CTL(CONFIG_TPKEY_GPIO_ISR_NUM));
  89. }
  90. }
  91. static void _tpkey_irq_callback(const struct device *port, struct gpio_callback *cb, uint32_t pins)
  92. {
  93. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  94. struct input_value val;
  95. sys_trace_void(SYS_TRACE_ID_TP_IRQ);
  96. #if 0
  97. static int time_stame = 0;
  98. printk("irq duration : %d \n",k_cyc_to_ns_floor32(k_cycle_get_32() - time_stame));
  99. time_stame = k_cycle_get_32();
  100. #endif
  101. if(tpkey->inited) {
  102. _cst820_read_touch(tpkey->i2c_dev, &val);
  103. }
  104. sys_trace_end_call(SYS_TRACE_ID_TP_IRQ);
  105. }
  106. static void _cst820_irq_config(const struct device *dev, bool is_on)
  107. {
  108. struct acts_tpkey_data *tpkey = dev->data;
  109. gpio_pin_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, mode_pin);
  110. gpio_init_callback(&tpkey->key_gpio_cb , _tpkey_irq_callback, BIT(isr_gpio_cfg.gpion));
  111. if (is_on) {
  112. gpio_add_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  113. } else {
  114. gpio_remove_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  115. }
  116. printk("isr_gpio_cfg.gpion %d \n",isr_gpio_cfg.gpion);
  117. }
  118. static void _cst820_reset(const struct device *dev)
  119. {
  120. const struct device *gpios_reset = device_get_binding(reset_gpio_cfg.gpio_dev_name);
  121. if (gpios_reset == NULL)
  122. return ;
  123. gpio_pin_configure(gpios_reset, reset_gpio_cfg.gpion, GPIO_OUTPUT | GPIO_PULL_UP);
  124. gpio_pin_set_raw(gpios_reset, reset_gpio_cfg.gpion, 1);
  125. k_msleep(50);
  126. gpio_pin_set_raw(gpios_reset, reset_gpio_cfg.gpion, 0);
  127. k_msleep(100);
  128. gpio_pin_set_raw(gpios_reset, reset_gpio_cfg.gpion, 1);
  129. k_msleep(10);
  130. }
  131. static int i2c_async_write_cb(void *cb_data, struct i2c_msg *msgs,
  132. uint8_t num_msgs, bool is_err)
  133. {
  134. if (is_err) {
  135. LOG_ERR("i2c write err\n");
  136. }
  137. return 0;
  138. }
  139. static int i2c_async_read_cb(void *cb_data, struct i2c_msg *msgs,
  140. uint8_t num_msgs, bool is_err)
  141. {
  142. if (!is_err) {
  143. struct input_value val;
  144. //int temp_read = k_cycle_get_32();
  145. val.point.loc_x = (((uint16_t)(msgs->buf[2]&0x0f))<<8) | msgs->buf[3];
  146. val.point.loc_y = (((uint16_t)(msgs->buf[4]&0x0f))<<8) | msgs->buf[5];
  147. val.point.pessure_value = msgs->buf[1];
  148. switch(msgs->buf[0]) {
  149. case 1:
  150. msgs->buf[0] = 2;
  151. break;
  152. case 2:
  153. msgs->buf[0] = 1;
  154. break;
  155. }
  156. val.point.gesture = msgs->buf[0];
  157. tpkey_put_point(&val, k_cycle_get_32());
  158. #if 0
  159. printk("finger_num = %d, gesture = %d,local:(%d,%d)\n",
  160. msgs->buf[1], val.point.gesture,val.point.loc_x, val.point.loc_y);
  161. #endif
  162. } else {
  163. LOG_ERR("i2c read err\n");
  164. }
  165. return 0;
  166. }
  167. static void _cst820_read_touch(const struct device *i2c_dev, struct input_value *val)
  168. {
  169. static uint8_t write_cmd[1] = {0};
  170. static uint8_t read_cmd[6] = {0};
  171. int ret = 0;
  172. sys_trace_void(SYS_TRACE_ID_TP_READ);
  173. write_cmd[0] = 0x01;
  174. ret = i2c_write_async(i2c_dev, write_cmd, 1, tp_slaver_addr, i2c_async_write_cb, NULL);
  175. if (ret == -1)
  176. goto exit;
  177. ret = i2c_read_async(i2c_dev, read_cmd, 6, tp_slaver_addr, i2c_async_read_cb, NULL);
  178. if (ret == -1)
  179. goto exit;
  180. exit:
  181. sys_trace_end_call(SYS_TRACE_ID_TP_READ);
  182. }
  183. static void _cst820_enter_low_power_mode(const struct device *dev, bool low_power)
  184. {
  185. uint8_t cmd[6] = {0};
  186. cmd[0] = 0xfe;
  187. if (low_power) {
  188. cmd[1] = 0;
  189. } else {
  190. cmd[1] = 1;
  191. }
  192. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  193. }
  194. static void _cst820_set_report_mode(const struct device *dev, int mode)
  195. {
  196. uint8_t cmd[6] = {0};
  197. cmd[0] = 0xFA;
  198. if (mode == POINT_REPORT_MODE) {
  199. cmd[1] = 0x60;
  200. } else if (mode == GESTURE_REPORT_MODE) {
  201. cmd[1] = 0x11;
  202. } else if (mode == GESTURE_AND_POINT_REPORT_MODE) {
  203. cmd[1] = 0x71;
  204. }
  205. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  206. }
  207. #if 0
  208. static void _cst820_turn_off_auto_reset()
  209. {
  210. uint8_t cmd[6] = {0};
  211. cmd[0] = 0xfb;
  212. cmd[1] = 0;
  213. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  214. cmd[0] = 0xfc;
  215. cmd[1] = 0;
  216. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  217. }
  218. #endif
  219. static const struct acts_tpkey_config _tpkey_acts_cdata = {
  220. .poll_interval_ms = 0,
  221. .poll_total_ms = 0,
  222. };
  223. static void _tpkey_acts_enable(const struct device *dev)
  224. {
  225. struct acts_tpkey_data *tpkey = dev->data;
  226. //const struct acts_tpkey_config *cfg = dev->config;
  227. printk("isr_gpio_cfg.gpion %x ",isr_gpio_cfg.gpion);
  228. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_EDGE_FALLING);//GPIO_INT_DISABLE
  229. }
  230. static void _tpkey_acts_disable(const struct device *dev)
  231. {
  232. struct acts_tpkey_data *tpkey = dev->data;
  233. //const struct acts_tpkey_config *cfg = dev->config;
  234. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_DISABLE);//GPIO_INT_DISABLE
  235. LOG_DBG("disable tpkey");
  236. }
  237. static void _tpkey_acts_inquiry(const struct device *dev, struct input_value *val)
  238. {
  239. //struct acts_tpkey_data *tpkey = dev->data;
  240. tpkey_get_last_point(val, k_cycle_get_32());
  241. }
  242. static void _tpkey_acts_register_notify(const struct device *dev, input_notify_t notify)
  243. {
  244. struct acts_tpkey_data *tpkey = dev->data;
  245. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  246. tpkey->notify = notify;
  247. }
  248. static void _tpkey_acts_unregister_notify(const struct device *dev, input_notify_t notify)
  249. {
  250. struct acts_tpkey_data *tpkey = dev->data;
  251. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  252. tpkey->notify = NULL;
  253. }
  254. static void _tpkey_acts_get_capabilities(const struct device *dev,
  255. struct input_capabilities *capabilities)
  256. {
  257. capabilities->pointer.supported_gestures = INPUT_GESTURE_DIRECTION;
  258. }
  259. static void _tpkey_init_work(struct k_work *work)
  260. {
  261. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  262. if (tpkey->inited)
  263. _cst820_pmctl_io(tpkey->this_dev, false);
  264. _cst820_poweron(tpkey->this_dev, true);
  265. _cst820_reset(tpkey->this_dev);
  266. k_msleep(50);
  267. _cst820_irq_config(tpkey->this_dev, true);
  268. //_cst820_enter_low_power_mode(tpkey->this_dev,false);
  269. _cst820_set_report_mode(tpkey->this_dev,POINT_REPORT_MODE);
  270. tpkey->inited = true;
  271. }
  272. static int _tpkey_acts_init(const struct device *dev)
  273. {
  274. struct acts_tpkey_data *tpkey = dev->data;
  275. tpkey->this_dev = (struct device *)dev;
  276. tpkey->i2c_dev = (struct device *)device_get_binding(CONFIG_TPKEY_I2C_NAME);
  277. if (!tpkey->i2c_dev) {
  278. printk("can not access right i2c device\n");
  279. return -1;
  280. }
  281. tpkey->gpio_dev = device_get_binding(isr_gpio_cfg.gpio_dev_name);
  282. tpkey->inited = false;
  283. k_work_init(&tpkey->init_timer, _tpkey_init_work);
  284. #ifdef CONFIG_USED_TP_WORK_QUEUE
  285. k_work_queue_start(&tp_drv_q, tp_work_q_stack, K_THREAD_STACK_SIZEOF(tp_work_q_stack), 7, NULL);
  286. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_timer);
  287. #else
  288. k_work_submit(&tpkey->init_timer);
  289. #endif
  290. return 0;
  291. }
  292. static bool low_power_mode = false;
  293. void tpkey_acts_dump(void)
  294. {
  295. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  296. _cst820_reset(tpkey->this_dev);
  297. k_busy_wait(30*1000);
  298. if (low_power_mode) {
  299. _cst820_enter_low_power_mode(tpkey->this_dev,false);
  300. low_power_mode = false;
  301. } else {
  302. low_power_mode = true;
  303. _cst820_enter_low_power_mode(tpkey->this_dev,true);
  304. }
  305. }
  306. static const struct input_dev_driver_api _tpkey_acts_driver_api = {
  307. .enable = _tpkey_acts_enable,
  308. .disable = _tpkey_acts_disable,
  309. .inquiry = _tpkey_acts_inquiry,
  310. .register_notify = _tpkey_acts_register_notify,
  311. .unregister_notify = _tpkey_acts_unregister_notify,
  312. .get_capabilities = _tpkey_acts_get_capabilities,
  313. };
  314. #ifdef CONFIG_PM_DEVICE
  315. static void _cst820_suspend(const struct device *dev)
  316. {
  317. struct acts_tpkey_data *tpkey = (struct acts_tpkey_data *)dev->data;
  318. const struct device *gpios_reset = device_get_binding(reset_gpio_cfg.gpio_dev_name);
  319. _cst820_irq_config(tpkey->this_dev, false);
  320. _cst820_poweron(tpkey->this_dev, false);
  321. _cst820_pmctl_io(tpkey->this_dev, true);
  322. if (gpios_reset != NULL)
  323. gpio_pin_set_raw(gpios_reset, reset_gpio_cfg.gpion, 0);
  324. }
  325. static void _cst820_resume(const struct device *dev)
  326. {
  327. struct acts_tpkey_data *tpkey = (struct acts_tpkey_data *)dev->data;
  328. #ifdef CONFIG_USED_TP_WORK_QUEUE
  329. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_timer);
  330. #else
  331. k_work_submit(&tpkey->init_timer);
  332. #endif
  333. }
  334. static int _cst820_pm_control(const struct device *dev, enum pm_device_action action)
  335. {
  336. int ret = 0;
  337. //struct acts_tpkey_data *data = (struct acts_tpkey_data *)dev->data;
  338. switch (action) {
  339. case PM_DEVICE_ACTION_SUSPEND:
  340. break;
  341. case PM_DEVICE_ACTION_RESUME:
  342. break;
  343. case PM_DEVICE_ACTION_EARLY_SUSPEND:
  344. _cst820_suspend(dev);
  345. break;
  346. case PM_DEVICE_ACTION_LATE_RESUME:
  347. _cst820_resume(dev);
  348. break;
  349. default:
  350. break;
  351. }
  352. return ret;
  353. }
  354. #else /* CONFIG_PM_DEVICE */
  355. static int _cst820_pm_control(const struct device *dev, uint32_t ctrl_command,
  356. void *context, device_pm_cb cb, void *arg)
  357. {
  358. }
  359. #endif
  360. #if IS_ENABLED(CONFIG_TPKEY)
  361. DEVICE_DEFINE(tpkey, CONFIG_TPKEY_DEV_NAME, _tpkey_acts_init,
  362. _cst820_pm_control, &tpkey_acts_ddata, &_tpkey_acts_cdata, POST_KERNEL,
  363. 60, &_tpkey_acts_driver_api);
  364. #endif