ipc_service.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_IPC_SERVICE_IPC_SERVICE_H_
  7. #define ZEPHYR_INCLUDE_IPC_SERVICE_IPC_SERVICE_H_
  8. #include <stdio.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @brief IPC Service API
  14. * @defgroup ipc_service_api IPC service APIs
  15. * @{
  16. */
  17. /** @brief Event callback structure.
  18. *
  19. * It is registered during endpoint registration.
  20. * This structure is part of the endpoint configuration.
  21. */
  22. struct ipc_service_cb {
  23. /** @brief Bind was successful.
  24. *
  25. * @param priv Private user data.
  26. */
  27. void (*bound)(void *priv);
  28. /** @brief New packet arrived.
  29. *
  30. * @param data Pointer to data buffer.
  31. * @param len Length of @a data.
  32. * @param priv Private user data.
  33. */
  34. void (*received)(const void *data, size_t len, void *priv);
  35. /** @brief An error occurred.
  36. *
  37. * @param message Error message.
  38. * @param priv Private user data.
  39. */
  40. void (*error)(const char *message, void *priv);
  41. };
  42. /** @brief Endpoint instance.
  43. *
  44. * Content is not important for user of the API.
  45. * It is implemented in a specific backend.
  46. */
  47. struct ipc_ept;
  48. /** @brief Endpoint configuration structure. */
  49. struct ipc_ept_cfg {
  50. /** Name of the endpoint. */
  51. const char *name;
  52. /** Endpoint priority. If the backend supports priorities. */
  53. int prio;
  54. /** Event callback structure. */
  55. struct ipc_service_cb cb;
  56. /** Private user data. */
  57. void *priv;
  58. };
  59. /** @brief Register IPC endpoint.
  60. *
  61. * Registers IPC endpoint to enable communication with a remote device.
  62. *
  63. * The same function registers endpoints for both master and slave devices.
  64. *
  65. * @param ept Endpoint object.
  66. * @param cfg Endpoint configuration.
  67. *
  68. * @retval -EIO when no backend is registered.
  69. * @retval -EINVAL when pointer to an endpoint or endpoint configuration is invalid.
  70. * @retval Other errno codes depending on the implementation of the backend.
  71. */
  72. int ipc_service_register_endpoint(struct ipc_ept **ept, const struct ipc_ept_cfg *cfg);
  73. /** @brief Send data using given IPC endpoint.
  74. *
  75. * @param ept Registered endpoint by @ref ipc_service_register_endpoint.
  76. * @param data Pointer to the buffer to send.
  77. * @param len Number of bytes to send.
  78. *
  79. * @retval -EIO when no backend is registered.
  80. * @retval Other errno codes depending on the implementation of the backend.
  81. */
  82. int ipc_service_send(struct ipc_ept *ept, const void *data, size_t len);
  83. /**
  84. * @}
  85. */
  86. #ifdef __cplusplus
  87. }
  88. #endif
  89. #endif /* ZEPHYR_INCLUDE_IPC_SERVICE_IPC_SERVICE_H_ */