anc.h 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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 ANC drivers and applications
  9. */
  10. #ifndef __ANC_H__
  11. #define __ANC_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 __cplusplus
  19. extern "C" {
  20. #endif
  21. /**********************************************************************************/
  22. /* anc image definition */
  23. /**********************************************************************************/
  24. #define ANC_IMAGE_NMLEN (12)
  25. enum {
  26. ANC_STATUS_POWEROFF,
  27. ANC_STATUS_POWERON,
  28. ANC_STATUS_SUSPENDED,
  29. };
  30. enum {
  31. ANC_COMMAND_NONE,
  32. ANC_COMMAND_ANCTDATA,
  33. ANC_COMMAND_DUMPSTART,
  34. ANC_COMMAND_DUMPSTOP,
  35. ANC_COMMAND_SRCHANGE,
  36. ANC_COMMAND_POWEROFF,
  37. ANC_COMMAND_MAX,
  38. };
  39. struct anc_imageinfo {
  40. const char *name;
  41. const void *ptr;
  42. size_t size;
  43. uint32_t entry_point;
  44. };
  45. /* boot arguments of anc image */
  46. struct anc_bootargs {
  47. uint32_t cmd_buf; /* address of command buffer */
  48. uint32_t debug_buf; /*use for debug*/
  49. uint32_t audsp_buf; /*communicate with audio dsp*/
  50. uint32_t ack_buf; /*ack buf*/
  51. };
  52. /**********************************************************************************/
  53. /* anc device driver api */
  54. /**********************************************************************************/
  55. /**
  56. * @cond INTERNAL_HIDDEN
  57. *
  58. * These are for internal use only, so skip these in public documentation.
  59. */
  60. /**
  61. * @typedef anc_api_poweron
  62. * @brief Callback API for power on
  63. */
  64. typedef int (*anc_api_poweron)(struct device *dev);
  65. /**
  66. * @typedef anc_api_poweroff
  67. * @brief Callback API for power off
  68. */
  69. typedef int (*anc_api_poweroff)(struct device *dev);
  70. /**
  71. * @typedef anc_api_request_image
  72. * @brief Callback API for loading image
  73. */
  74. typedef int (*anc_api_request_image)(struct device *dev, const struct anc_imageinfo *image);
  75. /**
  76. * @typedef anc_api_release_image
  77. * @brief Callback API for releasing image
  78. */
  79. typedef int (*anc_api_release_image)(struct device *dev);
  80. /**
  81. * @typedef anc_api_release_mem
  82. * @brief Callback API for releasing image
  83. */
  84. typedef int (*anc_api_request_mem)(struct device *dev, int type);
  85. /**
  86. * @typedef anc_api_release_mem
  87. * @brief Callback API for releasing image
  88. */
  89. typedef int (*anc_api_release_mem)(struct device *dev, int type);
  90. /**
  91. * @typedef anc_api_get_status
  92. * @brief Callback API for get anc status
  93. */
  94. typedef int (*anc_api_get_status)(struct device *dev);
  95. /**
  96. * @typedef anc_api_send_command
  97. * @brief Callback API for send command to anc dsp
  98. */
  99. typedef int (*anc_api_send_command)(struct device *dev, int type, void *data, int size);
  100. struct anc_driver_api {
  101. anc_api_poweron poweron;
  102. anc_api_poweroff poweroff;
  103. anc_api_request_image request_image;
  104. anc_api_release_image release_image;
  105. anc_api_request_mem request_mem;
  106. anc_api_release_mem release_mem;
  107. anc_api_get_status get_status;
  108. anc_api_send_command send_command;
  109. };
  110. /**
  111. * @endcond
  112. */
  113. /**
  114. * @brief start the anc device
  115. *
  116. * @param dev Pointer to the device structure for the driver instance.
  117. * @param cmdbuf Address of session command buffer.
  118. *
  119. * @retval 0 if successful.
  120. * @retval Negative errno code if failure.
  121. */
  122. static inline int anc_poweron(struct device *dev)
  123. {
  124. const struct anc_driver_api *api = dev->api;
  125. return api->poweron(dev);
  126. }
  127. /**
  128. * @brief stop the anc device
  129. *
  130. * @param dev Pointer to the device structure for the driver instance.
  131. *
  132. * @retval 0 if successful.
  133. * @retval Negative errno code if failure.
  134. */
  135. static inline int anc_poweroff(struct device *dev)
  136. {
  137. const struct anc_driver_api *api = dev->api;
  138. return api->poweroff(dev);
  139. }
  140. /**
  141. * @brief request the anc image
  142. *
  143. * @param dev Pointer to the device structure for the driver instance.
  144. * @param image anc image information
  145. * @param type anc image filetype
  146. *
  147. * @retval 0 if successful.
  148. * @retval Negative errno code if failure.
  149. */
  150. static inline int anc_request_image(struct device *dev, const struct anc_imageinfo *image)
  151. {
  152. const struct anc_driver_api *api = dev->api;
  153. return api->request_image(dev, image);
  154. }
  155. /**
  156. * @brief release the anc image
  157. *
  158. * @param dev Pointer to the device structure for the driver instance.
  159. * @param type anc image filetype
  160. *
  161. * @retval 0 if successful.
  162. * @retval Negative errno code if failure.
  163. */
  164. static inline int anc_release_image(struct device *dev)
  165. {
  166. const struct anc_driver_api *api = dev->api;
  167. return api->release_image(dev);
  168. }
  169. /**
  170. * @brief request the anc mem
  171. *
  172. * @param dev Pointer to the device structure for the driver instance.
  173. * @param image anc image information
  174. * @param type anc image filetype
  175. *
  176. * @retval 0 if successful.
  177. * @retval Negative errno code if failure.
  178. */
  179. static inline int anc_request_mem(struct device *dev,int type)
  180. {
  181. const struct anc_driver_api *api = dev->api;
  182. return api->request_mem(dev, type);
  183. }
  184. /**
  185. * @brief release the anc image
  186. *
  187. * @param dev Pointer to the device structure for the driver instance.
  188. * @param type anc image filetype
  189. *
  190. * @retval 0 if successful.
  191. * @retval Negative errno code if failure.
  192. */
  193. static inline int anc_release_mem(struct device *dev, int type)
  194. {
  195. const struct anc_driver_api *api = dev->api;
  196. return api->release_mem(dev, type);
  197. }
  198. /**
  199. * @brief get anc dsp status
  200. *
  201. * @param dev Pointer to the device structure for the driver instance.
  202. *
  203. * @retval return anc dsp status
  204. */
  205. static inline int anc_get_status(struct device *dev)
  206. {
  207. const struct anc_driver_api *api = dev->api;
  208. return api->get_status(dev);
  209. }
  210. /**
  211. * @brief send data to anc dsp
  212. *
  213. * @param dev Pointer to the device structure for the driver instance.
  214. * @param type data type
  215. * @param data data address
  216. * @param size data size
  217. * @retval 0 if send data success
  218. * @retval -1 if send data failed
  219. */
  220. static inline int anc_send_command(struct device *dev, int type, void *data, int size)
  221. {
  222. const struct anc_driver_api *api = dev->api;
  223. return api->send_command(dev, type, data, size);
  224. }
  225. /**
  226. * @brief send data to anc dsp
  227. *
  228. * @param dev Pointer to the device structure for the driver instance.
  229. * @param samplerate samplerate
  230. * @param dac_digctl DAC_DIGCTL register value
  231. * @retval 0 success
  232. * @retval -1 failed
  233. */
  234. static inline int anc_fs_change(struct device *dev, uint32_t samplerate, uint32_t dac_digctl)
  235. {
  236. uint32_t data[2];
  237. const struct anc_driver_api *api = dev->api;
  238. data[0] = samplerate;
  239. data[1] = dac_digctl;
  240. return api->send_command(dev, ANC_COMMAND_SRCHANGE, data, 8);
  241. }
  242. /**
  243. * @}
  244. */
  245. #ifdef __cplusplus
  246. }
  247. #endif
  248. #endif /* __ANC_H__ */