input_dev.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. /*
  2. * Copyright (c) 2021 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file input_dev.h
  8. * @brief input devices driver common interface
  9. *
  10. * This file builds a public API for input KEY event(pressed or released) and KEY type
  11. * to notify user by a callback function.
  12. */
  13. #ifndef __INCLUDE_INPUT_DEV_H__
  14. #define __INCLUDE_INPUT_DEV_H__
  15. #include <stdint.h>
  16. #include <device.h>
  17. /**
  18. * @defgroup input_device_apis Driver Input Device APIs
  19. * @ingroup driver_apis
  20. * @{
  21. */
  22. /**
  23. * @brief The <b> input devices </b> can be the following modules.
  24. * - ADC KEY
  25. * - ONOFF KEY
  26. * - GPIO KEY
  27. * - TP KEY
  28. * - QD(quad decoder) KEY
  29. * - IR(infrared rays) KEY
  30. * - CAPTURE KEY
  31. *
  32. * User need to enable a input device and register an notify callback function.
  33. * And if there is any input events happened, user will get the input value from
  34. * the notify callback function.
  35. *
  36. * Example:
  37. *
  38. * @code
  39. *
  40. * #include <drivers/input/input_dev.h>
  41. *
  42. * static void adckey_notify_cb (struct device *dev, struct input_value *val)
  43. * {
  44. * printk("input type:%d code:%d value:%d\n", val->keypad.type, val->keypad.code, val->keypad.value);
  45. * }
  46. *
  47. * // 1. Get a input device instance.
  48. * const struct device *adckey_dev = device_get_binding(CONFIG_INPUT_DEV_ACTS_ADCKEY_NAME);
  49. * if (!adckey_dev) {
  50. * printk("failed to get adc key device\n");
  51. * return -ENODEV;
  52. * }
  53. *
  54. * // 2. Register a notify function to the specified input device.
  55. * input_dev_register_notify(dev, adckey_notify_cb);
  56. *
  57. * // 3. Enable the specified input device.
  58. * input_dev_enable(adckey_dev);
  59. *
  60. * // 4. Disable the specified input device.
  61. * input_dev_disable(adckey_dev)
  62. *
  63. * @endcode
  64. */
  65. #ifdef __cplusplus
  66. extern "C" {
  67. #endif
  68. /**
  69. * @name Macros to define the differenct KEY functions.
  70. * @{
  71. */
  72. #define KEY_RESERVED 0
  73. #define KEY_POWER 1
  74. #define KEY_PREVIOUSSONG 2
  75. #define KEY_NEXTSONG 3
  76. #define KEY_VOL 4
  77. #define KEY_VOLUMEUP 5
  78. #define KEY_VOLUMEDOWN 6
  79. #define KEY_MENU 7
  80. #define KEY_CONNECT 8
  81. #define KEY_TBD 9
  82. #define KEY_MUTE 10
  83. #define KEY_PAUSE_AND_RESUME 11
  84. #define KEY_FOLDER_ADD 12
  85. #define KEY_FOLDER_SUB 13
  86. #define KEY_NEXT_VOLADD 14
  87. #define KEY_PREV_VOLSUB 15
  88. #define KEY_NUM0 16
  89. #define KEY_NUM1 17
  90. #define KEY_NUM2 18
  91. #define KEY_NUM3 19
  92. #define KEY_NUM4 20
  93. #define KEY_NUM5 21
  94. #define KEY_NUM6 22
  95. #define KEY_NUM7 23
  96. #define KEY_NUM8 24
  97. #define KEY_NUM9 25
  98. #define KEY_CH_ADD 26
  99. #define KEY_CH_SUB 27
  100. #define KEY_PAUSE 28
  101. #define KEY_RESUME 29
  102. #define KEY_F1 40
  103. #define KEY_F2 41
  104. #define KEY_F3 42
  105. #define KEY_F4 43
  106. #define KEY_F5 44
  107. #define KEY_F6 45
  108. #define KEY_ADFU 46
  109. /**
  110. * @brief The macro to define the minimal interresting key.
  111. * @note We avoid low common keys in module aliases so they don't get huge.
  112. */
  113. #define KEY_MIN_INTERESTING KEY_MUTE
  114. #define LINEIN_DETECT 100
  115. #define KEY_MAX 0x2ff
  116. #define KEY_CNT (KEY_MAX+1)
  117. /** @} */
  118. /**
  119. * @name The macros to define different events.
  120. * @{
  121. */
  122. #define EV_SYN 0x00
  123. #define EV_KEY 0x01
  124. #define EV_REL 0x02
  125. #define EV_ABS 0x03
  126. #define EV_MSC 0x04
  127. #define EV_SW 0x05
  128. #define EV_SR 0x06 /*!< Sliding rheostat */
  129. #define EV_LED 0x11
  130. #define EV_SND 0x12
  131. #define EV_REP 0x14
  132. #define EV_FF 0x15
  133. #define EV_PWR 0x16
  134. #define EV_FF_STATUS 0x17
  135. #define EV_MAX 0x1f
  136. #define EV_CNT (EV_MAX+1)
  137. /** @} */
  138. /**
  139. * @name The macros to define different input device types.
  140. * @{
  141. */
  142. #define INPUT_DEV_TYPE_KEYBOARD 1
  143. #define INPUT_DEV_TYPE_TOUCHPAD 2
  144. /** @} */
  145. /**
  146. * @brief The structure to specify the input device type.
  147. */
  148. struct input_dev_config {
  149. uint8_t type; /*!< input device type */
  150. };
  151. /**
  152. * @brief The sturcture to describe the physicical attributes
  153. * such as touch coordinate points or key pad measure values.
  154. */
  155. struct input_value {
  156. union {
  157. struct{
  158. uint16_t loc_x; /*!< logical point x */
  159. uint16_t loc_y; /*!< logical point y */
  160. uint32_t pessure_value; /*!< pessure messure value */
  161. uint16_t gesture; /*!< finger gesture */
  162. } point; /*!< touch key point infomation */
  163. struct{
  164. uint16_t type; /*!< key pad type */
  165. uint16_t code; /*!< key magic code */
  166. uint32_t value; /*!< key value */
  167. } keypad; /*!< key pad infomation */
  168. struct{
  169. union {
  170. struct{
  171. uint16_t mode;/* protocol kind */
  172. uint32_t *data;/*!< ir data */
  173. uint16_t carry_rate;/* carry rate */
  174. }protocol;
  175. struct{
  176. uint16_t mode;/* protocol kind */
  177. uint16_t onoff;/* on or off */
  178. uint32_t *cmd;/* ir data */
  179. }data;
  180. };
  181. } ir; /*!< ir infomation */
  182. };
  183. };
  184. /** @brief Callback function to notify different events which reported by input devices
  185. *
  186. * @note User need to use #register_notify to register the callback function
  187. * and use #unregister_notify to unregister.
  188. */
  189. typedef void (*input_notify_t) (struct device *dev, struct input_value *val);
  190. /**
  191. * @brief Input device driver public API
  192. *
  193. * @note Funtions to define a common behaviors of input devices.
  194. */
  195. struct input_dev_driver_api {
  196. void (*enable)(const struct device *dev);
  197. void (*disable)(const struct device *dev);
  198. void (*inquiry)(const struct device *dev, struct input_value *val);
  199. void (*register_notify)(const struct device *dev, input_notify_t notify);
  200. void (*unregister_notify)(const struct device *dev, input_notify_t notify);
  201. };
  202. /**
  203. * @brief Function to enable the specified input device.
  204. *
  205. * @param dev Pointer to the device structure for the input driver instance.
  206. *
  207. * @return none
  208. */
  209. static inline void input_dev_enable(const struct device *dev)
  210. {
  211. const struct input_dev_driver_api *api = dev->api;
  212. if (api->enable)
  213. api->enable(dev);
  214. }
  215. /**
  216. * @brief Function to disable the specified input device.
  217. *
  218. * @param dev Pointer to the device structure for the input driver instance.
  219. *
  220. * @return none
  221. */
  222. static inline void input_dev_disable(const struct device *dev)
  223. {
  224. const struct input_dev_driver_api *api = dev->api;
  225. if (api->disable)
  226. api->disable(dev);
  227. }
  228. /**
  229. * @brief Function to inquiry the current input status by the specified input device.
  230. *
  231. * @param dev Pointer to the device structure for the input driver instance.
  232. *
  233. * @return none
  234. */
  235. static inline void input_dev_inquiry(const struct device *dev,
  236. struct input_value *val)
  237. {
  238. const struct input_dev_driver_api *api = dev->api;
  239. if (api->inquiry)
  240. api->inquiry(dev, val);
  241. }
  242. /**
  243. * @brief Function to register a notify callback function to the specified input device.
  244. *
  245. * @param dev Pointer to the device structure for the input driver instance.
  246. *
  247. * @param notify The notify callback function.
  248. *
  249. * @return none
  250. */
  251. static inline void input_dev_register_notify(const struct device *dev,
  252. input_notify_t notify)
  253. {
  254. const struct input_dev_driver_api *api = dev->api;
  255. if (api->register_notify)
  256. api->register_notify(dev, notify);
  257. }
  258. /**
  259. * @brief Function to unregister a notify callback function to the specified input device.
  260. *
  261. * @param dev Pointer to the device structure for the input driver instance.
  262. *
  263. * @param notify The notify callback function.
  264. *
  265. * @return none
  266. */
  267. static inline void input_dev_unregister_notify(const struct device *dev,
  268. input_notify_t notify)
  269. {
  270. const struct input_dev_driver_api *api = dev->api;
  271. if (api->unregister_notify)
  272. api->unregister_notify(dev, notify);
  273. }
  274. #ifdef __cplusplus
  275. }
  276. #endif
  277. /**
  278. * @} end defgroup input_device_apis
  279. */
  280. #endif /* __INCLUDE_INPUT_DEV_H__ */