ft5x0x_tpkey_acts.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  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 (0x70 >> 1) // 0x15
  32. //#define tp_slaver_boot_addr (0x70)
  33. #define REG_LEN_1B 1
  34. #define REG_LEN_2B 2
  35. #define CONFIG_USED_TP_WORK_QUEUE 1
  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_RESET_GPIO;
  41. static const struct gpio_cfg isr_gpio_cfg = CONFIG_TPKEY_RESET_GPIO;
  42. #ifdef CONFIG_USED_TP_WORK_QUEUE
  43. #define CONFIG_TP_WORK_Q_STACK_SIZE 1536
  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. struct k_timer poll_timer;
  55. };
  56. struct acts_tpkey_config {
  57. uint16_t poll_interval_ms;
  58. uint32_t poll_total_ms;
  59. };
  60. uint16_t tp_crc[2] __attribute((used)) = {0};
  61. static struct acts_tpkey_data tpkey_acts_ddata;
  62. static void _ft5x0x_read_touch(struct device *i2c_dev, struct input_value *val);
  63. #define mode_pin (GPIO_PULL_UP | GPIO_INPUT | GPIO_INT_DEBOUNCE)
  64. static void _ft5x0x_poweron(const struct device *dev)
  65. {
  66. //const struct device *gpios_power = device_get_binding(power_gpio_cfg.gpio_dev_name);
  67. //gpio_pin_configure(gpios_power, power_gpio_cfg.gpion, GPIO_OUTPUT| GPIO_PULL_UP);
  68. //gpio_pin_set_raw(gpios_power, power_gpio_cfg.gpion, 0);
  69. }
  70. #if 0
  71. static void _tpkey_irq_callback(struct device *port, struct gpio_callback *cb, uint32_t pins)
  72. {
  73. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  74. struct input_value val;
  75. #if 0
  76. static int time_stame = 0;
  77. printk("irq duration : %d \n",k_cyc_to_ns_floor32(k_cycle_get_32() - time_stame));
  78. time_stame = k_cycle_get_32();
  79. #endif
  80. _ft5x0x_read_touch(tpkey->i2c_dev, &val);
  81. }
  82. #endif
  83. static void _ft5x0x_irq_config(const struct device *dev)
  84. {
  85. #if 0
  86. struct acts_tpkey_data *tpkey = dev->data;
  87. tpkey->gpio_dev = device_get_binding(isr_gpio_cfg.gpio_dev_name);
  88. gpio_pin_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, mode_pin);
  89. gpio_init_callback(&tpkey->key_gpio_cb , _tpkey_irq_callback, BIT(isr_gpio_cfg.gpion));
  90. gpio_add_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  91. #endif
  92. }
  93. static void _ft5x0x_reset(const struct device *dev)
  94. {
  95. const struct device *gpios_reset = device_get_binding(reset_gpio_cfg.gpio_dev_name);
  96. gpio_pin_configure(gpios_reset , reset_gpio_cfg.gpion, GPIO_OUTPUT | GPIO_PULL_UP);
  97. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 1);
  98. k_busy_wait(50*1000);
  99. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 0);
  100. k_busy_wait(200*1000);
  101. gpio_pin_set_raw(gpios_reset , reset_gpio_cfg.gpion, 1);
  102. k_busy_wait(100*1000);
  103. }
  104. static bool _ft5x0x_write_bytes(const struct device *dev, uint16_t reg,
  105. uint8_t *data, uint16_t len, uint8_t regLen)
  106. {
  107. int i2c_op_ret = 0;
  108. struct acts_tpkey_data *tpkey = dev->data;
  109. uint8_t retrycnt = 10;
  110. uint8_t sendBuf[140];
  111. int lenT=0;
  112. if (regLen == 2) {
  113. sendBuf[0] = reg / 0x100;
  114. sendBuf[1] = reg % 0x100;
  115. lenT = 2;
  116. } else {
  117. sendBuf[0]=reg % 0x100;
  118. lenT = 1;
  119. }
  120. memcpy(sendBuf + lenT, data, len);
  121. lenT += len;
  122. while (retrycnt--)
  123. {
  124. i2c_op_ret = i2c_write(tpkey->i2c_dev, sendBuf, lenT, TP_SLAVER_ADDR);
  125. if (0 != i2c_op_ret) {
  126. k_busy_wait(4*1000);
  127. LOG_ERR("err = %d\n", i2c_op_ret);
  128. } else {
  129. return true;
  130. }
  131. }
  132. return false;
  133. }
  134. static bool _ft5x0x_read_bytes(const struct device *dev, uint16_t reg, uint8_t *value, uint16_t len,uint8_t regLen)
  135. {
  136. int i2c_op_ret = 0;
  137. struct acts_tpkey_data *tpkey = dev->data;
  138. uint8_t retrycnt = 10;
  139. uint8_t sendBuf[4];
  140. int lenT=0;
  141. if (regLen==2) {
  142. sendBuf[0] = reg / 0x100;
  143. sendBuf[1] = reg % 0x100;
  144. lenT=2;
  145. } else {
  146. sendBuf[0] = reg % 0x100;
  147. lenT=1;
  148. }
  149. while (retrycnt--)
  150. {
  151. i2c_op_ret = i2c_write(tpkey->i2c_dev, sendBuf, lenT, TP_SLAVER_ADDR);
  152. if(0 != i2c_op_ret) {
  153. k_busy_wait(4*1000);
  154. LOG_ERR("err = %d\n", i2c_op_ret);
  155. if (retrycnt == 1)
  156. {
  157. return false;
  158. }
  159. }
  160. else
  161. {
  162. break;
  163. }
  164. }
  165. retrycnt = 10;
  166. while (retrycnt--)
  167. {
  168. i2c_op_ret = i2c_read(tpkey->i2c_dev, value, len, TP_SLAVER_ADDR);
  169. if(0 != i2c_op_ret) {
  170. k_busy_wait(4*1000);
  171. LOG_ERR("err = %d\n", i2c_op_ret);
  172. }
  173. else
  174. {
  175. return true;
  176. }
  177. }
  178. return false;
  179. }
  180. static int i2c_async_write_cb(void *cb_data, struct i2c_msg *msgs,
  181. uint8_t num_msgs, bool is_err)
  182. {
  183. if (is_err) {
  184. LOG_ERR("i2c write err\n");
  185. }
  186. return 0;
  187. }
  188. static int i2c_async_read_cb(void *cb_data, struct i2c_msg *msgs,
  189. uint8_t num_msgs, bool is_err)
  190. {
  191. #if 1
  192. if (!is_err) {
  193. struct input_value val;
  194. #if 1
  195. int temp_read = k_cycle_get_32();
  196. val.point.loc_x = (((uint16_t)(msgs->buf[1]&0x0f))<<8) | msgs->buf[2];
  197. val.point.loc_y = (((uint16_t)(msgs->buf[3]&0x0f))<<8) | msgs->buf[4];
  198. //val.point.pessure_value = msgs->buf[1];
  199. val.point.gesture = msgs->buf[0];
  200. #endif
  201. //printk("%d, %d, %d, %d. %d\n", msgs->buf[0], msgs->buf[1], msgs->buf[2], msgs->buf[3], msgs->buf[3]);
  202. if((val.point.gesture != 0) && (val.point.gesture != 0xff))
  203. {
  204. tpkey_put_point(&val, k_cycle_get_32());
  205. }
  206. #if 1
  207. LOG_DBG("finger_num = %d, gesture = %d, local:(%d,%d)\n",
  208. msgs->buf[0], val.point.gesture,val.point.loc_x, val.point.loc_y);
  209. #endif
  210. } else {
  211. LOG_ERR("i2c read err\n");
  212. }
  213. #endif
  214. return 0;
  215. }
  216. static void _ft5x0x_read_touch(struct device *i2c_dev, struct input_value *val)
  217. {
  218. #if 1
  219. static uint8_t write_cmd[1] = {0};
  220. static uint8_t read_cmd[5] = {0};
  221. int ret = 0;
  222. sys_trace_void(SYS_TRACE_ID_TP_READ);
  223. //sys_write32(0x3908, 0x40068064);
  224. //printk("\t +++++++++++GPIO57_CTL: 0x%08x\n", sys_read32(0x400680E8));
  225. //printk("\t +++++++++++GPIO58_CTL: 0x%08x\n", sys_read32(0x400680EC));
  226. //printk("\t +++++++++++GPIO24_CTL: 0x%08x\n", sys_read32(0x40068064));
  227. //printk("\t +++++++++++GPIO25_CTL: 0x%08x\n", sys_read32(0x40068068));
  228. //printk("\t +++++++++++GPIO26_CTL: 0x%08x\n", sys_read32(0x4006806C));
  229. write_cmd[0] = 0x02;
  230. ret = i2c_write_async(i2c_dev, write_cmd, 1, TP_SLAVER_ADDR, i2c_async_write_cb, NULL);
  231. if (ret == -1)
  232. goto exit;
  233. ret = i2c_read_async(i2c_dev, read_cmd, 5, TP_SLAVER_ADDR, i2c_async_read_cb, NULL);
  234. if (ret == -1)
  235. //goto exit;
  236. exit:
  237. sys_trace_end_call(SYS_TRACE_ID_TP_READ);
  238. return;
  239. #endif
  240. }
  241. static const struct acts_tpkey_config _tpkey_acts_cdata = {
  242. .poll_interval_ms = 0,
  243. .poll_total_ms = 0,
  244. };
  245. static void _tpkey_acts_enable(struct device *dev)
  246. {
  247. struct acts_tpkey_data *tpkey = dev->data;
  248. const struct acts_tpkey_config *cfg = dev->config;
  249. #if 0
  250. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_EDGE_FALLING);//GPIO_INT_DISABLE
  251. #endif
  252. LOG_DBG("enable tpkey");
  253. }
  254. static void _tpkey_acts_disable(struct device *dev)
  255. {
  256. struct acts_tpkey_data *tpkey = dev->data;
  257. const struct acts_tpkey_config *cfg = dev->config;
  258. #if 0
  259. gpio_pin_interrupt_configure(tpkey->gpio_dev , isr_gpio_cfg.gpion, GPIO_INT_DISABLE);//GPIO_INT_DISABLE
  260. #endif
  261. LOG_DBG("disable tpkey");
  262. }
  263. static void _tpkey_acts_inquiry(struct device *dev, struct input_value *val)
  264. {
  265. struct acts_tpkey_data *tpkey = dev->data;
  266. tpkey_get_last_point(val, k_cycle_get_32());
  267. }
  268. static void _tpkey_acts_register_notify(struct device *dev, input_notify_t notify)
  269. {
  270. struct acts_tpkey_data *tpkey = dev->data;
  271. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  272. tpkey->notify = notify;
  273. }
  274. static void _tpkey_acts_unregister_notify(struct device *dev, input_notify_t notify)
  275. {
  276. struct acts_tpkey_data *tpkey = dev->data;
  277. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  278. tpkey->notify = NULL;
  279. }
  280. static void _tpkey_acts_get_capabilities(const struct device *dev,
  281. struct input_capabilities *capabilities)
  282. {
  283. capabilities->pointer.supported_gestures = INPUT_GESTURE_DIRECTION;
  284. }
  285. static void tpkey_poll(struct k_timer *timer)
  286. {
  287. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  288. struct input_value val;
  289. _ft5x0x_read_touch(tpkey->i2c_dev, &val);
  290. }
  291. static void _tpkey_init_work(struct k_work *work)
  292. {
  293. struct acts_tpkey_data *tpkey = &tpkey_acts_ddata;
  294. struct input_value val;
  295. printk("+++++++++%s, %d++++++++++\n", __func__, __LINE__);
  296. _ft5x0x_poweron(tpkey->this_dev);
  297. _ft5x0x_irq_config(tpkey->this_dev);
  298. _ft5x0x_reset(tpkey->this_dev);
  299. _ft5x0x_read_touch(tpkey->i2c_dev, &val);
  300. k_timer_init(&tpkey->poll_timer, tpkey_poll, NULL);
  301. k_timer_user_data_set(&tpkey->poll_timer, (void *)tpkey);
  302. k_timer_start(&tpkey->poll_timer, K_MSEC(20), K_MSEC(20));
  303. //printk("\t +++++++++++GPIO24_CTL: 0x%08x\n", sys_read32(0x40068064));
  304. //printk("\t +++++++++++GPIO25_CTL: 0x%08x\n", sys_read32(0x40068068));
  305. //printk("\t +++++++++++GPIO26_CTL: 0x%08x\n", sys_read32(0x4006806C));
  306. }
  307. static int _tpkey_acts_init(const struct device *dev)
  308. {
  309. struct acts_tpkey_data *tpkey = dev->data;
  310. tpkey->this_dev = (struct device *)dev;
  311. tpkey->i2c_dev = (struct device *)device_get_binding(CONFIG_TPKEY_I2C_NAME);
  312. if (!tpkey->i2c_dev) {
  313. printk("can not access right i2c device\n");
  314. return -1;
  315. }
  316. k_work_init(&tpkey->init_timer, _tpkey_init_work);
  317. #ifdef CONFIG_USED_TP_WORK_QUEUE
  318. k_work_queue_start(&tp_drv_q, tp_work_q_stack, K_THREAD_STACK_SIZEOF(tp_work_q_stack), 7, NULL);
  319. k_work_submit_to_queue(&tp_drv_q, &tpkey->init_timer);
  320. #else
  321. k_work_submit(&tpkey->init_timer);
  322. #endif
  323. return 0;
  324. }
  325. void tpkey_acts_dump(void)
  326. {
  327. }
  328. static const struct input_dev_driver_api _tpkey_acts_driver_api = {
  329. .enable = _tpkey_acts_enable,
  330. .disable = _tpkey_acts_disable,
  331. .inquiry = _tpkey_acts_inquiry,
  332. .register_notify = _tpkey_acts_register_notify,
  333. .unregister_notify = _tpkey_acts_unregister_notify,
  334. .get_capabilities = _tpkey_acts_get_capabilities,
  335. };
  336. #if IS_ENABLED(CONFIG_TPKEY)
  337. DEVICE_DEFINE(tpkey, CONFIG_TPKEY_DEV_NAME, _tpkey_acts_init,
  338. NULL, &tpkey_acts_ddata, &_tpkey_acts_cdata, POST_KERNEL,
  339. 60, &_tpkey_acts_driver_api);
  340. #endif