input_manager.c 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file input manager interface
  8. */
  9. #include <os_common_api.h>
  10. #include <string.h>
  11. #include <key_hal.h>
  12. #include <app_manager.h>
  13. #include <mem_manager.h>
  14. #include <input_manager.h>
  15. #include <msg_manager.h>
  16. #include <sys_event.h>
  17. #include <property_manager.h>
  18. #include <input_manager_inner.h>
  19. #ifdef CONFIG_DVFS
  20. #include <dvfs.h>
  21. #endif
  22. #define MAX_INPUT_DRIVERS 4
  23. struct input_manager_info {
  24. #ifdef CONFIG_INPUT_POINTER
  25. input_dev_t input_devs[MAX_INPUT_DRIVERS];
  26. #endif
  27. bool input_manager_lock;
  28. bool filter_itself; /* filter all key event after current key event*/
  29. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  30. bool req_boosted;
  31. bool last_boosted;
  32. os_delayed_work boost_work;
  33. #endif
  34. };
  35. #ifdef CONFIG_INPUT_KEYPAD
  36. extern void input_keypad_set_init_param(input_dev_init_param *data);
  37. #endif
  38. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  39. void input_boost_work(struct k_work *work);
  40. #endif
  41. static struct input_manager_info global_input_manager;
  42. static struct input_manager_info *input_manager;
  43. bool input_dev_read(input_dev_t * indev, input_dev_data_t * data)
  44. {
  45. bool cont = false;
  46. memset(data, 0, sizeof(input_dev_data_t));
  47. /* For touchpad sometimes users don't the last pressed coordinate on release.
  48. * So be sure a coordinates are initialized to the last point */
  49. if(indev->driver.type == INPUT_DEV_TYPE_POINTER) {
  50. data->point.x = indev->proc.types.pointer.act_point.x;
  51. data->point.y = indev->proc.types.pointer.act_point.y;
  52. }
  53. /*Similarly set at least the last key in case of the the user doesn't set it on release*/
  54. else if(indev->driver.type == INPUT_DEV_TYPE_KEYPAD) {
  55. data->key = indev->proc.types.keypad.last_key;
  56. }
  57. if(indev->driver.read_cb) {
  58. cont = indev->driver.read_cb(&indev->driver, data);
  59. } else {
  60. SYS_LOG_WRN("NO indev function registered");
  61. }
  62. return cont;
  63. }
  64. void input_manager_dev_enable(input_dev_t *indev)
  65. {
  66. if(indev->driver.enable) {
  67. indev->driver.enable(&indev->driver, true);
  68. }
  69. }
  70. int input_driver_register(input_drv_t *input_drv)
  71. {
  72. #ifdef CONFIG_INPUT_POINTER
  73. input_dev_t *free_input_dev = NULL;
  74. for (int i = 0; i < MAX_INPUT_DRIVERS; i++) {
  75. if (!input_manager->input_devs[i].used_flag) {
  76. free_input_dev = &input_manager->input_devs[i];
  77. }
  78. }
  79. if (!free_input_dev)
  80. return -ENOMEM;
  81. memset(free_input_dev, 0, sizeof(input_dev_t));
  82. memcpy(&free_input_dev->driver, input_drv, sizeof(input_drv_t));
  83. free_input_dev->used_flag = 1;
  84. #endif
  85. return 0;
  86. }
  87. input_dev_t *input_manager_get_input_dev(input_dev_type_t dev_type)
  88. {
  89. input_dev_t *input_dev = NULL;
  90. #ifdef CONFIG_INPUT_POINTER
  91. for (int i = 0; i < MAX_INPUT_DRIVERS; i++) {
  92. if (input_manager->input_devs[i].driver.type == dev_type
  93. && input_manager->input_devs[i].used_flag) {
  94. input_dev = &input_manager->input_devs[i];
  95. }
  96. }
  97. #endif
  98. return input_dev;
  99. }
  100. /*init manager*/
  101. bool input_manager_init(event_trigger event_cb)
  102. {
  103. input_manager = &global_input_manager;
  104. memset(input_manager, 0, sizeof(struct input_manager_info));
  105. #ifdef CONFIG_INPUT_ENCODER
  106. input_encoder_device_init();
  107. #endif
  108. #ifdef CONFIG_INPUT_KEYPAD
  109. input_keypad_device_init(event_cb);
  110. #endif
  111. #ifdef CONFIG_INPUT_POINTER
  112. input_pointer_device_init();
  113. #endif
  114. #ifdef CONFIG_INPUT_DEV_ACTS_KNOB
  115. input_knob_device_init();
  116. #endif
  117. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  118. os_delayed_work_init(&input_manager->boost_work, input_boost_work);
  119. #endif
  120. SYS_LOG_INF("init success\n");
  121. input_manager_lock();
  122. return true;
  123. }
  124. void input_manager_set_init_param(input_dev_init_param *data)
  125. {
  126. #ifdef CONFIG_INPUT_KEYPAD
  127. input_keypad_set_init_param(data);//ms
  128. #endif
  129. }
  130. bool input_manager_lock(void)
  131. {
  132. unsigned int key;
  133. key = os_irq_lock();
  134. input_manager->input_manager_lock = true;
  135. os_irq_unlock(key);
  136. return true;
  137. }
  138. bool input_manager_unlock(void)
  139. {
  140. unsigned int key;
  141. key = os_irq_lock();
  142. input_manager->input_manager_lock = false;
  143. os_irq_unlock(key);
  144. return true;
  145. }
  146. bool input_manager_islock(void)
  147. {
  148. bool result = false;
  149. unsigned int key;
  150. key = os_irq_lock();
  151. result = input_manager->input_manager_lock;
  152. os_irq_unlock(key);
  153. return result;
  154. }
  155. bool input_manager_filter_key_itself(void)
  156. {
  157. unsigned int key;
  158. key = os_irq_lock();
  159. input_manager->filter_itself = true;
  160. os_irq_unlock(key);
  161. return true;
  162. }
  163. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  164. void input_boost_work(struct k_work *work)
  165. {
  166. unsigned int key;
  167. bool boost, last_boosted;
  168. key = os_irq_lock();
  169. boost = input_manager->req_boosted;
  170. last_boosted = input_manager->last_boosted;
  171. os_irq_unlock(key);
  172. if (last_boosted != boost) {
  173. if (boost) {
  174. SYS_LOG_INF("input boost start");
  175. dvfs_set_level(DVFS_LEVEL_HIGH_PERFORMANCE, "input");
  176. } else {
  177. SYS_LOG_INF("input boost stop");
  178. dvfs_unset_level(DVFS_LEVEL_HIGH_PERFORMANCE, "input");
  179. }
  180. key = os_irq_lock();
  181. input_manager->last_boosted = boost;
  182. os_irq_unlock(key);
  183. }
  184. }
  185. #endif
  186. void input_manager_boost(bool boost)
  187. {
  188. #ifdef CONFIG_ACTS_DVFS_DYNAMIC_LEVEL
  189. unsigned int key;
  190. bool last_boosted;
  191. int delay_ms;
  192. key = os_irq_lock();
  193. last_boosted = input_manager->last_boosted;
  194. if (last_boosted != boost) {
  195. input_manager->req_boosted = boost;
  196. }
  197. os_irq_unlock(key);
  198. if (boost) {
  199. os_delayed_work_cancel(&input_manager->boost_work);
  200. }
  201. if (last_boosted != boost) {
  202. delay_ms = boost ? 0 : 2000; // delay 2s to unboost
  203. os_delayed_work_submit(&input_manager->boost_work, delay_ms);
  204. }
  205. #endif
  206. }