q6core.h 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __Q6CORE_H__
  6. #define __Q6CORE_H__
  7. #include <ipc/apr.h>
  8. #include <dsp/apr_audio-v2.h>
  9. #define AVCS_CMD_ADSP_EVENT_GET_STATE 0x0001290C
  10. #define AVCS_CMDRSP_ADSP_EVENT_GET_STATE 0x0001290D
  11. #define AVCS_API_VERSION_V4 4
  12. #define APRV2_IDS_SERVICE_ID_ADSP_CORE_V (0x3)
  13. bool q6core_is_adsp_ready(void);
  14. int avcs_core_query_timer_offset(int64_t *av_offset, int32_t clock_id);
  15. int q6core_get_service_version(uint32_t service_id,
  16. struct avcs_fwk_ver_info *ver_info,
  17. size_t size);
  18. size_t q6core_get_fwk_version_size(uint32_t service_id);
  19. struct audio_uevent_data {
  20. struct kobject kobj;
  21. struct kobj_type ktype;
  22. };
  23. int q6core_init_uevent_data(struct audio_uevent_data *uevent_data, char *name);
  24. void q6core_destroy_uevent_data(struct audio_uevent_data *uevent_data);
  25. int q6core_send_uevent(struct audio_uevent_data *uevent_data, char *name);
  26. int q6core_get_avcs_api_version_per_service(uint32_t service_id);
  27. #define ADSP_CMD_SET_DTS_EAGLE_DATA_ID 0x00012919
  28. #define DTS_EAGLE_LICENSE_ID 0x00028346
  29. struct adsp_dts_eagle {
  30. struct apr_hdr hdr;
  31. uint32_t id;
  32. uint32_t overwrite;
  33. uint32_t size;
  34. char data[];
  35. };
  36. int core_dts_eagle_set(int size, char *data);
  37. int core_dts_eagle_get(int id, int size, char *data);
  38. #define ADSP_CMD_SET_DOLBY_MANUFACTURER_ID 0x00012918
  39. struct adsp_dolby_manufacturer_id {
  40. struct apr_hdr hdr;
  41. int manufacturer_id;
  42. };
  43. uint32_t core_set_dolby_manufacturer_id(int manufacturer_id);
  44. /* Dolby Surround1 Module License ID. This ID is used as an identifier
  45. * for DS1 license via ADSP generic license mechanism.
  46. * Please refer AVCS_CMD_SET_LICENSE for more details.
  47. */
  48. #define DOLBY_DS1_LICENSE_ID 0x00000001
  49. #define AVCS_CMD_SET_LICENSE 0x00012919
  50. struct avcs_cmd_set_license {
  51. struct apr_hdr hdr;
  52. uint32_t id; /**< A unique ID used to refer to this license */
  53. uint32_t overwrite;
  54. /* 0 = do not overwrite an existing license with this id.
  55. * 1 = overwrite an existing license with this id.
  56. */
  57. uint32_t size;
  58. /**< Size in bytes of the license data following this header. */
  59. /* uint8_t* data , data and padding follows this structure
  60. * total packet size needs to be multiple of 4 Bytes
  61. */
  62. };
  63. #define AVCS_CMD_GET_LICENSE_VALIDATION_RESULT 0x0001291A
  64. struct avcs_cmd_get_license_validation_result {
  65. struct apr_hdr hdr;
  66. uint32_t id; /**< A unique ID used to refer to this license */
  67. };
  68. #define AVCS_CMDRSP_GET_LICENSE_VALIDATION_RESULT 0x0001291B
  69. struct avcs_cmdrsp_get_license_validation_result {
  70. uint32_t result;
  71. /* ADSP_EOK if the license validation result was successfully retrieved.
  72. * ADSP_ENOTEXIST if there is no license with the given id.
  73. * ADSP_ENOTIMPL if there is no validation function for a license
  74. * with this id.
  75. */
  76. uint32_t size;
  77. /* Length in bytes of the result that follows this structure*/
  78. };
  79. /* Set Q6 topologies */
  80. /*
  81. * Registers custom topologies in the aDSP for
  82. * use in audio, voice, AFE and LSM.
  83. */
  84. #define AVCS_CMD_SHARED_MEM_MAP_REGIONS 0x00012924
  85. #define AVCS_CMDRSP_SHARED_MEM_MAP_REGIONS 0x00012925
  86. #define AVCS_CMD_SHARED_MEM_UNMAP_REGIONS 0x00012926
  87. /* Commands the AVCS to map multiple shared memory regions with remote
  88. * processor ID. All mapped regions must be from the same memory pool.
  89. *
  90. * Return:
  91. * ADSP_EOK : SUCCESS
  92. * ADSP_EHANDLE : Failed due to incorrect handle.
  93. * ADSP_EBADPARAM : Failed due to bad parameters.
  94. *
  95. * Dependencies:
  96. * The mem_map_handle should be obtained earlier
  97. * using AVCS_CMD_SHARED_MEM_MAP_REGIONS with pool ID
  98. * ADSP_MEMORY_MAP_MDF_SHMEM_4K_POOL.
  99. */
  100. #define AVCS_CMD_MAP_MDF_SHARED_MEMORY 0x00012930
  101. #define AVCS_CMD_REGISTER_TOPOLOGIES 0x00012923
  102. /* The payload for the AVCS_CMD_REGISTER_TOPOLOGIES command */
  103. struct avcs_cmd_register_topologies {
  104. struct apr_hdr hdr;
  105. uint32_t payload_addr_lsw;
  106. /* Lower 32 bits of the topology buffer address. */
  107. uint32_t payload_addr_msw;
  108. /* Upper 32 bits of the topology buffer address. */
  109. uint32_t mem_map_handle;
  110. /* Unique identifier for an address.
  111. * -This memory map handle is returned by the aDSP through the
  112. * memory map command.
  113. * -NULL mem_map_handle is interpreted as in-band parameter
  114. * passing.
  115. * -Client has the flexibility to choose in-band or out-of-band.
  116. * -Out-of-band is recommended in this case.
  117. */
  118. uint32_t payload_size;
  119. /* Size in bytes of the valid data in the topology buffer. */
  120. } __packed;
  121. #define AVCS_CMD_DEREGISTER_TOPOLOGIES 0x0001292a
  122. /* The payload for the AVCS_CMD_DEREGISTER_TOPOLOGIES command */
  123. struct avcs_cmd_deregister_topologies {
  124. struct apr_hdr hdr;
  125. uint32_t payload_addr_lsw;
  126. /* Lower 32 bits of the topology buffer address. */
  127. uint32_t payload_addr_msw;
  128. /* Upper 32 bits of the topology buffer address. */
  129. uint32_t mem_map_handle;
  130. /* Unique identifier for an address.
  131. * -This memory map handle is returned by the aDSP through the
  132. * memory map command.
  133. * -NULL mem_map_handle is interpreted as in-band parameter
  134. * passing.
  135. * -Client has the flexibility to choose in-band or out-of-band.
  136. * -Out-of-band is recommended in this case.
  137. */
  138. uint32_t payload_size;
  139. /* Size in bytes of the valid data in the topology buffer. */
  140. uint32_t mode;
  141. /* 1: Deregister selected topologies
  142. * 2: Deregister all topologies
  143. */
  144. } __packed;
  145. #define AVCS_MODE_DEREGISTER_ALL_CUSTOM_TOPOLOGIES 2
  146. #define AVCS_CMD_LOAD_TOPO_MODULES 0x0001296C
  147. #define AVCS_CMD_UNLOAD_TOPO_MODULES 0x0001296D
  148. #define CORE_LOAD_TOPOLOGY 0
  149. #define CORE_UNLOAD_TOPOLOGY 1
  150. struct avcs_cmd_load_unload_topo_modules {
  151. struct apr_hdr hdr;
  152. uint32_t topology_id;
  153. } __packed;
  154. /* This command allows a remote client(HLOS) creates a client to LPASS NPA
  155. * resource node. Currently, this command supports only the NPA Sleep resource
  156. * "/island/core/drivers" node ID.
  157. */
  158. #define AVCS_CMD_CREATE_LPASS_NPA_CLIENT 0x00012985
  159. #define AVCS_SLEEP_ISLAND_CORE_DRIVER_NODE_ID 0x00000001
  160. struct avcs_cmd_create_lpass_npa_client_t {
  161. struct apr_hdr hdr;
  162. uint32_t node_id;
  163. /* Unique ID of the NPA node.
  164. * @values
  165. * - #AVCS_SLEEP_ISLAND_CORE_DRIVER_NODE_ID
  166. */
  167. char client_name[16];
  168. /* Client name, up to a maximum of sixteen characters.*/
  169. };
  170. /* In response to the #AVCS_CMD_CREATE_LPASS_NPA_CLIENT command, the AVCS
  171. * returns the handle to remote HLOS client.
  172. */
  173. #define AVCS_CMDRSP_CREATE_LPASS_NPA_CLIENT 0x00012986
  174. struct avcs_cmdrsp_create_lpass_npa_client_t {
  175. uint32_t status;
  176. /* Status message (error code).
  177. * @values
  178. * - ADSP_EOK -- Create was successful
  179. * - ADSP_EFAILED -- Create failed
  180. */
  181. uint32_t client_handle;
  182. /* Handle of the client.*/
  183. };
  184. /* The remote HLOS client use this command to issue the request to the npa
  185. * resource. Remote client(HLOS) must send the valid npa client handle and
  186. * resource id info.
  187. */
  188. #define AVCS_CMD_REQUEST_LPASS_NPA_RESOURCES 0x00012987
  189. #define AVCS_SLEEP_NODE_ISLAND_TRANSITION_RESOURCE_ID 0x00000001
  190. #define SLEEP_RESTRICT_ISLAND 0x0
  191. #define SLEEP_ALLOW_ISLAND 0x1
  192. /* Immediately following this structure is the resource request configuration
  193. * data payload. Payload varies depend on the resource_id requested.
  194. * Currently supported only island transition payload.
  195. */
  196. struct avcs_cmd_request_lpass_npa_resources_t {
  197. struct apr_hdr hdr;
  198. uint32_t client_handle;
  199. /* Handle of the client.
  200. * @values
  201. * - Valid uint32 number
  202. */
  203. uint32_t resource_id;
  204. /* Unique ID of the NPA resource ID.
  205. * @values
  206. * - #AVCS_SLEEP_NODE_ISLAND_TRANSITION_RESOURCE_ID
  207. */
  208. };
  209. /* This structure contains the sleep node resource payload data.
  210. */
  211. struct avcs_sleep_node_island_transition_config_t {
  212. struct avcs_cmd_request_lpass_npa_resources_t req_lpass_npa_rsc;
  213. uint32_t island_allow_mode;
  214. /* Specifies the island state.
  215. * @values
  216. * - #SLEEP_RESTRICT_ISLAND
  217. * - #SLEEP_ALLOW_ISLAND
  218. */
  219. };
  220. /* This command allows remote client(HLOS) to destroy the npa node client
  221. * handle, which is created using the #AVCS_CMD_CREATE_LPASS_NPA_CLIENT command.
  222. * Remote client(HLOS) must send the valid npa client handle.
  223. */
  224. #define AVCS_CMD_DESTROY_LPASS_NPA_CLIENT 0x00012988
  225. struct avcs_cmd_destroy_lpass_npa_client_t {
  226. struct apr_hdr hdr;
  227. uint32_t client_handle;
  228. /* Handle of the client.
  229. * @values
  230. * - Valid uint32 number
  231. */
  232. };
  233. int q6core_map_memory_regions(phys_addr_t *buf_add, uint32_t mempool_id,
  234. uint32_t *bufsz, uint32_t bufcnt, uint32_t *map_handle);
  235. int q6core_memory_unmap_regions(uint32_t mem_map_handle);
  236. int q6core_map_mdf_memory_regions(uint64_t *buf_add, uint32_t mempool_id,
  237. uint32_t *bufsz, uint32_t bufcnt, uint32_t *map_handle);
  238. int q6core_map_mdf_shared_memory(uint32_t map_handle, uint64_t *buf_add,
  239. uint32_t proc_id, uint32_t *bufsz, uint32_t bufcnt);
  240. int32_t core_set_license(uint32_t key, uint32_t module_id);
  241. int32_t core_get_license_status(uint32_t module_id);
  242. int32_t q6core_load_unload_topo_modules(uint32_t topology_id,
  243. bool preload_type);
  244. int q6core_create_lpass_npa_client(uint32_t node_id, char *client_name,
  245. uint32_t *client_handle);
  246. int q6core_destroy_lpass_npa_client(uint32_t client_handle);
  247. int q6core_request_island_transition(uint32_t client_handle,
  248. uint32_t island_allow_mode);
  249. #if IS_ENABLED(CONFIG_USE_Q6_32CH_SUPPORT)
  250. static inline bool q6core_use_Q6_32ch_support(void)
  251. {
  252. return true;
  253. }
  254. #else
  255. static inline bool q6core_use_Q6_32ch_support(void)
  256. {
  257. return false;
  258. }
  259. #endif
  260. #endif /* __Q6CORE_H__ */