q6lsm.h 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2013-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef __Q6LSM_H__
  6. #define __Q6LSM_H__
  7. #include <linux/list.h>
  8. #include <linux/msm_ion.h>
  9. #include <dsp/apr_audio-v2.h>
  10. #include <audio/sound/lsm_params.h>
  11. #include <ipc/apr.h>
  12. #define MAX_NUM_CONFIDENCE 20
  13. #define ADM_LSM_PORT_ID 0xADCB
  14. #define LSM_MAX_NUM_CHANNELS 8
  15. #define LSM_V3P0_MAX_NUM_CHANNELS 9
  16. #define LSM_API_VERSION_V3 3
  17. #define MAX_LSM_SESSIONS 8
  18. #define MAX_KEYWORDS_SUPPORTED 8
  19. #define LSM_MAX_SOUND_MODELS_SUPPORTED 8
  20. typedef void (*lsm_app_cb)(uint32_t opcode, uint32_t token,
  21. uint32_t *payload, uint16_t client_size, void *priv);
  22. struct lsm_sound_model {
  23. dma_addr_t phys;
  24. void *data;
  25. size_t size; /* size of buffer */
  26. uint32_t actual_size; /* actual number of bytes read by DSP */
  27. struct dma_buf *dma_buf;
  28. uint32_t mem_map_handle;
  29. uint32_t model_id;
  30. struct list_head list;
  31. };
  32. struct snd_lsm_event_status_v2 {
  33. uint16_t status;
  34. uint16_t payload_size;
  35. uint8_t confidence_value[0];
  36. };
  37. struct lsm_lab_buffer {
  38. dma_addr_t phys;
  39. void *data;
  40. size_t size;
  41. struct dma_buf *dma_buf;
  42. uint32_t mem_map_handle;
  43. };
  44. struct lsm_hw_params {
  45. u16 sample_rate;
  46. u16 sample_size;
  47. u32 buf_sz;
  48. u32 period_count;
  49. u16 num_chs;
  50. };
  51. struct lsm_cal_data_info {
  52. dma_addr_t phys;
  53. void *data;
  54. size_t size;
  55. struct dma_buf *dma_buf;
  56. uint32_t mem_map_handle;
  57. };
  58. struct lsm_stage_config {
  59. uint32_t app_type;
  60. uint32_t topology_id;
  61. bool lpi_enable;
  62. bool lab_enable;
  63. struct lsm_sound_model sound_model;
  64. struct lsm_cal_data_info cal_info;
  65. struct list_head sound_models;
  66. };
  67. struct lsm_client {
  68. int session;
  69. lsm_app_cb cb;
  70. atomic_t cmd_state;
  71. void *priv;
  72. struct apr_svc *apr;
  73. struct apr_svc *mmap_apr;
  74. struct mutex cmd_lock;
  75. wait_queue_head_t cmd_wait;
  76. uint32_t cmd_err_code;
  77. uint16_t mode;
  78. uint16_t connect_to_port;
  79. uint8_t num_confidence_levels;
  80. uint8_t *confidence_levels;
  81. bool opened;
  82. bool started;
  83. uint32_t app_id;
  84. bool lab_enable;
  85. bool lab_started;
  86. struct lsm_lab_buffer *lab_buffer;
  87. struct lsm_hw_params out_hw_params;
  88. struct lsm_hw_params in_hw_params;
  89. bool use_topology;
  90. int session_state;
  91. bool poll_enable;
  92. int perf_mode;
  93. uint32_t event_mode;
  94. uint32_t event_type;
  95. uint32_t num_stages;
  96. struct lsm_stage_config stage_cfg[LSM_MAX_STAGES_PER_SESSION];
  97. uint64_t fe_id;
  98. uint16_t unprocessed_data;
  99. uint32_t num_sound_models;
  100. uint32_t num_keywords;
  101. uint32_t *multi_snd_model_confidence_levels;
  102. };
  103. struct lsm_stream_cmd_open_tx {
  104. struct apr_hdr hdr;
  105. uint16_t app_id;
  106. uint16_t reserved;
  107. uint32_t sampling_rate;
  108. } __packed;
  109. struct lsm_stream_cmd_open_tx_v2 {
  110. struct apr_hdr hdr;
  111. uint32_t topology_id;
  112. } __packed;
  113. struct lsm_stream_stage_info {
  114. uint32_t topology_id;
  115. uint32_t island_enable;
  116. } __packed;
  117. struct lsm_stream_cmd_open_tx_v3 {
  118. struct apr_hdr hdr;
  119. uint32_t num_stages;
  120. struct lsm_stream_stage_info stage_info[0];
  121. } __packed;
  122. struct lsm_custom_topologies {
  123. struct apr_hdr hdr;
  124. uint32_t data_payload_addr_lsw;
  125. uint32_t data_payload_addr_msw;
  126. uint32_t mem_map_handle;
  127. uint32_t buffer_size;
  128. } __packed;
  129. struct lsm_session_cmd_set_params_v2 {
  130. struct apr_hdr apr_hdr;
  131. uint32_t payload_size;
  132. struct mem_mapping_hdr mem_hdr;
  133. u32 param_data[0];
  134. } __packed;
  135. struct lsm_session_cmd_set_params_v3 {
  136. struct apr_hdr apr_hdr;
  137. struct mem_mapping_hdr mem_hdr;
  138. uint32_t payload_size;
  139. u32 param_data[0];
  140. } __packed;
  141. struct lsm_param_op_mode {
  142. uint32_t minor_version;
  143. uint16_t mode;
  144. uint16_t reserved;
  145. } __packed;
  146. struct lsm_param_connect_to_port {
  147. uint32_t minor_version;
  148. /* AFE port id that receives voice wake up data */
  149. uint16_t port_id;
  150. uint16_t unprocessed_data;
  151. } __packed;
  152. struct lsm_param_poll_enable {
  153. uint32_t minor_version;
  154. /* indicates to voice wakeup that HW MAD/SW polling is enabled or not */
  155. uint32_t polling_enable;
  156. } __packed;
  157. struct lsm_param_fwk_mode_cfg {
  158. uint32_t minor_version;
  159. uint32_t mode;
  160. } __packed;
  161. struct lsm_param_media_fmt {
  162. uint32_t minor_version;
  163. uint32_t sample_rate;
  164. uint16_t num_channels;
  165. uint16_t bit_width;
  166. uint8_t channel_mapping[LSM_MAX_NUM_CHANNELS];
  167. } __packed;
  168. struct lsm_param_media_fmt_v2 {
  169. uint32_t minor_version;
  170. uint32_t sample_rate;
  171. uint16_t bit_width;
  172. uint16_t num_channels;
  173. uint8_t channel_mapping[0];
  174. } __packed;
  175. struct lsm_param_multi_snd_model_conf_levels {
  176. uint32_t model_id;
  177. uint32_t num_keywords;
  178. uint32_t confidence_levels[0];
  179. } __packed;
  180. struct lsm_param_confidence_levels {
  181. uint8_t num_confidence_levels;
  182. uint8_t confidence_levels[0];
  183. } __packed;
  184. struct lsm_param_epd_thres {
  185. uint32_t minor_version;
  186. uint32_t epd_begin;
  187. uint32_t epd_end;
  188. } __packed;
  189. struct lsm_param_gain {
  190. uint32_t minor_version;
  191. uint16_t gain;
  192. uint16_t reserved;
  193. } __packed;
  194. struct lsm_cmd_reg_snd_model {
  195. struct apr_hdr hdr;
  196. uint32_t model_size;
  197. uint32_t model_addr_lsw;
  198. uint32_t model_addr_msw;
  199. uint32_t mem_map_handle;
  200. } __packed;
  201. struct lsm_param_lab_enable {
  202. uint16_t enable;
  203. uint16_t reserved;
  204. } __packed;
  205. struct lsm_param_lab_config {
  206. uint32_t minor_version;
  207. uint32_t wake_up_latency_ms;
  208. } __packed;
  209. struct lsm_param_lab_out_ch_cfg {
  210. uint32_t minor_version;
  211. uint32_t num_channels;
  212. uint8_t channel_indices[0];
  213. } __packed;
  214. struct lsm_cmd_read {
  215. struct apr_hdr hdr;
  216. uint32_t buf_addr_lsw;
  217. uint32_t buf_addr_msw;
  218. uint32_t mem_map_handle;
  219. uint32_t buf_size;
  220. } __packed;
  221. struct lsm_cmd_read_done {
  222. struct apr_hdr hdr;
  223. uint32_t status;
  224. uint32_t buf_addr_lsw;
  225. uint32_t buf_addr_msw;
  226. uint32_t mem_map_handle;
  227. uint32_t total_size;
  228. uint32_t offset;
  229. uint32_t timestamp_lsw;
  230. uint32_t timestamp_msw;
  231. uint32_t flags;
  232. } __packed;
  233. struct lsm_param_det_event_type {
  234. uint32_t minor_version;
  235. uint32_t event_type;
  236. uint32_t mode;
  237. } __packed;
  238. struct lsm_client *q6lsm_client_alloc(lsm_app_cb cb, void *priv);
  239. void q6lsm_client_free(struct lsm_client *client);
  240. int q6lsm_open(struct lsm_client *client, uint16_t app_id);
  241. int q6lsm_start(struct lsm_client *client, bool wait);
  242. int q6lsm_stop(struct lsm_client *client, bool wait);
  243. int q6lsm_snd_model_buf_alloc(struct lsm_client *client, size_t len,
  244. struct lsm_params_info_v2 *p_info, struct lsm_sound_model *sm);
  245. int q6lsm_snd_model_buf_free(struct lsm_client *client,
  246. struct lsm_params_info_v2 *p_info, struct lsm_sound_model *sm);
  247. int q6lsm_close(struct lsm_client *client);
  248. int q6lsm_register_sound_model(struct lsm_client *client,
  249. enum lsm_detection_mode mode,
  250. bool detectfailure);
  251. int q6lsm_set_data(struct lsm_client *client,
  252. enum lsm_detection_mode mode,
  253. bool detectfailure);
  254. int q6lsm_deregister_sound_model(struct lsm_client *client);
  255. void set_lsm_port(int lsm_port);
  256. int get_lsm_port(void);
  257. int q6lsm_lab_control(struct lsm_client *client, u32 enable,
  258. struct lsm_params_info_v2 *p_info);
  259. int q6lsm_stop_lab(struct lsm_client *client);
  260. int q6lsm_read(struct lsm_client *client, struct lsm_cmd_read *read);
  261. int q6lsm_lab_buffer_alloc(struct lsm_client *client, bool alloc);
  262. int q6lsm_set_one_param(struct lsm_client *client,
  263. struct lsm_params_info_v2 *p_info, void *data,
  264. uint32_t param_type);
  265. void q6lsm_sm_set_param_data(struct lsm_client *client,
  266. struct lsm_params_info_v2 *p_info, size_t *offset,
  267. struct lsm_sound_model *sm);
  268. int q6lsm_set_port_connected(struct lsm_client *client);
  269. int q6lsm_set_fwk_mode_cfg(struct lsm_client *client, uint32_t event_mode);
  270. int q6lsm_set_media_fmt_params(struct lsm_client *client);
  271. int q6lsm_set_media_fmt_v2_params(struct lsm_client *client);
  272. int q6lsm_lab_out_ch_cfg(struct lsm_client *client, u8 *ch_map,
  273. struct lsm_params_info_v2 *p_info);
  274. bool q6lsm_adsp_supports_multi_stage_detection(void);
  275. int q6lsm_set_afe_data_format(uint64_t fe_id, uint16_t afe_data_format);
  276. void q6lsm_get_afe_data_format(uint64_t fe_id, uint16_t *afe_data_format);
  277. #endif /* __Q6LSM_H__ */