q6lsm.h 7.2 KB

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