rpmsg_service.h 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_RPMSG_SERVICE_RPMSG_SERVICE_H_
  7. #define ZEPHYR_INCLUDE_RPMSG_SERVICE_RPMSG_SERVICE_H_
  8. #include <openamp/open_amp.h>
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /**
  13. * @brief RPMsg service API
  14. * @defgroup rpmsg_service_api RPMsg service APIs
  15. * @{
  16. */
  17. /**
  18. * @brief Register IPC endpoint
  19. *
  20. * Registers IPC endpoint to enable communication with a remote device.
  21. * The endpoint is created when the slave device registers it.
  22. *
  23. * The same function registers endpoints for both master and slave devices.
  24. *
  25. * @param name String containing the name of the endpoint. Must be identical
  26. * for master and slave
  27. * @param cb Callback executed when data are available on given endpoint
  28. *
  29. * @retval >=0 id of registered endpoint on success;
  30. * @retval -EINPROGRESS when requested to register an endpoint after endpoints
  31. * creation procedure has started;
  32. * @retval -ENOMEM when there is not enough slots to register the endpoint;
  33. * @retval <0 an other negative errno code, reported by rpmsg.
  34. */
  35. int rpmsg_service_register_endpoint(const char *name, rpmsg_ept_cb cb);
  36. /**
  37. * @brief Send data using given IPC endpoint
  38. *
  39. * @param endpoint_id Id of registered endpoint, obtained by
  40. * @ref rpmsg_service_register_endpoint
  41. * @param data Pointer to the buffer to send through RPMsg service
  42. * @param len Number of bytes to send.
  43. *
  44. * @retval >=0 number of sent bytes;
  45. * @retval <0 an error code, reported by rpmsg.
  46. */
  47. int rpmsg_service_send(int endpoint_id, const void *data, size_t len);
  48. /**
  49. * @brief Check if endpoint is bound.
  50. *
  51. * Checks if remote endpoint has been created
  52. * and the master has bound its endpoint to it.
  53. *
  54. * @param endpoint_id Id of registered endpoint, obtained by
  55. * @ref rpmsg_service_register_endpoint
  56. *
  57. * @retval true endpoint is bound
  58. * @retval false endpoint not bound
  59. */
  60. bool rpmsg_service_endpoint_is_bound(int endpoint_id);
  61. /**
  62. * @}
  63. */
  64. #ifdef __cplusplus
  65. }
  66. #endif
  67. #endif /* ZEPHYR_INCLUDE_RPMSG_SERVICE_RPMSG_SERVICE_H_ */