tpkey_acts.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  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 <init.h>
  14. #include <irq.h>
  15. #include <drivers/adc.h>
  16. #include <drivers/input/input_dev.h>
  17. #include <sys/util.h>
  18. #include <sys/byteorder.h>
  19. #include <board.h>
  20. #include <soc_pmu.h>
  21. #include <logging/log.h>
  22. #include <device.h>
  23. #include <drivers/gpio.h>
  24. #include <soc.h>
  25. #include <string.h>
  26. #include <drivers/i2c.h>
  27. LOG_MODULE_REGISTER(tpkey, CONFIG_SYS_LOG_INPUT_DEV_LEVEL);
  28. #define DT_DRV_COMPAT actions_acts_tpkey
  29. #define tp_slaver_addr (0x2A>>1)
  30. #define TP_RESET_PIN DT_GPIO_PIN_BY_IDX(DT_DRV_INST(0), reset_gpios, 0)
  31. #define TP_RESET_FLAGS DT_GPIO_FLAGS_BY_IDX(DT_DRV_INST(0), reset_gpios, 0)
  32. #define TP_ISR_PIN DT_GPIO_PIN_BY_IDX(DT_DRV_INST(0), isr_gpios, 0)
  33. #define TP_ISR_FLAGS DT_GPIO_FLAGS_BY_IDX(DT_DRV_INST(0), isr_gpios, 0)
  34. #if DT_NODE_HAS_PROP(DT_DRV_INST(0), power_gpios)
  35. #define TP_POWER_PIN DT_GPIO_PIN_BY_IDX(DT_DRV_INST(0), power_gpios, 0)
  36. #define TP_POWER_FLAGS DT_GPIO_PIN_BY_IDX(DT_DRV_INST(0), power_gpios, 0)
  37. #endif
  38. struct acts_tpkey_data {
  39. input_notify_t notify;
  40. struct device *i2c_dev;
  41. struct device *gpio_dev;
  42. struct device *this_dev;
  43. struct gpio_callback key_gpio_cb;
  44. struct k_delayed_work timer;
  45. };
  46. struct acts_tpkey_config {
  47. uint16_t poll_interval_ms;
  48. uint32_t poll_total_ms;
  49. uint8_t pinmux_size;
  50. const struct acts_pin_config *pinmux;
  51. };
  52. struct k_timer tpkey_inquiry_timer;
  53. u8_t tpkey_flag_timeout;
  54. static struct acts_tpkey_data tpkey_acts_ddata;
  55. static const struct acts_pin_config pins_tpkey[] = {FOREACH_PIN_MFP(0)};
  56. static const struct acts_tpkey_config tpkey_acts_cdata = {
  57. .poll_interval_ms = DT_INST_PROP(0, poll_interval_ms),
  58. .poll_total_ms = DT_INST_PROP(0, poll_total_ms),
  59. .pinmux = pins_tpkey,
  60. .pinmux_size = ARRAY_SIZE(pins_tpkey),
  61. };
  62. static void tpkey_acts_enable(struct device *dev);
  63. static void tpkey_acts_disable(struct device *dev);
  64. static void read_touch(struct input_value *val);
  65. void tpkey_detect(struct k_timer *timer)
  66. {
  67. LOG_DBG("go into tpkey_detect\n");
  68. tpkey_flag_timeout = 1;
  69. k_timer_stop(&tpkey_inquiry_timer);
  70. }
  71. static void KEY_IRQ_callback(struct device *port, struct gpio_callback *cb, uint32_t pins)
  72. {
  73. sys_trace_void(SYS_TRACE_ID_TP_IRQ);
  74. if(DT_INST_PROP(0, lowpower)) {
  75. LOG_DBG("inquiry mode\n");
  76. tpkey_flag_timeout = 0;
  77. k_timer_start(&tpkey_inquiry_timer, K_MSEC(20), K_MSEC(20));
  78. }
  79. if(DT_INST_PROP(0, cb_en))
  80. k_delayed_work_submit(&tpkey_acts_ddata.timer, K_NO_WAIT);
  81. sys_trace_end_call(SYS_TRACE_ID_TP_IRQ);
  82. }
  83. static void tpkey_acts_poll(struct k_work *work)
  84. {
  85. struct acts_tpkey_data *tpkey = CONTAINER_OF(work, struct acts_tpkey_data, timer);
  86. struct device *dev = tpkey->this_dev;
  87. struct input_value val;
  88. read_touch(&val);
  89. tpkey->notify(dev,&val);
  90. k_delayed_work_cancel(&tpkey->timer);
  91. }
  92. static void tpkey_acts_enable(struct device *dev)
  93. {
  94. struct acts_tpkey_data *tpkey = dev->data;
  95. const struct acts_tpkey_config *cfg = dev->config;
  96. const struct acts_pin_config *pinconf = cfg->pinmux;
  97. gpio_pin_interrupt_configure(tpkey->gpio_dev , TP_ISR_PIN, GPIO_INT_EDGE_FALLING);//GPIO_INT_DISABLE
  98. LOG_DBG("enable tpkey");
  99. }
  100. static void tpkey_acts_disable(struct device *dev)
  101. {
  102. struct acts_tpkey_data *tpkey = dev->data;
  103. const struct acts_tpkey_config *cfg = dev->config;
  104. const struct acts_pin_config *pinconf = cfg->pinmux;
  105. gpio_pin_interrupt_configure(tpkey->gpio_dev , TP_ISR_PIN, GPIO_INT_DISABLE);//GPIO_INT_DISABLE
  106. LOG_DBG("disable tpkey");
  107. }
  108. static void tpkey_acts_inquiry(struct device *dev, struct input_value *val)
  109. {
  110. struct acts_tpkey_data *tpkey = dev->data;
  111. if(tpkey_flag_timeout)
  112. return;
  113. read_touch(val);
  114. LOG_DBG("inquiry tpkey");
  115. }
  116. static void tpkey_acts_register_notify(struct device *dev, input_notify_t notify)
  117. {
  118. struct acts_tpkey_data *tpkey = dev->data;
  119. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  120. tpkey->notify = notify;
  121. }
  122. static void tpkey_acts_unregister_notify(struct device *dev, input_notify_t notify)
  123. {
  124. struct acts_tpkey_data *tpkey = dev->data;
  125. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  126. tpkey->notify = NULL;
  127. }
  128. const struct input_dev_driver_api tpkey_acts_driver_api = {
  129. .enable = tpkey_acts_enable,
  130. .disable = tpkey_acts_disable,
  131. .inquiry = tpkey_acts_inquiry,
  132. .register_notify = tpkey_acts_register_notify,
  133. .unregister_notify = tpkey_acts_unregister_notify,
  134. };
  135. #define mode_pin (GPIO_PULL_UP | GPIO_INPUT | GPIO_INT_DEBOUNCE)
  136. void tp_reset(struct device *dev)
  137. {
  138. struct device *gpios_temp = NULL;
  139. gpios_temp = device_get_binding(DT_GPIO_LABEL_BY_IDX(DT_DRV_INST(0), reset_gpios, 0));
  140. gpio_pin_configure(gpios_temp , TP_RESET_PIN, GPIO_OUTPUT| GPIO_PULL_UP);
  141. gpio_pin_set_raw(gpios_temp , TP_RESET_PIN, 1);
  142. k_busy_wait(1000*1000);
  143. gpio_pin_set_raw(gpios_temp , TP_RESET_PIN, 0);
  144. k_busy_wait(10*1000);
  145. gpio_pin_set_raw(gpios_temp , TP_RESET_PIN, 1);
  146. }
  147. static uint8_t tp_enter_bootmode(struct device *dev)
  148. {
  149. struct acts_tpkey_data *tpkey = dev->data;
  150. uint8_t retrycnt = 10;
  151. tp_reset(dev);
  152. k_busy_wait(5*1000);
  153. while(retrycnt--){
  154. uint8_t cmd[4] = {0};
  155. cmd[0] = 0xA0;
  156. cmd[1] = 0x01;
  157. cmd[2] = 0xab;
  158. if(-1 == i2c_write(tpkey->i2c_dev,cmd, 3, 0X6A)) {
  159. k_busy_wait(4*1000);
  160. continue;
  161. }
  162. cmd[0] = 0xA0;
  163. cmd[1] = 0x03;
  164. if(-1 == i2c_write(tpkey->i2c_dev,cmd, 2, 0X6A)) {
  165. k_busy_wait(4*1000);
  166. continue;
  167. }
  168. if(-1 == i2c_read(tpkey->i2c_dev,cmd, 1, 0X6A)) {
  169. k_busy_wait(2*1000);
  170. continue;
  171. } else {
  172. if(cmd[0] != 0x55) {
  173. k_busy_wait(2*1000);
  174. continue;
  175. } else {
  176. return 0;
  177. }
  178. }
  179. }
  180. return -1;
  181. }
  182. #if 0
  183. void read_touch(struct input_value *val)
  184. {
  185. uint8_t cmd[5] = {0};
  186. cmd[0] = 0x02;
  187. if(-1 == i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 1, tp_slaver_addr)) {
  188. return;
  189. } else if(-1 == i2c_read(tpkey_acts_ddata.i2c_dev, cmd, 5, tp_slaver_addr)) {//tp_slaver_addr
  190. return;
  191. }
  192. val->point.loc_x = (((uint16_t)(cmd[1]&0x0f))<<8) | cmd[2];
  193. val->point.loc_y = (((uint16_t)(cmd[3]&0x0f))<<8) | cmd[4];
  194. val->point.pessure_value = cmd[0];
  195. LOG_DBG("finger_num = %d, local:(%d,%d)\n",cmd[0], val->point.loc_x, val->point.loc_y);
  196. }
  197. #endif
  198. static void read_touch(struct input_value *val)
  199. {
  200. uint8_t cmd[6] = {0};
  201. sys_trace_void(SYS_TRACE_ID_TP_READ);
  202. cmd[0] = 0x01;
  203. if(-1 == i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 1, tp_slaver_addr)) {
  204. return;
  205. } else if(-1 == i2c_read(tpkey_acts_ddata.i2c_dev, cmd, 6, tp_slaver_addr)) {//tp_slaver_addr
  206. return;
  207. }
  208. val->point.loc_x = (((uint16_t)(cmd[2]&0x0f))<<8) | cmd[3];
  209. val->point.loc_y = (((uint16_t)(cmd[4]&0x0f))<<8) | cmd[5];
  210. val->point.pessure_value = cmd[1];
  211. val->point.gesture = cmd[0];
  212. LOG_DBG("finger_num = %d, gesture = %d,local:(%d,%d)\n",cmd[0], val->point.gesture,val->point.loc_x, val->point.loc_y);
  213. sys_trace_end_call(SYS_TRACE_ID_TP_READ);
  214. }
  215. static void enter_low_power_mode(const struct device *dev)
  216. {
  217. uint8_t cmd[6] = {0};
  218. printk("go into low power mode\n");
  219. cmd[0] = 0xfe;
  220. cmd[1] = 0;
  221. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  222. }
  223. static void turn_off_detector_mode()
  224. {
  225. uint8_t cmd[6] = {0};
  226. cmd[0] = 0xfb;
  227. cmd[1] = 0;
  228. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  229. cmd[0] = 0xfc;
  230. cmd[1] = 0;
  231. i2c_write(tpkey_acts_ddata.i2c_dev, cmd, 2, tp_slaver_addr);
  232. }
  233. int tpkey_acts_init(const struct device *dev)
  234. {
  235. struct acts_tpkey_data *tpkey = dev->data;
  236. const struct acts_tpkey_config *cfg = dev->config;
  237. const struct acts_pin_config *pinconf = cfg->pinmux;
  238. struct device *gpios_power = NULL;
  239. #if DT_NODE_HAS_PROP(DT_DRV_INST(0), power_gpios)
  240. gpios_power = device_get_binding(DT_GPIO_LABEL_BY_IDX(DT_DRV_INST(0), power_gpios, 0));
  241. gpio_pin_configure(gpios_power , TP_POWER_PIN, GPIO_OUTPUT| GPIO_PULL_UP);
  242. gpio_pin_set_raw(gpios_power , TP_RESET_PIN, 0);
  243. #endif
  244. tpkey->i2c_dev = (struct device *)device_get_binding(DT_INST_BUS_LABEL(0));
  245. tpkey->gpio_dev = (struct device *)device_get_binding(DT_GPIO_LABEL_BY_IDX(DT_DRV_INST(0), isr_gpios, 0));
  246. if(tpkey->i2c_dev == NULL) {
  247. printk("can not access right i2c device\n");
  248. return -1;
  249. }
  250. if(tpkey->gpio_dev == NULL) {
  251. printk("can not access right gpio device\n");
  252. return -1;
  253. }
  254. tpkey->this_dev = (struct device *)dev;
  255. gpio_pin_configure(tpkey->gpio_dev , TP_ISR_PIN, mode_pin);
  256. gpio_init_callback(&tpkey->key_gpio_cb , KEY_IRQ_callback, BIT(TP_ISR_PIN));
  257. gpio_add_callback(tpkey->gpio_dev , &tpkey->key_gpio_cb);
  258. //if(-1 == tp_enter_bootmode(dev)) {
  259. // printk("error return \n");
  260. //}
  261. tpkey_flag_timeout = 0;
  262. tp_reset(dev);
  263. k_busy_wait(100*1000);//the time waiting too short,and the device can not wake up
  264. if(DT_INST_PROP(0, lowpower)) {
  265. enter_low_power_mode(dev);
  266. k_timer_init(&tpkey_inquiry_timer, tpkey_detect, NULL);
  267. k_timer_start(&tpkey_inquiry_timer, K_MSEC(20), K_MSEC(20));
  268. }
  269. turn_off_detector_mode();
  270. k_delayed_work_init(&tpkey->timer, tpkey_acts_poll);
  271. return 0;
  272. }
  273. #if DT_NODE_HAS_STATUS(DT_DRV_INST(0), okay)
  274. DEVICE_DEFINE(tpkey, DT_INST_LABEL(0),
  275. tpkey_acts_init, NULL,
  276. &tpkey_acts_ddata, &tpkey_acts_cdata,
  277. POST_KERNEL, 60,
  278. &tpkey_acts_driver_api);
  279. #endif // DT_NODE_HAS_STATUS