ipmsg.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DRIVERS_IPMSG_H_
  7. #define ZEPHYR_INCLUDE_DRIVERS_IPMSG_H_
  8. /**
  9. * @brief inter-processor message communication API.
  10. * @defgroup ipmsg_interface IPMSG Interface
  11. * @ingroup io_interfaces
  12. * @{
  13. */
  14. #include <kernel.h>
  15. #include <device.h>
  16. #include <rbuf/rbuf_msg.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. enum {
  21. IPMSG_BTC_IRQ,
  22. IPMSG_TWS0_IRQ,
  23. IPMSG_TWS1_IRQ,
  24. IPMSG_REG_PW_CTRL,
  25. };
  26. typedef struct {
  27. uint8_t set_hosc_cap:1;
  28. uint8_t set_max_rf_power:1;
  29. uint8_t set_ble_rf_power:1;
  30. uint8_t hosc_capacity;
  31. uint8_t bt_max_rf_tx_power;
  32. uint8_t ble_rf_tx_power;
  33. } ipmsg_btc_init_param_t;
  34. /**
  35. * @typedef ipmsg init parameter
  36. * @brief Set init parameter.
  37. *
  38. * @param param: Struct of ipmsg_btc_init_param_t
  39. */
  40. typedef void (*ipmsg_init_param_t)(struct device *dev, void *param);
  41. /**
  42. * @typedef ipmsg_load_t
  43. * @brief Callback API to load executable for the remote processor.
  44. *
  45. * See @a ipmsg_load() for argument definitions.
  46. */
  47. typedef int (*ipmsg_load_t)(struct device *ipmdev, void *data, uint32_t size);
  48. /**
  49. * @typedef ipmsg_start_t
  50. * @brief Callback API to start the remote processor.
  51. *
  52. * See @a ipmsg_start() for argument definitions.
  53. */
  54. typedef int (*ipmsg_start_t)(struct device *ipmdev, uint32_t *send_id, uint32_t *recv_id);
  55. /**
  56. * @typedef ipmsg_stop_t
  57. * @brief Callback API to stop the remote processor.
  58. *
  59. * See @a ipmsg_stop() for argument definitions.
  60. */
  61. typedef int (*ipmsg_stop_t)(struct device *ipmdev);
  62. /**
  63. * @typedef ipmsg_notify_t
  64. * @brief Callback API to notify the remote processor.
  65. *
  66. * See @a ipmsg_notify() for argument definitions.
  67. */
  68. typedef int (*ipmsg_notify_t)(struct device *ipmdev);
  69. /**
  70. * @typedef ipmsg_callback_t
  71. * @brief Callback API for incoming IPMSG messages
  72. *
  73. * These callbacks execute in interrupt context. Therefore, use only
  74. * interrupt-safe APIS. Registration of callbacks is done via
  75. * @a ipmsg_register_callback
  76. *
  77. * @param "void *context" Arbitrary context pointer provided at
  78. * registration time.
  79. * @param "void *arg" Other arguments.
  80. * must be inferred using the message id/upper level protocol.
  81. */
  82. typedef void (*ipmsg_callback_t)(void *context, void *arg);
  83. /**
  84. * @typedef ipmsg_pm_ctrl_callback_t
  85. * @brief register power controler callback
  86. */
  87. typedef void (*ipmsg_pm_ctrl_callback_t)(uint32_t command, uint32_t state);
  88. /**
  89. * @typedef ipmsg_register_callback_t
  90. * @brief Callback API upon registration
  91. *
  92. * See @a ipmsg_register_callback() for argument definitions.
  93. */
  94. typedef void (*ipmsg_register_callback_t)(struct device *ipmdev,
  95. ipmsg_callback_t cb, void *cb_context);
  96. typedef void (*ipmsg_irq_enable_t)(struct device *dev, uint8_t irq);
  97. typedef void (*ipmsg_irq_disable_t)(struct device *dev, uint8_t irq);
  98. /**
  99. * @typedef ipmsg_handler_t
  100. * @brief Callback API upon registration
  101. *
  102. * See @a ipmsg_recv() for argument definitions.
  103. */
  104. typedef int (*ipmsg_handler_t)(void *context, void *data, unsigned int size);
  105. struct ipmsg_driver_api {
  106. ipmsg_init_param_t init_param;
  107. ipmsg_load_t load;
  108. ipmsg_start_t start;
  109. ipmsg_stop_t stop;
  110. ipmsg_notify_t notify;
  111. ipmsg_register_callback_t register_callback;
  112. ipmsg_irq_enable_t enable;
  113. ipmsg_irq_disable_t disable;
  114. };
  115. /**
  116. * @typedef ipmsg init parameter
  117. * @brief Set init parameter.
  118. *
  119. * @param param: Struct of ipmsg_btc_init_param_t
  120. */
  121. static inline void ipmsg_init_param(struct device *ipmdev, void *param)
  122. {
  123. const struct ipmsg_driver_api *api =
  124. (const struct ipmsg_driver_api *)ipmdev->api;
  125. api->init_param(ipmdev, param);
  126. }
  127. /**
  128. * @brief Load executable for the remote processor.
  129. *
  130. * @param ipmdev Driver instance
  131. * @param data Executable data.
  132. * @param size Size of executable.
  133. *
  134. * @retval -1 Load failed.
  135. * @retval 0 On success.
  136. */
  137. static inline int ipmsg_load(struct device *ipmdev, void *data, uint32_t size)
  138. {
  139. const struct ipmsg_driver_api *api =
  140. (const struct ipmsg_driver_api *)ipmdev->api;
  141. return api->load(ipmdev, data, size);
  142. }
  143. /**
  144. * @brief Start the remote processor.
  145. *
  146. * It assumes the firmware is already loaded.
  147. *
  148. * @param ipmdev Driver instance
  149. * @param send_id Message queue id for sending.
  150. * @param recv_id Message queue id for receiving.
  151. *
  152. * @retval -1 Stop failed.
  153. * @retval 0 On success.
  154. */
  155. static inline int ipmsg_start(struct device *ipmdev, uint32_t *send_id, uint32_t *recv_id)
  156. {
  157. const struct ipmsg_driver_api *api =
  158. (const struct ipmsg_driver_api *)ipmdev->api;
  159. return api->start(ipmdev, send_id, recv_id);
  160. }
  161. /**
  162. * @brief Stop the remote processor.
  163. *
  164. * @param ipmdev Driver instance
  165. *
  166. * @retval -1 Stop failed.
  167. * @retval 0 On success.
  168. */
  169. static inline int ipmsg_stop(struct device *ipmdev)
  170. {
  171. const struct ipmsg_driver_api *api =
  172. (const struct ipmsg_driver_api *)ipmdev->api;
  173. return api->stop(ipmdev);
  174. }
  175. /**
  176. * @brief Notify the remote processor.
  177. *
  178. * This function notify the remote processor to receive message.
  179. *
  180. * @param ipmdev Driver instance
  181. *
  182. * @retval -1 Notify failed.
  183. * @retval 0 On success.
  184. */
  185. static inline int ipmsg_notify(struct device *ipmdev)
  186. {
  187. const struct ipmsg_driver_api *api =
  188. (const struct ipmsg_driver_api *)ipmdev->api;
  189. return api->notify(ipmdev);
  190. }
  191. /**
  192. * @brief Register a callback function for incoming messages.
  193. *
  194. * @param ipmdev Driver instance pointer.
  195. * @param id Message queue id.
  196. * @param cb Callback function to execute on incoming message interrupts.
  197. * @param context Application-specific context pointer which will be passed
  198. * to the callback function when executed.
  199. */
  200. static inline void ipmsg_register_callback(struct device *ipmdev,
  201. ipmsg_callback_t cb, void *context)
  202. {
  203. const struct ipmsg_driver_api *api =
  204. (const struct ipmsg_driver_api *)ipmdev->api;
  205. api->register_callback(ipmdev, cb, context);
  206. }
  207. static inline void ipmsg_tws_irq_enable(struct device *ipmdev, uint8_t irq)
  208. {
  209. const struct ipmsg_driver_api *api =
  210. (const struct ipmsg_driver_api *)ipmdev->api;
  211. api->enable(ipmdev, irq);
  212. }
  213. static inline void ipmsg_tws_irq_disable(struct device *ipmdev, uint8_t irq)
  214. {
  215. const struct ipmsg_driver_api *api =
  216. (const struct ipmsg_driver_api *)ipmdev->api;
  217. api->disable(ipmdev, irq);
  218. }
  219. /**
  220. * @brief Create message queue.
  221. *
  222. * @param t MSG or RAW.
  223. * @param s Size of queue.
  224. *
  225. * @retval id Message queue id.
  226. */
  227. #define ipmsg_create(type,size) RBUF_TO_OF(rbuf_pool_alloc(RB_GET_POOL,size,type))
  228. /**
  229. * @brief Destroy message queue.
  230. *
  231. * @param id Message queue id.
  232. *
  233. * @retval -1 Destroy failed.
  234. * @retval 0 On success.
  235. */
  236. #define ipmsg_destroy(id) rbuf_pool_free(RBUF_FR_OF(id))
  237. /**
  238. * @brief Get message buffer before filling message.
  239. *
  240. * @param id Message queue id.
  241. * @param size Size of data.
  242. * @param psz Size of allocated buffer.
  243. *
  244. * @retval NULL Get message buffer failed.
  245. * @retval other On success.
  246. */
  247. #define ipmsg_claim(id,size,psz) rbuf_put_claim(RBUF_FR_OF(id),size,psz)
  248. /**
  249. * @brief Send message buffer after filling message.
  250. *
  251. * @param id Message queue id.
  252. * @param size Size of requested data.
  253. *
  254. * @retval -1 Send message failed.
  255. * @retval 0 On success.
  256. */
  257. #define ipmsg_send(id,size) rbuf_put_finish(RBUF_FR_OF(id),size)
  258. /**
  259. * @brief Determine if message queue has data.
  260. *
  261. * @param id Message queue id.
  262. *
  263. * @return 1 if has data, or 0 if not.
  264. */
  265. #define ipmsg_pending(id) (id > 0) && !rbuf_is_empty(RBUF_FR_OF(id))
  266. /**
  267. * @brief Receive message buffer by handler.
  268. *
  269. * @param id Message queue id.
  270. * @param size Size of requested data.
  271. * @param hdl Handler for processing data.
  272. * @param ctx Contex for handler.
  273. *
  274. * @retval -1 Send message failed.
  275. * @retval 0 On success.
  276. */
  277. #define ipmsg_recv(id,size,hdl,ctx) rbuf_get_hdl(RBUF_FR_OF(id),size,hdl,ctx)
  278. #ifdef __cplusplus
  279. }
  280. #endif
  281. /**
  282. * @}
  283. */
  284. #endif /* ZEPHYR_INCLUDE_DRIVERS_IPMSG_H_ */