q6core.h 10.0 KB

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