dsp.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561
  1. /*
  2. * Copyright (c) 2013-2015 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for DSP drivers and applications
  9. */
  10. #ifndef __DSP_H__
  11. #define __DSP_H__
  12. #include <stddef.h>
  13. #include <stdint.h>
  14. #include <sys/types.h>
  15. #include <zephyr/types.h>
  16. #include <device.h>
  17. #include <drivers/cfg_drv/dev_config.h>
  18. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  19. #include <fs/fs.h>
  20. #endif /* LOAD_IMAGE_FROM_FS */
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**********************************************************************************/
  25. /* dsp image definition */
  26. /**********************************************************************************/
  27. /* image type, for multiple images support */
  28. enum {
  29. DSP_IMAGE_MAIN = 0, /* provide program entry point */
  30. DSP_IMAGE_SUB,
  31. DSP_NUM_IMAGE_TYPES,
  32. };
  33. #define DSP_IMAGE_NMLEN (12)
  34. struct dsp_imageinfo {
  35. const char *name;
  36. #ifdef CONFIG_LOAD_IMAGE_FROM_FS
  37. struct fs_file_t filp;
  38. #else
  39. const void *ptr;
  40. #endif
  41. size_t size;
  42. uint32_t entry_point;
  43. };
  44. /* boot arguments of dsp image */
  45. struct dsp_bootargs {
  46. int32_t power_latency; /* us */
  47. uint32_t command_buffer; /* address of command buffer */
  48. uint32_t debug_buf;
  49. uint32_t sub_entry_point;
  50. };
  51. /**********************************************************************************/
  52. /* DSP/CPU communication mechanism (3 kinds) */
  53. /**********************************************************************************/
  54. /**********************************************************************************/
  55. /* 1. message bidirectional communication */
  56. /* - Based on mailbox registers and interrupts */
  57. /**********************************************************************************/
  58. /* message id */
  59. enum dsp_msg_id {
  60. DSP_MSG_NULL = 0, /* empty message */
  61. /* from dsp */
  62. DSP_MSG_REQUEST_BOOTARGS,
  63. /* notify important state changing to cpu, parameter is enum dsp_task_state */
  64. DSP_MSG_STATE_CHANGED,
  65. DSP_MSG_PAGE_MISS, /* parameter is epc */
  66. DSP_MSG_PAGE_FLUSH, /* parameter is epc */
  67. /* to dsp */
  68. DSP_MSG_SUSPEND, /* no parameter */
  69. DSP_MSG_RESUME, /* no parameter */
  70. /* bidirection */
  71. DSP_MSG_KICK, /* parameter is enum dsp_msg_event */
  72. /* user-defined message id started from this */
  73. DSP_MSG_USER_DEFINED,
  74. };
  75. /* parameter of DSP_MSG_KICK */
  76. enum dsp_msg_event {
  77. DSP_EVENT_NEW_CMD = 0, /* new command in session command buffer */
  78. DSP_EVENT_NEW_DATA, /* new data in session data buffer */
  79. DSP_EVENT_FENCE_SYNC, /* sync signaled */
  80. DSP_EVENT_USER_DEFINED,
  81. };
  82. /* message handling result */
  83. enum dsp_msg_result {
  84. DSP_NOACK = -2, /* ack not received */
  85. DSP_FAIL = -1, /* ack received but failed to handled */
  86. DSP_NOTOUCH = 0, /* not yet touched */
  87. DSP_INPROGRESS, /* not yet completed */
  88. DSP_DONE, /* all requests done */
  89. DSP_REPLY, /* all requests done, with reply present */
  90. };
  91. /* messsage struct */
  92. struct dsp_message {
  93. /* message id */
  94. uint16_t id;
  95. /* message result */
  96. int16_t result;
  97. /* message owner */
  98. uint32_t owner;
  99. /* user-defined parameter */
  100. uint32_t param1;
  101. uint32_t param2;
  102. };
  103. /**********************************************************************************/
  104. /* 2. command buffer unidirectional communication (bound to specific session) */
  105. /* - Based on message mechanism and buffer pooling */
  106. /**********************************************************************************/
  107. /* command id */
  108. enum dsp_cmd_id {
  109. /* generic commands */
  110. DSP_CMD_NULL = 0, /* empty message, dsp will go idle */
  111. DSP_CMD_SET_SESSION = 1, /* set session to run */
  112. };
  113. /* parameters of DSP_CMD_SET_SESSION */
  114. struct dsp_session_id_set {
  115. uint32_t id; /* session type */
  116. uint32_t uuid; /* session uuid */
  117. uint32_t func_allowed; /* function allowed */
  118. };
  119. struct dsp_command_buffer {
  120. /* sequence of current command (counted from 1) */
  121. uint16_t cur_seq;
  122. /* sequence to be allocated */
  123. uint16_t alloc_seq;
  124. /* buffer object address (struct dsp_ringbuf) to store commands */
  125. uint32_t cpu_bufptr;
  126. uint32_t dsp_bufptr;
  127. };
  128. struct dsp_command {
  129. /* command id */
  130. uint16_t id;
  131. /* sequence in command buffer */
  132. uint16_t seq;
  133. /* semaphore handle (dsp will not touch) if synchronization needed */
  134. uint32_t sem;
  135. /* size of data in bytes */
  136. uint32_t size;
  137. uint32_t data[0];
  138. };
  139. /* total size should be multiple of 16-bit words */
  140. static inline size_t sizeof_dsp_command(struct dsp_command *command)
  141. {
  142. return sizeof(*command) + command->size;
  143. }
  144. /**********************************************************************************/
  145. /* 3. directly shared bidirectional communication */
  146. /* - Based on mailbox registers, for frequently requested information */
  147. /**********************************************************************************/
  148. /* request type */
  149. enum dsp_request_type {
  150. DSP_REQUEST_TASK_STATE, /* task state */
  151. DSP_REQUEST_ERROR_CODE, /* error code */
  152. DSP_REQUEST_SESSION_INFO, /* session information */
  153. DSP_REQUEST_FUNCTION_INFO, /* function information */
  154. DSP_REQUEST_USER_DEFINED, /* user defined information */
  155. };
  156. /* task state */
  157. enum dsp_task_state {
  158. DSP_TASK_PRESTART = -1, /* has not yet started */
  159. DSP_TASK_STARTED = 0, /* started, prepare running */
  160. DSP_TASK_PENDING, /* waiting for new command or data */
  161. DSP_TASK_RUNNING, /* running */
  162. DSP_TASK_SUSPENDED, /* suspended */
  163. DSP_TASK_DEAD, /* terminated */
  164. DSP_TASK_IDLE = DSP_TASK_PENDING,
  165. DSP_TASK_RESUMED = DSP_TASK_RUNNING,
  166. };
  167. /* error code */
  168. enum dsp_error {
  169. DSP_NO_ERROR = 0,
  170. DSP_BAD_BOOTARGS,
  171. DSP_BAD_COMMAND,
  172. DSP_BAD_SESSION,
  173. DSP_BAD_FUNCTION,
  174. DSP_BAD_PARAMETER,
  175. DSP_ERR_USER_DEFINED,
  176. };
  177. /* DSP_REQUEST_SESSION_INFO */
  178. struct dsp_request_session {
  179. uint32_t func_enabled; /* enabled function */
  180. uint32_t func_counter; /* function counter */
  181. void *info; /* private information */
  182. uint32_t func_runnable; /* runnable function */
  183. };
  184. /* DSP_REQUEST_FUNCTION_INFO */
  185. struct dsp_request_function {
  186. unsigned int id; /* function id */
  187. void *info; /* function information address */
  188. };
  189. /**********************************************************************************/
  190. /* dsp device driver api */
  191. /**********************************************************************************/
  192. /**
  193. * @cond INTERNAL_HIDDEN
  194. *
  195. * These are for internal use only, so skip these in public documentation.
  196. */
  197. /**
  198. * @typedef dsp_api_poweron
  199. * @brief Callback API for power on
  200. */
  201. typedef int (*dsp_api_poweron)(struct device *dev, void *cmdbuf);
  202. /**
  203. * @typedef dsp_api_poweroff
  204. * @brief Callback API for power off
  205. */
  206. typedef int (*dsp_api_poweroff)(struct device *dev);
  207. /**
  208. * @typedef dsp_api_suspend
  209. * @brief Callback API for power suspend
  210. */
  211. typedef int (*dsp_api_suspend)(struct device *dev);
  212. /**
  213. * @typedef dsp_api_resume
  214. * @brief Callback API for power resume
  215. */
  216. typedef int (*dsp_api_resume)(struct device *dev);
  217. /**
  218. * @typedef dsp_api_kick
  219. * @brief Callback API for kicking dsp
  220. */
  221. typedef int (*dsp_api_kick)(struct device *dev, uint32_t owner, uint32_t event, uint32_t params);
  222. /**
  223. * @typedef dsp_api_request_image
  224. * @brief Callback API for loading image
  225. */
  226. typedef int (*dsp_api_request_image)(struct device *dev, const struct dsp_imageinfo *image, int type);
  227. /**
  228. * @typedef dsp_api_release_image
  229. * @brief Callback API for releasing image
  230. */
  231. typedef int (*dsp_api_release_image)(struct device *dev, int type);
  232. /**
  233. * @typedef dsp_api_release_image
  234. * @brief Callback API for releasing image
  235. */
  236. typedef int (*dsp_api_request_mem)(struct device *dev, int type);
  237. /**
  238. * @typedef dsp_api_release_image
  239. * @brief Callback API for releasing image
  240. */
  241. typedef int (*dsp_api_release_mem)(struct device *dev, int type);
  242. /**
  243. * @typedef dsp_message_handler
  244. * @brief Prototype definition for message handler
  245. */
  246. typedef int (*dsp_message_handler)(struct dsp_message *msg);
  247. /**
  248. * @typedef dsp_api_register_message_handler
  249. * @brief Callback API for registering message handler
  250. */
  251. typedef int (*dsp_api_register_message_handler)(struct device *dev, dsp_message_handler handler);
  252. /**
  253. * @typedef dsp_api_unregister_message_handler
  254. * @brief Callback API for unregistering message handler
  255. */
  256. typedef int (*dsp_api_unregister_message_handler)(struct device *dev);
  257. /**
  258. * @typedef dsp_api_send_message
  259. * @brief Callback API for releasing image
  260. */
  261. typedef int (*dsp_api_send_message)(struct device *dev, struct dsp_message *msg);
  262. /**
  263. * @typedef dsp_acts_request_userinfo
  264. * @brief Callback API for requesting user interested information
  265. */
  266. typedef int (*dsp_acts_request_userinfo)(struct device *dev, int request, void *info);
  267. struct dsp_driver_api {
  268. dsp_api_poweron poweron;
  269. dsp_api_poweroff poweroff;
  270. dsp_api_suspend suspend;
  271. dsp_api_resume resume;
  272. dsp_api_kick kick;
  273. dsp_api_register_message_handler register_message_handler;
  274. dsp_api_unregister_message_handler unregister_message_handler;
  275. dsp_api_request_image request_image;
  276. dsp_api_release_image release_image;
  277. dsp_api_request_mem request_mem;
  278. dsp_api_release_mem release_mem;
  279. dsp_api_send_message send_message;
  280. dsp_acts_request_userinfo request_userinfo;
  281. };
  282. /**
  283. * @endcond
  284. */
  285. /**
  286. * @brief start the dsp device
  287. *
  288. * @param dev Pointer to the device structure for the driver instance.
  289. * @param cmdbuf Address of session command buffer.
  290. *
  291. * @retval 0 if successful.
  292. * @retval Negative errno code if failure.
  293. */
  294. static inline int dsp_poweron(struct device *dev, void *cmdbuf)
  295. {
  296. const struct dsp_driver_api *api = dev->api;
  297. return api->poweron(dev, cmdbuf);
  298. }
  299. /**
  300. * @brief stop the dsp device
  301. *
  302. * @param dev Pointer to the device structure for the driver instance.
  303. *
  304. * @retval 0 if successful.
  305. * @retval Negative errno code if failure.
  306. */
  307. static inline int dsp_poweroff(struct device *dev)
  308. {
  309. const struct dsp_driver_api *api = dev->api;
  310. return api->poweroff(dev);
  311. }
  312. /**
  313. * @brief suspend the dsp device
  314. *
  315. * @param dev Pointer to the device structure for the driver instance.
  316. *
  317. * @retval 0 if successful.
  318. * @retval Negative errno code if failure.
  319. */
  320. static inline int dsp_suspend(struct device *dev)
  321. {
  322. const struct dsp_driver_api *api = dev->api;
  323. return api->suspend(dev);
  324. }
  325. /**
  326. * @brief resume the dsp device
  327. *
  328. * @param dev Pointer to the device structure for the driver instance.
  329. *
  330. * @retval 0 if successful.
  331. * @retval Negative errno code if failure.
  332. */
  333. static inline int dsp_resume(struct device *dev)
  334. {
  335. const struct dsp_driver_api *api = dev->api;
  336. return api->resume(dev);
  337. }
  338. /**
  339. * @brief resume the dsp device
  340. *
  341. * @param dev Pointer to the device structure for the driver instance.
  342. * @param owner Owner who send the event.
  343. * @param event Event id.
  344. * @param params Event params.
  345. *
  346. * @retval 0 if successful.
  347. * @retval Negative errno code if failure.
  348. */
  349. static inline int dsp_kick(struct device *dev, unsigned int owner, unsigned int event, unsigned int params)
  350. {
  351. const struct dsp_driver_api *api = dev->api;
  352. return api->kick(dev, owner, event, params);
  353. }
  354. /**
  355. * @brief request the dsp image
  356. *
  357. * @param dev Pointer to the device structure for the driver instance.
  358. * @param image dsp image information
  359. * @param type dsp image filetype
  360. *
  361. * @retval 0 if successful.
  362. * @retval Negative errno code if failure.
  363. */
  364. static inline int dsp_request_image(struct device *dev, const struct dsp_imageinfo *image, int type)
  365. {
  366. const struct dsp_driver_api *api = dev->api;
  367. return api->request_image(dev, image, type);
  368. }
  369. /**
  370. * @brief release the dsp image
  371. *
  372. * @param dev Pointer to the device structure for the driver instance.
  373. * @param type dsp image filetype
  374. *
  375. * @retval 0 if successful.
  376. * @retval Negative errno code if failure.
  377. */
  378. static inline int dsp_release_image(struct device *dev, int type)
  379. {
  380. const struct dsp_driver_api *api = dev->api;
  381. return api->release_image(dev, type);
  382. }
  383. /**
  384. * @brief request the dsp mem
  385. *
  386. * @param dev Pointer to the device structure for the driver instance.
  387. * @param image dsp image information
  388. * @param type dsp image filetype
  389. *
  390. * @retval 0 if successful.
  391. * @retval Negative errno code if failure.
  392. */
  393. static inline int dsp_request_mem(struct device *dev,int type)
  394. {
  395. const struct dsp_driver_api *api = dev->api;
  396. return api->request_mem(dev, type);
  397. }
  398. /**
  399. * @brief release the dsp image
  400. *
  401. * @param dev Pointer to the device structure for the driver instance.
  402. * @param type dsp image filetype
  403. *
  404. * @retval 0 if successful.
  405. * @retval Negative errno code if failure.
  406. */
  407. static inline int dsp_release_mem(struct device *dev, int type)
  408. {
  409. const struct dsp_driver_api *api = dev->api;
  410. return api->release_mem(dev, type);
  411. }
  412. /**
  413. * @brief register dsp message handler
  414. *
  415. * @param dev Pointer to the device structure for the driver instance.
  416. * @param handler message handler function
  417. *
  418. * @retval 0 if successful.
  419. * @retval Negative errno code if failure.
  420. */
  421. static inline int dsp_register_message_handler(struct device *dev, dsp_message_handler handler)
  422. {
  423. const struct dsp_driver_api *api = dev->api;
  424. return api->register_message_handler(dev, handler);
  425. }
  426. /**
  427. * @brief unregister dsp callback
  428. *
  429. * @param dev Pointer to the device structure for the driver instance.
  430. *
  431. * @retval 0 if successful.
  432. * @retval Negative errno code if failure.
  433. */
  434. static inline int dsp_unregister_message_handler(struct device *dev)
  435. {
  436. const struct dsp_driver_api *api = dev->api;
  437. return api->unregister_message_handler(dev);
  438. }
  439. /**
  440. * @brief send message to dsp
  441. *
  442. * @param dev Pointer to the device structure for the driver instance.
  443. * @param msg message to send
  444. *
  445. * @retval 0 if successful.
  446. * @retval Negative errno code if failure.
  447. */
  448. static inline int dsp_send_message(struct device *dev, struct dsp_message *msg)
  449. {
  450. const struct dsp_driver_api *api = dev->api;
  451. return api->send_message(dev, msg);
  452. }
  453. /**
  454. * @brief request user information writing by dsp
  455. *
  456. * @param dev Pointer to the device structure for the driver instance.
  457. * @param info information to store
  458. *
  459. * @retval 0 if successful.
  460. * @retval Negative errno code if failure.
  461. */
  462. static inline int dsp_request_userinfo(struct device *dev, int request, void *info)
  463. {
  464. const struct dsp_driver_api *api = dev->api;
  465. return api->request_userinfo(dev, request, info);
  466. }
  467. /**
  468. * @}
  469. */
  470. #ifdef __cplusplus
  471. }
  472. #endif
  473. #endif /* __DSP_H__ */