gpiokey_acts.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief GPIO Keyboard driver for Actions SoC
  9. */
  10. #include <errno.h>
  11. #include <kernel.h>
  12. #include <string.h>
  13. #include <irq.h>
  14. #include <drivers/input/input_dev.h>
  15. #include <sys/util.h>
  16. #include <sys/byteorder.h>
  17. #include <device.h>
  18. #include <drivers/gpio.h>
  19. #include <soc.h>
  20. #include <board.h>
  21. #include <logging/log.h>
  22. LOG_MODULE_REGISTER(gpiokey, CONFIG_LOG_DEFAULT_LEVEL);
  23. #if CONFIG_GPIOKEY_PRESSED_VOLTAGE_LEVEL
  24. #define GPIOKEY_PIN_MODE_DEFAULT (GPIO_INPUT)
  25. #else
  26. #define GPIOKEY_PIN_MODE_DEFAULT (GPIO_INPUT | GPIO_PULL_UP)
  27. #endif
  28. #define GPIOKEY_PIN_MODE_IRQ (GPIO_INPUT | GPIO_ACTIVE_LOW)
  29. struct acts_gpiokey_data {
  30. input_notify_t notify;
  31. #ifdef GPIO_KEY_POLL_TIMER
  32. struct k_timer timer;
  33. #else
  34. struct k_delayed_work timer;
  35. #endif
  36. const struct device *this_dev;
  37. uint32_t time_wait;
  38. uint8_t scan_count;
  39. bool irq_trigger;
  40. };
  41. struct acts_gpiokey_config {
  42. uint8_t pinmux_size;
  43. const struct acts_pin_config *pinmux;
  44. uint16_t poll_interval_ms;
  45. uint32_t poll_total_ms;
  46. uint8_t sample_filter_cnt;
  47. };
  48. typedef void (*gpio_config_irq_t)(struct device *dev);
  49. struct acts_gpio_config {
  50. uint32_t base;
  51. uint32_t irq_num;
  52. gpio_config_irq_t config_func;
  53. };
  54. static struct acts_gpiokey_data gpiokey_acts_ddata;
  55. static const struct acts_pin_config pins_gpiokey[] = {CONFIG_GPIOKEY_MFP};
  56. static const struct acts_gpiokey_config gpiokey_acts_cdata = {
  57. .pinmux = pins_gpiokey,
  58. .poll_interval_ms = CONFIG_GPIOKEY_POLL_INTERVAL_MS,
  59. .poll_total_ms = CONFIG_GPIOKEY_POLL_TOTAL_MS,
  60. .sample_filter_cnt = CONFIG_GPIOKEY_SAMPLE_FILTER_CNT,
  61. .pinmux_size = ARRAY_SIZE(pins_gpiokey),
  62. };
  63. struct gpio_status {
  64. const struct device *gpio_dev;
  65. uint8_t past_tatus;
  66. uint8_t curent_tatus;
  67. };
  68. static void gpiokey_acts_enable(const struct device *dev);
  69. static void gpiokey_acts_disable(const struct device *dev);
  70. struct gpio_status key_gpio_status[ARRAY_SIZE(pins_gpiokey)];
  71. struct gpio_callback key_gpio_cb[ARRAY_SIZE(pins_gpiokey)];
  72. uint8_t disable_cb;
  73. static void KEY_IRQ_callback(const struct device *port, struct gpio_callback *cb, uint32_t pins)
  74. {
  75. for( int i = 0; i < ARRAY_SIZE(pins_gpiokey); i++){
  76. gpio_pin_configure(key_gpio_status[i].gpio_dev, pins_gpiokey[i].pin_num % 32, GPIOKEY_PIN_MODE_DEFAULT);
  77. }
  78. gpiokey_acts_ddata.time_wait = k_uptime_get_32();
  79. #ifdef GPIO_KEY_POLL_TIMER
  80. k_timer_start(&gpiokey_acts_ddata.timer, K_MSEC(gpiokey_acts_cdata.poll_interval_ms), K_NO_WAIT);
  81. #else
  82. k_delayed_work_submit(&gpiokey_acts_ddata.timer, K_MSEC(gpiokey_acts_cdata.poll_interval_ms));
  83. #endif
  84. gpiokey_acts_ddata.irq_trigger = true;
  85. }
  86. #ifdef GPIO_KEY_POLL_TIMER
  87. static void gpiokey_acts_poll(struct k_timer *timer)
  88. #else
  89. static void gpiokey_acts_poll(struct k_work *work)
  90. #endif
  91. {
  92. #ifdef GPIO_KEY_POLL_TIMER
  93. const struct device *dev = k_timer_user_data_get(timer);
  94. struct acts_gpiokey_data *gpiokey = dev->data;
  95. #else
  96. struct acts_gpiokey_data *gpiokey = CONTAINER_OF(work, struct acts_gpiokey_data, timer);
  97. const struct device *dev = gpiokey->this_dev;
  98. #endif
  99. const struct acts_gpiokey_config *cfg = dev->config;
  100. const struct acts_pin_config *pinconf = cfg->pinmux;
  101. int val;
  102. int i;
  103. for (i = 0; i < cfg->pinmux_size; i++) {
  104. val = gpio_pin_get(key_gpio_status[i].gpio_dev, (pinconf[i].pin_num % 32));
  105. if (val < 0) {
  106. LOG_DBG("failed to get gpio:%d input state", pinconf[i].pin_num);
  107. continue;
  108. }
  109. LOG_DBG("gpiokey pin:%d state:%d stable_state:%d",
  110. pinconf[i].pin_num, val, key_gpio_status[i].past_tatus);
  111. if (val != key_gpio_status[i].past_tatus) {//a key is pressed or released
  112. if (++gpiokey->scan_count == cfg->sample_filter_cnt) {
  113. gpiokey->time_wait = k_uptime_get_32();
  114. key_gpio_status[i].past_tatus = (uint8_t)val;
  115. if(gpiokey->notify) {
  116. struct input_value val_notify = {0};
  117. val_notify.keypad.type = EV_KEY;
  118. #ifdef CONFIG_GPIOKEY_USER_KEYCODE
  119. val_notify.keypad.code = CONFIG_GPIOKEY_USER_KEYCODE;
  120. #else
  121. val_notify.keypad.code = KEY_NUM0 + i;
  122. #endif
  123. if (CONFIG_GPIOKEY_PRESSED_VOLTAGE_LEVEL == val)
  124. val_notify.keypad.value = 1; /* key pressed */
  125. else
  126. val_notify.keypad.value = 0; /* key release */
  127. gpiokey->notify(NULL, &val_notify);
  128. }
  129. gpiokey->scan_count = 0;
  130. gpiokey_acts_ddata.irq_trigger = false;
  131. }
  132. goto out;
  133. }
  134. if (key_gpio_status[i].past_tatus == CONFIG_GPIOKEY_PRESSED_VOLTAGE_LEVEL) {
  135. if(gpiokey->notify) {
  136. struct input_value val_notify = {0};
  137. val_notify.keypad.type = EV_KEY;
  138. #ifdef CONFIG_GPIOKEY_USER_KEYCODE
  139. val_notify.keypad.code = CONFIG_GPIOKEY_USER_KEYCODE;
  140. #else
  141. val_notify.keypad.code = KEY_NUM0 + i;
  142. #endif
  143. val_notify.keypad.value = 1;
  144. gpiokey->notify(NULL, &val_notify);
  145. }
  146. }
  147. }
  148. out:
  149. if ((k_uptime_get_32() - gpiokey->time_wait) > cfg->poll_total_ms) {
  150. gpiokey_acts_disable(dev);
  151. gpiokey->scan_count = 0;
  152. gpiokey_acts_ddata.irq_trigger = false;
  153. for(i = 0; i < cfg->pinmux_size; i++) {
  154. gpio_pin_configure(key_gpio_status[i].gpio_dev, (pinconf[i].pin_num % 32), GPIOKEY_PIN_MODE_IRQ);
  155. gpio_pin_interrupt_configure(key_gpio_status[i].gpio_dev, (pinconf[i].pin_num % 32), GPIO_INT_EDGE_TO_INACTIVE);
  156. gpio_init_callback(&key_gpio_cb[i], KEY_IRQ_callback, BIT(pinconf[i].pin_num % 32));
  157. gpio_add_callback(key_gpio_status[i].gpio_dev, &key_gpio_cb[i]);
  158. gpio_pin_interrupt_configure(key_gpio_status[i].gpio_dev, (pinconf[i].pin_num % 32), GPIO_INT_EDGE_BOTH);
  159. }
  160. } else {
  161. #ifdef GPIO_KEY_POLL_TIMER
  162. k_timer_start(&gpiokey->timer, K_MSEC(cfg->poll_interval_ms), K_NO_WAIT);
  163. #else
  164. k_delayed_work_submit(&gpiokey->timer, K_MSEC(cfg->poll_interval_ms));
  165. #endif
  166. }
  167. }
  168. static void gpiokey_acts_enable(const struct device *dev)
  169. {
  170. struct acts_gpiokey_data *gpiokey = dev->data;
  171. gpiokey->time_wait = k_uptime_get_32();
  172. #ifdef GPIO_KEY_POLL_TIMER
  173. const struct acts_gpiokey_config *cfg = dev->config;
  174. k_timer_start(&gpiokey->timer, K_MSEC(cfg->poll_interval_ms), K_NO_WAIT);
  175. #else
  176. k_delayed_work_submit(&gpiokey->timer, K_NO_WAIT);
  177. #endif
  178. LOG_DBG("enable gpiokey");
  179. }
  180. static void gpiokey_acts_disable(const struct device *dev)
  181. {
  182. struct acts_gpiokey_data *gpiokey = dev->data;
  183. #ifdef GPIO_KEY_POLL_TIMER
  184. k_timer_stop(&gpiokey->timer);
  185. #else
  186. k_delayed_work_cancel(&gpiokey->timer);
  187. #endif
  188. LOG_DBG("disable gpiokey");
  189. }
  190. static void gpiokey_acts_register_notify(const struct device *dev, input_notify_t notify)
  191. {
  192. struct acts_gpiokey_data *gpiokey = dev->data;
  193. LOG_DBG("register notify 0x%x", (uint32_t)notify);
  194. gpiokey->notify = notify;
  195. }
  196. static void gpiokey_acts_unregister_notify(const struct device *dev, input_notify_t notify)
  197. {
  198. struct acts_gpiokey_data *gpiokey = dev->data;
  199. LOG_DBG("unregister notify 0x%x", (uint32_t)notify);
  200. gpiokey->notify = NULL;
  201. }
  202. const struct input_dev_driver_api gpiokey_acts_driver_api = {
  203. .enable = gpiokey_acts_enable,
  204. .disable = gpiokey_acts_disable,
  205. .register_notify = gpiokey_acts_register_notify,
  206. .unregister_notify = gpiokey_acts_unregister_notify,
  207. };
  208. #ifdef CONFIG_PM_DEVICE
  209. int gpiokey_pm_control(const struct device *dev, enum pm_device_action action)
  210. {
  211. struct acts_gpiokey_data *data = (struct acts_gpiokey_data *const)(dev->data);
  212. switch (action)
  213. {
  214. case PM_DEVICE_ACTION_RESUME:
  215. // data->suspended = 0;
  216. break;
  217. case PM_DEVICE_ACTION_SUSPEND:
  218. if((data->irq_trigger != false))
  219. {
  220. LOG_ERR("gpiokey scan keypress, cannot suspend");
  221. return -1;
  222. }
  223. // data->suspended = 1;
  224. break;
  225. default:
  226. return 0;
  227. }
  228. return 0;
  229. }
  230. #else
  231. #define gpiokey_pm_control NULL
  232. #endif
  233. int gpiokey_acts_init(const struct device *dev)
  234. {
  235. const struct acts_gpiokey_config *cfg = dev->config;
  236. const struct acts_pin_config *pinconf = cfg->pinmux;
  237. struct acts_gpiokey_data *gpiokey = dev->data;
  238. int val, i;
  239. for(i = 0; i < cfg->pinmux_size; i++) {
  240. const struct device *gpio_dev = device_get_binding(CONFIG_GPIO_PIN2NAME(pinconf[i].pin_num));
  241. if (!gpio_dev) {
  242. LOG_ERR("failed to bind GPIO:%d", pinconf[i].pin_num);
  243. continue;
  244. }
  245. gpio_pin_configure(gpio_dev, (pinconf[i].pin_num % 32), GPIOKEY_PIN_MODE_DEFAULT);
  246. val = gpio_pin_get(gpio_dev, (pinconf[i].pin_num % 32));
  247. if (val < 0) {
  248. LOG_ERR("failed to get gpio:%d input state", pinconf[i].pin_num);
  249. continue;
  250. }
  251. key_gpio_status[i].past_tatus = val;
  252. key_gpio_status[i].gpio_dev = gpio_dev;
  253. }
  254. gpiokey->this_dev = dev;
  255. gpiokey->scan_count = 0;
  256. gpiokey_acts_ddata.irq_trigger = false;
  257. #ifdef GPIO_KEY_POLL_TIMER
  258. k_timer_init(&gpiokey->timer, gpiokey_acts_poll, NULL);
  259. k_timer_user_data_set(&gpiokey->timer, (void *)dev);
  260. #else
  261. k_delayed_work_init(&gpiokey->timer, gpiokey_acts_poll);
  262. #endif
  263. return 0;
  264. }
  265. #if IS_ENABLED(CONFIG_GPIOKEY)
  266. DEVICE_DEFINE(gpiokey, CONFIG_INPUT_DEV_ACTS_GPIOKEY_NAME,
  267. gpiokey_acts_init, gpiokey_pm_control,
  268. &gpiokey_acts_ddata, &gpiokey_acts_cdata,
  269. POST_KERNEL, 60,
  270. &gpiokey_acts_driver_api);
  271. #endif