ps2.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Copyright (c) 2019 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for PS/2 devices such as keyboard and mouse.
  9. * Callers of this API are responsible for setting the typematic rate
  10. * and decode keys using their desired scan code tables.
  11. */
  12. #ifndef ZEPHYR_INCLUDE_DRIVERS_PS2_H_
  13. #define ZEPHYR_INCLUDE_DRIVERS_PS2_H_
  14. #include <zephyr/types.h>
  15. #include <stddef.h>
  16. #include <device.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @brief PS/2 Driver APIs
  22. * @defgroup ps2_interface PS/2 Driver APIs
  23. * @ingroup io_interfaces
  24. * @{
  25. */
  26. /**
  27. * @brief PS/2 callback called when user types or click a mouse.
  28. *
  29. * @param dev Pointer to the device structure for the driver instance.
  30. * @param data Data byte passed pack to the user.
  31. */
  32. typedef void (*ps2_callback_t)(const struct device *dev, uint8_t data);
  33. /**
  34. * @cond INTERNAL_HIDDEN
  35. *
  36. * PS2 driver API definition and system call entry points
  37. *
  38. * (Internal use only.)
  39. */
  40. typedef int (*ps2_config_t)(const struct device *dev,
  41. ps2_callback_t callback_isr);
  42. typedef int (*ps2_read_t)(const struct device *dev, uint8_t *value);
  43. typedef int (*ps2_write_t)(const struct device *dev, uint8_t value);
  44. typedef int (*ps2_disable_callback_t)(const struct device *dev);
  45. typedef int (*ps2_enable_callback_t)(const struct device *dev);
  46. __subsystem struct ps2_driver_api {
  47. ps2_config_t config;
  48. ps2_read_t read;
  49. ps2_write_t write;
  50. ps2_disable_callback_t disable_callback;
  51. ps2_enable_callback_t enable_callback;
  52. };
  53. /**
  54. * @endcond
  55. */
  56. /**
  57. * @brief Configure a ps2 instance.
  58. *
  59. * @param dev Pointer to the device structure for the driver instance.
  60. * @param callback_isr called when PS/2 devices reply to a configuration
  61. * command or when a mouse/keyboard send data to the client application.
  62. *
  63. * @retval 0 If successful.
  64. * @retval Negative errno code if failure.
  65. */
  66. __syscall int ps2_config(const struct device *dev,
  67. ps2_callback_t callback_isr);
  68. static inline int z_impl_ps2_config(const struct device *dev,
  69. ps2_callback_t callback_isr)
  70. {
  71. const struct ps2_driver_api *api =
  72. (struct ps2_driver_api *)dev->api;
  73. return api->config(dev, callback_isr);
  74. }
  75. /**
  76. * @brief Write to PS/2 device.
  77. *
  78. * @param dev Pointer to the device structure for the driver instance.
  79. * @param value Data for the PS2 device.
  80. *
  81. * @retval 0 If successful.
  82. * @retval Negative errno code if failure.
  83. */
  84. __syscall int ps2_write(const struct device *dev, uint8_t value);
  85. static inline int z_impl_ps2_write(const struct device *dev, uint8_t value)
  86. {
  87. const struct ps2_driver_api *api =
  88. (const struct ps2_driver_api *)dev->api;
  89. return api->write(dev, value);
  90. }
  91. /**
  92. * @brief Read slave-to-host values from PS/2 device.
  93. * @param dev Pointer to the device structure for the driver instance.
  94. * @param value Pointer used for reading the PS/2 device.
  95. *
  96. * @retval 0 If successful.
  97. * @retval Negative errno code if failure.
  98. */
  99. __syscall int ps2_read(const struct device *dev, uint8_t *value);
  100. static inline int z_impl_ps2_read(const struct device *dev, uint8_t *value)
  101. {
  102. const struct ps2_driver_api *api =
  103. (const struct ps2_driver_api *)dev->api;
  104. return api->read(dev, value);
  105. }
  106. /**
  107. * @brief Enables callback.
  108. * @param dev Pointer to the device structure for the driver instance.
  109. *
  110. * @retval 0 If successful.
  111. * @retval Negative errno code if failure.
  112. */
  113. __syscall int ps2_enable_callback(const struct device *dev);
  114. static inline int z_impl_ps2_enable_callback(const struct device *dev)
  115. {
  116. const struct ps2_driver_api *api =
  117. (const struct ps2_driver_api *)dev->api;
  118. if (api->enable_callback == NULL) {
  119. return -ENOSYS;
  120. }
  121. return api->enable_callback(dev);
  122. }
  123. /**
  124. * @brief Disables callback.
  125. * @param dev Pointer to the device structure for the driver instance.
  126. *
  127. * @retval 0 If successful.
  128. * @retval Negative errno code if failure.
  129. */
  130. __syscall int ps2_disable_callback(const struct device *dev);
  131. static inline int z_impl_ps2_disable_callback(const struct device *dev)
  132. {
  133. const struct ps2_driver_api *api =
  134. (const struct ps2_driver_api *)dev->api;
  135. if (api->disable_callback == NULL) {
  136. return -ENOSYS;
  137. }
  138. return api->disable_callback(dev);
  139. }
  140. #ifdef __cplusplus
  141. }
  142. #endif
  143. /**
  144. * @}
  145. */
  146. #include <syscalls/ps2.h>
  147. #endif /* ZEPHYR_INCLUDE_DRIVERS_PS2_H_ */