uart_mux.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Copyright (c) 2020 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public APIs for UART MUX drivers
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_UART_MUX_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_UART_MUX_H_
  12. /**
  13. * @brief UART Mux Interface
  14. * @defgroup uart_mux_interface UART Mux Interface
  15. * @ingroup io_interfaces
  16. * @{
  17. */
  18. #include <device.h>
  19. #include <drivers/uart.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. struct gsm_dlci;
  24. /**
  25. * @typedef uart_mux_attach_cb_t
  26. *
  27. * @brief Define the user callback function which is called when
  28. * the UART mux is attached properly.
  29. *
  30. * @param mux UART mux device
  31. * @param dlci_address DLCI id for the virtual muxing channel
  32. * @param connected True if DLCI is connected, false otherwise.
  33. * @param user_data Arbitrary user data.
  34. */
  35. typedef void (*uart_mux_attach_cb_t)(const struct device *mux,
  36. int dlci_address,
  37. bool connected, void *user_data);
  38. /** @brief UART mux driver API structure. */
  39. __subsystem struct uart_mux_driver_api {
  40. /**
  41. * The uart_driver_api must be placed in first position in this
  42. * struct so that we are compatible with uart API. Note that currently
  43. * not all of the UART API functions are implemented.
  44. */
  45. struct uart_driver_api uart_api;
  46. /**
  47. * Attach the mux to this UART. The API will call the callback after
  48. * the DLCI is created or not.
  49. */
  50. int (*attach)(const struct device *mux, const struct device *uart,
  51. int dlci_address, uart_mux_attach_cb_t cb,
  52. void *user_data);
  53. };
  54. /**
  55. * @brief Attach physical/real UART to UART muxing device.
  56. *
  57. * @param mux UART mux device structure.
  58. * @param uart Real UART device structure.
  59. * @param dlci_address DLCI id for the virtual muxing channel
  60. * @param cb Callback is called when the DLCI is ready and connected
  61. * @param user_data Caller supplied optional data
  62. *
  63. * @retval 0 No errors, the attachment was successful
  64. * @retval <0 Error
  65. */
  66. static inline int uart_mux_attach(const struct device *mux,
  67. const struct device *uart,
  68. int dlci_address, uart_mux_attach_cb_t cb,
  69. void *user_data)
  70. {
  71. const struct uart_mux_driver_api *api =
  72. (const struct uart_mux_driver_api *)mux->api;
  73. return api->attach(mux, uart, dlci_address, cb, user_data);
  74. }
  75. /**
  76. * @brief Get UART related to a specific DLCI channel
  77. *
  78. * @param dlci_address DLCI address, value >0 and <63
  79. *
  80. * @return UART device if found, NULL otherwise
  81. */
  82. __syscall const struct device *uart_mux_find(int dlci_address);
  83. /**
  84. * @brief Allocate muxing UART device.
  85. *
  86. * @details This will return next available uart mux driver that will mux the
  87. * data when read or written. This device corresponds to one DLCI channel.
  88. * User must first call this to allocate the DLCI and then call the attach
  89. * function to fully enable the muxing.
  90. *
  91. * @retval device New UART device that will automatically mux data sent to it.
  92. * @retval NULL if error
  93. */
  94. const struct device *uart_mux_alloc(void);
  95. /**
  96. * @typedef uart_mux_cb_t
  97. * @brief Callback used while iterating over UART muxes
  98. *
  99. * @param uart Pointer to UART device where the mux is running
  100. * @param dev Pointer to UART mux device
  101. * @param dlci_address DLCI channel id this UART is muxed
  102. * @param user_data A valid pointer to user data or NULL
  103. */
  104. typedef void (*uart_mux_cb_t)(const struct device *uart,
  105. const struct device *dev,
  106. int dlci_address, void *user_data);
  107. /**
  108. * @brief Go through all the UART muxes and call callback
  109. * for each of them
  110. *
  111. * @param cb User-supplied callback function to call
  112. * @param user_data User specified data
  113. */
  114. void uart_mux_foreach(uart_mux_cb_t cb, void *user_data);
  115. /**
  116. * @brief Disable the mux.
  117. *
  118. * @details Disable does not re-instate whatever ISRs and configs were present
  119. * before the mux was enabled. This must be done by the user.
  120. *
  121. * @param dev UART mux device pointer
  122. */
  123. void uart_mux_disable(const struct device *dev);
  124. /**
  125. * @brief Enable the mux.
  126. *
  127. * @details Enables the correct ISRs for the UART mux.
  128. *
  129. * @param dev UART mux device pointer
  130. */
  131. void uart_mux_enable(const struct device *dev);
  132. #ifdef __cplusplus
  133. }
  134. #endif
  135. #include <syscalls/uart_mux.h>
  136. /**
  137. * @}
  138. */
  139. #endif /* ZEPHYR_INCLUDE_DRIVERS_UART_MUX_H_ */