kscan.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for Keyboard scan matrix devices.
  9. * The scope of this API is simply to report which key event was triggered
  10. * and users can later decode keys using their desired scan code tables in
  11. * their application. In addition, typematic rate and delay can easily be
  12. * implemented using a timer if desired.
  13. */
  14. #ifndef ZEPHYR_INCLUDE_DRIVERS_KB_SCAN_H_
  15. #define ZEPHYR_INCLUDE_DRIVERS_KB_SCAN_H_
  16. #include <zephyr/types.h>
  17. #include <stddef.h>
  18. #include <device.h>
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. /**
  23. * @brief KSCAN APIs
  24. * @defgroup kscan_interface Keyboard Scan Driver APIs
  25. * @ingroup io_interfaces
  26. * @{
  27. */
  28. /**
  29. * @brief Keyboard scan callback called when user press/release
  30. * a key on a matrix keyboard.
  31. *
  32. * @param dev Pointer to the device structure for the driver instance.
  33. * @param row Describes row change.
  34. * @param column Describes column change.
  35. * @param pressed Describes the kind of key event.
  36. */
  37. typedef void (*kscan_callback_t)(const struct device *dev, uint32_t row,
  38. uint32_t column,
  39. bool pressed);
  40. /**
  41. * @cond INTERNAL_HIDDEN
  42. *
  43. * Keyboard scan driver API definition and system call entry points.
  44. *
  45. * (Internal use only.)
  46. */
  47. typedef int (*kscan_config_t)(const struct device *dev,
  48. kscan_callback_t callback);
  49. typedef int (*kscan_disable_callback_t)(const struct device *dev);
  50. typedef int (*kscan_enable_callback_t)(const struct device *dev);
  51. __subsystem struct kscan_driver_api {
  52. kscan_config_t config;
  53. kscan_disable_callback_t disable_callback;
  54. kscan_enable_callback_t enable_callback;
  55. };
  56. /**
  57. * @endcond
  58. */
  59. /**
  60. * @brief Configure a Keyboard scan instance.
  61. *
  62. * @param dev Pointer to the device structure for the driver instance.
  63. * @param callback called when keyboard devices reply to to a keyboard
  64. * event such as key pressed/released.
  65. *
  66. * @retval 0 If successful.
  67. * @retval Negative errno code if failure.
  68. */
  69. __syscall int kscan_config(const struct device *dev,
  70. kscan_callback_t callback);
  71. static inline int z_impl_kscan_config(const struct device *dev,
  72. kscan_callback_t callback)
  73. {
  74. const struct kscan_driver_api *api =
  75. (struct kscan_driver_api *)dev->api;
  76. return api->config(dev, callback);
  77. }
  78. /**
  79. * @brief Enables callback.
  80. * @param dev Pointer to the device structure for the driver instance.
  81. *
  82. * @retval 0 If successful.
  83. * @retval Negative errno code if failure.
  84. */
  85. __syscall int kscan_enable_callback(const struct device *dev);
  86. static inline int z_impl_kscan_enable_callback(const struct device *dev)
  87. {
  88. const struct kscan_driver_api *api =
  89. (const struct kscan_driver_api *)dev->api;
  90. if (api->enable_callback == NULL) {
  91. return -ENOSYS;
  92. }
  93. return api->enable_callback(dev);
  94. }
  95. /**
  96. * @brief Disables callback.
  97. * @param dev Pointer to the device structure for the driver instance.
  98. *
  99. * @retval 0 If successful.
  100. * @retval Negative errno code if failure.
  101. */
  102. __syscall int kscan_disable_callback(const struct device *dev);
  103. static inline int z_impl_kscan_disable_callback(const struct device *dev)
  104. {
  105. const struct kscan_driver_api *api =
  106. (const struct kscan_driver_api *)dev->api;
  107. if (api->disable_callback == NULL) {
  108. return -ENOSYS;
  109. }
  110. return api->disable_callback(dev);
  111. }
  112. #ifdef __cplusplus
  113. }
  114. #endif
  115. /**
  116. * @}
  117. */
  118. #include <syscalls/kscan.h>
  119. #endif /* ZEPHYR_INCLUDE_DRIVERS_KB_SCAN_H_ */