q6lsm.h 7.4 KB

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