q6lsm.h 7.2 KB

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