input_dev.h 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  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_KONB_CLOCKWISE 30
  103. #define KEY_KONB_ANTICLOCKWISE 31
  104. #define KEY_F1 40
  105. #define KEY_F2 41
  106. #define KEY_F3 42
  107. #define KEY_F4 43
  108. #define KEY_F5 44
  109. #define KEY_F6 45
  110. #define KEY_ADFU 46
  111. /**
  112. * @brief The macro to define the minimal interresting key.
  113. * @note We avoid low common keys in module aliases so they don't get huge.
  114. */
  115. #define KEY_MIN_INTERESTING KEY_MUTE
  116. #define LINEIN_DETECT 100
  117. #define KEY_MAX 0x2ff
  118. #define KEY_CNT (KEY_MAX+1)
  119. /** @} */
  120. /**
  121. * @name The macros to define different events.
  122. * @{
  123. */
  124. #define EV_SYN 0x00
  125. #define EV_KEY 0x01
  126. #define EV_REL 0x02
  127. #define EV_ABS 0x03
  128. #define EV_MSC 0x04
  129. #define EV_SW 0x05
  130. #define EV_SR 0x06 /*!< Sliding rheostat */
  131. #define EV_LED 0x11
  132. #define EV_SND 0x12
  133. #define EV_REP 0x14
  134. #define EV_FF 0x15
  135. #define EV_PWR 0x16
  136. #define EV_FF_STATUS 0x17
  137. #define EV_MAX 0x1f
  138. #define EV_CNT (EV_MAX+1)
  139. /** @} */
  140. /**
  141. * @name The macros to define different input device types.
  142. * @{
  143. */
  144. #define INPUT_DEV_TYPE_KEYBOARD 1
  145. #define INPUT_DEV_TYPE_TOUCHPAD 2
  146. /** @} */
  147. /**
  148. * @brief The structure to specify the input device type.
  149. */
  150. struct input_dev_config {
  151. uint8_t type; /*!< input device type */
  152. };
  153. /**
  154. * @brief The sturcture to describe the physicical attributes
  155. * such as touch coordinate points or key pad measure values.
  156. */
  157. struct input_value {
  158. union {
  159. struct{
  160. int16_t loc_x; /*!< logical point x */
  161. int16_t loc_y; /*!< logical point y */
  162. uint16_t pessure_value; /*!< pessure messure value */
  163. uint16_t gesture; /*!< finger gesture */
  164. } point; /*!< touch key point infomation */
  165. struct{
  166. uint16_t type; /*!< key pad type */
  167. uint16_t code; /*!< key magic code */
  168. uint32_t value; /*!< key value */
  169. } keypad; /*!< key pad infomation */
  170. struct{
  171. union {
  172. struct{
  173. uint16_t mode;/* protocol kind */
  174. uint32_t *data;/*!< ir data */
  175. uint16_t carry_rate;/* carry rate */
  176. }protocol;
  177. struct{
  178. uint16_t mode;/* protocol kind */
  179. uint16_t onoff;/* on or off */
  180. uint32_t *cmd;/* ir data */
  181. }data;
  182. };
  183. } ir; /*!< ir infomation */
  184. };
  185. };
  186. /**
  187. * @brief Input gesture types.
  188. *
  189. * Input gesture typesenumeration.
  190. */
  191. enum {
  192. /** direction gestures: left, right, top, bottom */
  193. INPUT_GESTURE_DIRECTION = BIT(0),
  194. };
  195. /**
  196. * @brief Structure holding input device capabilities
  197. * such as touch coordinate points or key pad measure values.
  198. */
  199. struct input_capabilities {
  200. union {
  201. struct {
  202. uint32_t supported_gestures; /*!< finger direction gesture */
  203. } pointer; /*!< touch key pointer capabilities */
  204. };
  205. };
  206. /** @brief Callback function to notify different events which reported by input devices
  207. *
  208. * @note User need to use #register_notify to register the callback function
  209. * and use #unregister_notify to unregister.
  210. */
  211. typedef void (*input_notify_t) (struct device *dev, struct input_value *val);
  212. /**
  213. * @brief Input device driver public API
  214. *
  215. * @note Funtions to define a common behaviors of input devices.
  216. */
  217. struct input_dev_driver_api {
  218. void (*enable)(const struct device *dev);
  219. void (*disable)(const struct device *dev);
  220. void (*inquiry)(const struct device *dev, struct input_value *val);
  221. void (*register_notify)(const struct device *dev, input_notify_t notify);
  222. void (*unregister_notify)(const struct device *dev, input_notify_t notify);
  223. void (*get_capabilities)(const struct device *dev, struct input_capabilities *capabilities);
  224. };
  225. /**
  226. * @brief Function to enable the specified input device.
  227. *
  228. * @param dev Pointer to the device structure for the input driver instance.
  229. *
  230. * @return none
  231. */
  232. static inline void input_dev_enable(const struct device *dev)
  233. {
  234. const struct input_dev_driver_api *api = dev->api;
  235. if (api->enable)
  236. api->enable(dev);
  237. }
  238. /**
  239. * @brief Function to disable the specified input device.
  240. *
  241. * @param dev Pointer to the device structure for the input driver instance.
  242. *
  243. * @return none
  244. */
  245. static inline void input_dev_disable(const struct device *dev)
  246. {
  247. const struct input_dev_driver_api *api = dev->api;
  248. if (api->disable)
  249. api->disable(dev);
  250. }
  251. /**
  252. * @brief Function to inquiry the current input status by the specified input device.
  253. *
  254. * @param dev Pointer to the device structure for the input driver instance.
  255. *
  256. * @return none
  257. */
  258. static inline void input_dev_inquiry(const struct device *dev,
  259. struct input_value *val)
  260. {
  261. const struct input_dev_driver_api *api = dev->api;
  262. if (api->inquiry)
  263. api->inquiry(dev, val);
  264. }
  265. /**
  266. * @brief Function to register a notify callback function to the specified input device.
  267. *
  268. * @param dev Pointer to the device structure for the input driver instance.
  269. *
  270. * @param notify The notify callback function.
  271. *
  272. * @return none
  273. */
  274. static inline void input_dev_register_notify(const struct device *dev,
  275. input_notify_t notify)
  276. {
  277. const struct input_dev_driver_api *api = dev->api;
  278. if (api->register_notify)
  279. api->register_notify(dev, notify);
  280. }
  281. /**
  282. * @brief Function to unregister a notify callback function to the specified input device.
  283. *
  284. * @param dev Pointer to the device structure for the input driver instance.
  285. *
  286. * @param notify The notify callback function.
  287. *
  288. * @return none
  289. */
  290. static inline void input_dev_unregister_notify(const struct device *dev,
  291. input_notify_t notify)
  292. {
  293. const struct input_dev_driver_api *api = dev->api;
  294. if (api->unregister_notify)
  295. api->unregister_notify(dev, notify);
  296. }
  297. /**
  298. * @brief Get input device capabilities
  299. *
  300. * @param dev Pointer to device structure
  301. * @param capabilities Pointer to capabilities structure to populate
  302. *
  303. * @return none
  304. */
  305. static inline void input_dev_get_capabilities(const struct device *dev,
  306. struct input_capabilities *capabilities)
  307. {
  308. const struct input_dev_driver_api *api = dev->api;
  309. if (api->get_capabilities) {
  310. api->get_capabilities(dev, capabilities);
  311. }
  312. }
  313. #ifdef __cplusplus
  314. }
  315. #endif
  316. /**
  317. * @} end defgroup input_device_apis
  318. */
  319. #endif /* __INCLUDE_INPUT_DEV_H__ */