q6lsm.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2013-2018, 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. };
  92. struct lsm_stream_cmd_open_tx {
  93. struct apr_hdr hdr;
  94. uint16_t app_id;
  95. uint16_t reserved;
  96. uint32_t sampling_rate;
  97. } __packed;
  98. struct lsm_stream_cmd_open_tx_v2 {
  99. struct apr_hdr hdr;
  100. uint32_t topology_id;
  101. } __packed;
  102. struct lsm_stream_stage_info {
  103. uint32_t topology_id;
  104. uint32_t island_enable;
  105. } __packed;
  106. struct lsm_stream_cmd_open_tx_v3 {
  107. struct apr_hdr hdr;
  108. uint32_t num_stages;
  109. struct lsm_stream_stage_info stage_info[0];
  110. } __packed;
  111. struct lsm_custom_topologies {
  112. struct apr_hdr hdr;
  113. uint32_t data_payload_addr_lsw;
  114. uint32_t data_payload_addr_msw;
  115. uint32_t mem_map_handle;
  116. uint32_t buffer_size;
  117. } __packed;
  118. struct lsm_session_cmd_set_params_v2 {
  119. struct apr_hdr apr_hdr;
  120. uint32_t payload_size;
  121. struct mem_mapping_hdr mem_hdr;
  122. u32 param_data[0];
  123. } __packed;
  124. struct lsm_session_cmd_set_params_v3 {
  125. struct apr_hdr apr_hdr;
  126. struct mem_mapping_hdr mem_hdr;
  127. uint32_t payload_size;
  128. u32 param_data[0];
  129. } __packed;
  130. struct lsm_param_op_mode {
  131. uint32_t minor_version;
  132. uint16_t mode;
  133. uint16_t reserved;
  134. } __packed;
  135. struct lsm_param_connect_to_port {
  136. uint32_t minor_version;
  137. /* AFE port id that receives voice wake up data */
  138. uint16_t port_id;
  139. uint16_t reserved;
  140. } __packed;
  141. struct lsm_param_poll_enable {
  142. uint32_t minor_version;
  143. /* indicates to voice wakeup that HW MAD/SW polling is enabled or not */
  144. uint32_t polling_enable;
  145. } __packed;
  146. struct lsm_param_fwk_mode_cfg {
  147. uint32_t minor_version;
  148. uint32_t mode;
  149. } __packed;
  150. struct lsm_param_media_fmt {
  151. uint32_t minor_version;
  152. uint32_t sample_rate;
  153. uint16_t num_channels;
  154. uint16_t bit_width;
  155. uint8_t channel_mapping[LSM_MAX_NUM_CHANNELS];
  156. } __packed;
  157. struct lsm_param_media_fmt_v2 {
  158. uint32_t minor_version;
  159. uint32_t sample_rate;
  160. uint16_t bit_width;
  161. uint16_t num_channels;
  162. uint8_t channel_mapping[0];
  163. } __packed;
  164. struct lsm_param_confidence_levels {
  165. uint8_t num_confidence_levels;
  166. uint8_t confidence_levels[0];
  167. } __packed;
  168. struct lsm_param_epd_thres {
  169. uint32_t minor_version;
  170. uint32_t epd_begin;
  171. uint32_t epd_end;
  172. } __packed;
  173. struct lsm_param_gain {
  174. uint32_t minor_version;
  175. uint16_t gain;
  176. uint16_t reserved;
  177. } __packed;
  178. struct lsm_cmd_reg_snd_model {
  179. struct apr_hdr hdr;
  180. uint32_t model_size;
  181. uint32_t model_addr_lsw;
  182. uint32_t model_addr_msw;
  183. uint32_t mem_map_handle;
  184. } __packed;
  185. struct lsm_param_lab_enable {
  186. uint16_t enable;
  187. uint16_t reserved;
  188. } __packed;
  189. struct lsm_param_lab_config {
  190. uint32_t minor_version;
  191. uint32_t wake_up_latency_ms;
  192. } __packed;
  193. struct lsm_param_lab_out_ch_cfg {
  194. uint32_t minor_version;
  195. uint32_t num_channels;
  196. uint8_t channel_indices[0];
  197. } __packed;
  198. struct lsm_cmd_read {
  199. struct apr_hdr hdr;
  200. uint32_t buf_addr_lsw;
  201. uint32_t buf_addr_msw;
  202. uint32_t mem_map_handle;
  203. uint32_t buf_size;
  204. } __packed;
  205. struct lsm_cmd_read_done {
  206. struct apr_hdr hdr;
  207. uint32_t status;
  208. uint32_t buf_addr_lsw;
  209. uint32_t buf_addr_msw;
  210. uint32_t mem_map_handle;
  211. uint32_t total_size;
  212. uint32_t offset;
  213. uint32_t timestamp_lsw;
  214. uint32_t timestamp_msw;
  215. uint32_t flags;
  216. } __packed;
  217. struct lsm_param_det_event_type {
  218. uint32_t minor_version;
  219. uint32_t event_type;
  220. uint32_t mode;
  221. } __packed;
  222. struct lsm_client *q6lsm_client_alloc(lsm_app_cb cb, void *priv);
  223. void q6lsm_client_free(struct lsm_client *client);
  224. int q6lsm_open(struct lsm_client *client, uint16_t app_id);
  225. int q6lsm_start(struct lsm_client *client, bool wait);
  226. int q6lsm_stop(struct lsm_client *client, bool wait);
  227. int q6lsm_snd_model_buf_alloc(struct lsm_client *client, size_t len,
  228. struct lsm_params_info_v2 *p_info);
  229. int q6lsm_snd_model_buf_free(struct lsm_client *client,
  230. struct lsm_params_info_v2 *p_info);
  231. int q6lsm_close(struct lsm_client *client);
  232. int q6lsm_register_sound_model(struct lsm_client *client,
  233. enum lsm_detection_mode mode,
  234. bool detectfailure);
  235. int q6lsm_set_data(struct lsm_client *client,
  236. enum lsm_detection_mode mode,
  237. bool detectfailure);
  238. int q6lsm_deregister_sound_model(struct lsm_client *client);
  239. void set_lsm_port(int lsm_port);
  240. int get_lsm_port(void);
  241. int q6lsm_lab_control(struct lsm_client *client, u32 enable,
  242. struct lsm_params_info_v2 *p_info);
  243. int q6lsm_stop_lab(struct lsm_client *client);
  244. int q6lsm_read(struct lsm_client *client, struct lsm_cmd_read *read);
  245. int q6lsm_lab_buffer_alloc(struct lsm_client *client, bool alloc);
  246. int q6lsm_set_one_param(struct lsm_client *client,
  247. struct lsm_params_info_v2 *p_info, void *data,
  248. uint32_t param_type);
  249. void q6lsm_sm_set_param_data(struct lsm_client *client,
  250. struct lsm_params_info_v2 *p_info,
  251. size_t *offset);
  252. int q6lsm_set_port_connected(struct lsm_client *client);
  253. int q6lsm_set_fwk_mode_cfg(struct lsm_client *client, uint32_t event_mode);
  254. int q6lsm_set_media_fmt_params(struct lsm_client *client);
  255. int q6lsm_set_media_fmt_v2_params(struct lsm_client *client);
  256. int q6lsm_lab_out_ch_cfg(struct lsm_client *client, u8 *ch_map,
  257. struct lsm_params_info_v2 *p_info);
  258. bool q6lsm_adsp_supports_multi_stage_detection(void);
  259. #endif /* __Q6LSM_H__ */