ipc_service_backend.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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_BACKEND_H_
  7. #define ZEPHYR_INCLUDE_IPC_SERVICE_IPC_SERVICE_BACKEND_H_
  8. #include <ipc/ipc_service.h>
  9. #include <stdio.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * @brief IPC Service backend
  15. * @ingroup ipc_service_api
  16. * @{
  17. */
  18. /** @brief IPC backend configuration structure.
  19. *
  20. * This structure is used for configuration backend during registration.
  21. */
  22. struct ipc_service_backend {
  23. /** @brief Name of the IPC backend. */
  24. const char *name;
  25. /** @brief Pointer to the function that will be used to send data to the endpoint.
  26. *
  27. * @param ept Registered endpoint.
  28. * @param data Pointer to the buffer to send.
  29. * @param len Number of bytes to send.
  30. *
  31. * @retval Status code.
  32. */
  33. int (*send)(struct ipc_ept *ept, const void *data, size_t len);
  34. /** @brief Pointer to the function that will be used to register endpoints.
  35. *
  36. * @param ept Endpoint object.
  37. * @param cfg Endpoint configuration.
  38. *
  39. * @retval Status code.
  40. */
  41. int (*register_endpoint)(struct ipc_ept **ept, const struct ipc_ept_cfg *cfg);
  42. };
  43. /** @brief IPC backend registration.
  44. *
  45. * Registration must be done before using IPC Service.
  46. *
  47. * @param backend Configuration of the backend.
  48. *
  49. * @retval -EALREADY The backend is already registered.
  50. * @retval -EINVAL The backend configuration is incorrect.
  51. * @retval Zero on success.
  52. *
  53. */
  54. int ipc_service_register_backend(const struct ipc_service_backend *backend);
  55. /**
  56. * @}
  57. */
  58. #ifdef __cplusplus
  59. }
  60. #endif
  61. #endif /* ZEPHYR_INCLUDE_IPC_SERVICE_IPC_SERVICE_BACKEND_H_ */