dsp.h 15 KB

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