q6core.h 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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. bool q6core_is_adsp_ready(void);
  19. int q6core_get_service_version(uint32_t service_id,
  20. struct avcs_fwk_ver_info *ver_info,
  21. size_t size);
  22. size_t q6core_get_fwk_version_size(uint32_t service_id);
  23. struct audio_uevent_data {
  24. struct kobject kobj;
  25. struct kobj_type ktype;
  26. };
  27. int q6core_init_uevent_data(struct audio_uevent_data *uevent_data, char *name);
  28. void q6core_destroy_uevent_data(struct audio_uevent_data *uevent_data);
  29. int q6core_send_uevent(struct audio_uevent_data *uevent_data, char *name);
  30. int q6core_get_avcs_api_version_per_service(uint32_t service_id);
  31. #define ADSP_CMD_SET_DTS_EAGLE_DATA_ID 0x00012919
  32. #define DTS_EAGLE_LICENSE_ID 0x00028346
  33. struct adsp_dts_eagle {
  34. struct apr_hdr hdr;
  35. uint32_t id;
  36. uint32_t overwrite;
  37. uint32_t size;
  38. char data[];
  39. };
  40. int core_dts_eagle_set(int size, char *data);
  41. int core_dts_eagle_get(int id, int size, char *data);
  42. #define ADSP_CMD_SET_DOLBY_MANUFACTURER_ID 0x00012918
  43. struct adsp_dolby_manufacturer_id {
  44. struct apr_hdr hdr;
  45. int manufacturer_id;
  46. };
  47. uint32_t core_set_dolby_manufacturer_id(int manufacturer_id);
  48. /* Dolby Surround1 Module License ID. This ID is used as an identifier
  49. * for DS1 license via ADSP generic license mechanism.
  50. * Please refer AVCS_CMD_SET_LICENSE for more details.
  51. */
  52. #define DOLBY_DS1_LICENSE_ID 0x00000001
  53. #define AVCS_CMD_SET_LICENSE 0x00012919
  54. struct avcs_cmd_set_license {
  55. struct apr_hdr hdr;
  56. uint32_t id; /**< A unique ID used to refer to this license */
  57. uint32_t overwrite;
  58. /* 0 = do not overwrite an existing license with this id.
  59. * 1 = overwrite an existing license with this id.
  60. */
  61. uint32_t size;
  62. /**< Size in bytes of the license data following this header. */
  63. /* uint8_t* data , data and padding follows this structure
  64. * total packet size needs to be multiple of 4 Bytes
  65. */
  66. };
  67. #define AVCS_CMD_GET_LICENSE_VALIDATION_RESULT 0x0001291A
  68. struct avcs_cmd_get_license_validation_result {
  69. struct apr_hdr hdr;
  70. uint32_t id; /**< A unique ID used to refer to this license */
  71. };
  72. #define AVCS_CMDRSP_GET_LICENSE_VALIDATION_RESULT 0x0001291B
  73. struct avcs_cmdrsp_get_license_validation_result {
  74. uint32_t result;
  75. /* ADSP_EOK if the license validation result was successfully retrieved.
  76. * ADSP_ENOTEXIST if there is no license with the given id.
  77. * ADSP_ENOTIMPL if there is no validation function for a license
  78. * with this id.
  79. */
  80. uint32_t size;
  81. /* Length in bytes of the result that follows this structure*/
  82. };
  83. /* Set Q6 topologies */
  84. /*
  85. * Registers custom topologies in the aDSP for
  86. * use in audio, voice, AFE and LSM.
  87. */
  88. #define AVCS_CMD_SHARED_MEM_MAP_REGIONS 0x00012924
  89. #define AVCS_CMDRSP_SHARED_MEM_MAP_REGIONS 0x00012925
  90. #define AVCS_CMD_SHARED_MEM_UNMAP_REGIONS 0x00012926
  91. /* Commands the AVCS to map multiple shared memory regions with remote
  92. * processor ID. All mapped regions must be from the same memory pool.
  93. *
  94. * Return:
  95. * ADSP_EOK : SUCCESS
  96. * ADSP_EHANDLE : Failed due to incorrect handle.
  97. * ADSP_EBADPARAM : Failed due to bad parameters.
  98. *
  99. * Dependencies:
  100. * The mem_map_handle should be obtained earlier
  101. * using AVCS_CMD_SHARED_MEM_MAP_REGIONS with pool ID
  102. * ADSP_MEMORY_MAP_MDF_SHMEM_4K_POOL.
  103. */
  104. #define AVCS_CMD_MAP_MDF_SHARED_MEMORY 0x00012930
  105. #define AVCS_CMD_REGISTER_TOPOLOGIES 0x00012923
  106. /* The payload for the AVCS_CMD_REGISTER_TOPOLOGIES command */
  107. struct avcs_cmd_register_topologies {
  108. struct apr_hdr hdr;
  109. uint32_t payload_addr_lsw;
  110. /* Lower 32 bits of the topology buffer address. */
  111. uint32_t payload_addr_msw;
  112. /* Upper 32 bits of the topology buffer address. */
  113. uint32_t mem_map_handle;
  114. /* Unique identifier for an address.
  115. * -This memory map handle is returned by the aDSP through the
  116. * memory map command.
  117. * -NULL mem_map_handle is interpreted as in-band parameter
  118. * passing.
  119. * -Client has the flexibility to choose in-band or out-of-band.
  120. * -Out-of-band is recommended in this case.
  121. */
  122. uint32_t payload_size;
  123. /* Size in bytes of the valid data in the topology buffer. */
  124. } __packed;
  125. #define AVCS_CMD_DEREGISTER_TOPOLOGIES 0x0001292a
  126. /* The payload for the AVCS_CMD_DEREGISTER_TOPOLOGIES command */
  127. struct avcs_cmd_deregister_topologies {
  128. struct apr_hdr hdr;
  129. uint32_t payload_addr_lsw;
  130. /* Lower 32 bits of the topology buffer address. */
  131. uint32_t payload_addr_msw;
  132. /* Upper 32 bits of the topology buffer address. */
  133. uint32_t mem_map_handle;
  134. /* Unique identifier for an address.
  135. * -This memory map handle is returned by the aDSP through the
  136. * memory map command.
  137. * -NULL mem_map_handle is interpreted as in-band parameter
  138. * passing.
  139. * -Client has the flexibility to choose in-band or out-of-band.
  140. * -Out-of-band is recommended in this case.
  141. */
  142. uint32_t payload_size;
  143. /* Size in bytes of the valid data in the topology buffer. */
  144. uint32_t mode;
  145. /* 1: Deregister selected topologies
  146. * 2: Deregister all topologies
  147. */
  148. } __packed;
  149. #define AVCS_MODE_DEREGISTER_ALL_CUSTOM_TOPOLOGIES 2
  150. #define AVCS_CMD_LOAD_TOPO_MODULES 0x0001296C
  151. #define AVCS_CMD_UNLOAD_TOPO_MODULES 0x0001296D
  152. #define CORE_LOAD_TOPOLOGY 0
  153. #define CORE_UNLOAD_TOPOLOGY 1
  154. struct avcs_cmd_load_unload_topo_modules {
  155. struct apr_hdr hdr;
  156. uint32_t topology_id;
  157. } __packed;
  158. int q6core_map_memory_regions(phys_addr_t *buf_add, uint32_t mempool_id,
  159. uint32_t *bufsz, uint32_t bufcnt, uint32_t *map_handle);
  160. int q6core_memory_unmap_regions(uint32_t mem_map_handle);
  161. int q6core_map_mdf_shared_memory(uint32_t map_handle, phys_addr_t *buf_add,
  162. uint32_t proc_id, uint32_t *bufsz, uint32_t bufcnt);
  163. int32_t core_set_license(uint32_t key, uint32_t module_id);
  164. int32_t core_get_license_status(uint32_t module_id);
  165. int32_t q6core_load_unload_topo_modules(uint32_t topology_id,
  166. bool preload_type);
  167. #if IS_ENABLED(CONFIG_USE_Q6_32CH_SUPPORT)
  168. static inline bool q6core_use_Q6_32ch_support(void)
  169. {
  170. return true;
  171. }
  172. #else
  173. static inline bool q6core_use_Q6_32ch_support(void)
  174. {
  175. return false;
  176. }
  177. #endif
  178. #endif /* __Q6CORE_H__ */