q6lsm.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  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. typedef void (*lsm_app_cb)(uint32_t opcode, uint32_t token,
  24. uint32_t *payload, void *priv);
  25. struct lsm_sound_model {
  26. dma_addr_t phys;
  27. void *data;
  28. size_t size; /* size of buffer */
  29. uint32_t actual_size; /* actual number of bytes read by DSP */
  30. struct dma_buf *dma_buf;
  31. uint32_t mem_map_handle;
  32. };
  33. struct snd_lsm_event_status_v2 {
  34. uint16_t status;
  35. uint16_t payload_size;
  36. uint8_t confidence_value[0];
  37. };
  38. struct lsm_lab_buffer {
  39. dma_addr_t phys;
  40. void *data;
  41. size_t size;
  42. struct dma_buf *dma_buf;
  43. uint32_t mem_map_handle;
  44. };
  45. struct lsm_hw_params {
  46. u16 sample_rate;
  47. u16 sample_size;
  48. u32 buf_sz;
  49. u32 period_count;
  50. u16 num_chs;
  51. };
  52. struct lsm_client {
  53. int session;
  54. lsm_app_cb cb;
  55. atomic_t cmd_state;
  56. void *priv;
  57. struct apr_svc *apr;
  58. struct apr_svc *mmap_apr;
  59. struct mutex cmd_lock;
  60. struct lsm_sound_model sound_model;
  61. wait_queue_head_t cmd_wait;
  62. uint32_t cmd_err_code;
  63. uint16_t mode;
  64. uint16_t connect_to_port;
  65. uint8_t num_confidence_levels;
  66. uint8_t *confidence_levels;
  67. bool opened;
  68. bool started;
  69. dma_addr_t lsm_cal_phy_addr;
  70. uint32_t lsm_cal_size;
  71. uint32_t app_id;
  72. bool lab_enable;
  73. bool lab_started;
  74. struct lsm_lab_buffer *lab_buffer;
  75. struct lsm_hw_params hw_params;
  76. bool use_topology;
  77. int session_state;
  78. bool poll_enable;
  79. int perf_mode;
  80. uint32_t event_mode;
  81. };
  82. struct lsm_stream_cmd_open_tx {
  83. struct apr_hdr hdr;
  84. uint16_t app_id;
  85. uint16_t reserved;
  86. uint32_t sampling_rate;
  87. } __packed;
  88. struct lsm_stream_cmd_open_tx_v2 {
  89. struct apr_hdr hdr;
  90. uint32_t topology_id;
  91. } __packed;
  92. struct lsm_custom_topologies {
  93. struct apr_hdr hdr;
  94. uint32_t data_payload_addr_lsw;
  95. uint32_t data_payload_addr_msw;
  96. uint32_t mem_map_handle;
  97. uint32_t buffer_size;
  98. } __packed;
  99. struct lsm_param_size_reserved {
  100. uint16_t param_size;
  101. uint16_t reserved;
  102. } __packed;
  103. union lsm_param_size {
  104. uint32_t param_size;
  105. struct lsm_param_size_reserved sr;
  106. } __packed;
  107. struct lsm_param_payload_common {
  108. uint32_t module_id;
  109. uint32_t param_id;
  110. union lsm_param_size p_size;
  111. } __packed;
  112. struct lsm_param_op_mode {
  113. struct lsm_param_payload_common common;
  114. uint32_t minor_version;
  115. uint16_t mode;
  116. uint16_t reserved;
  117. } __packed;
  118. struct lsm_param_connect_to_port {
  119. struct lsm_param_payload_common common;
  120. uint32_t minor_version;
  121. /* AFE port id that receives voice wake up data */
  122. uint16_t port_id;
  123. uint16_t reserved;
  124. } __packed;
  125. struct lsm_param_poll_enable {
  126. struct lsm_param_payload_common common;
  127. uint32_t minor_version;
  128. /* indicates to voice wakeup that HW MAD/SW polling is enabled or not */
  129. uint32_t polling_enable;
  130. } __packed;
  131. struct lsm_param_fwk_mode_cfg {
  132. struct lsm_param_payload_common common;
  133. uint32_t minor_version;
  134. uint32_t mode;
  135. } __packed;
  136. struct lsm_param_media_fmt {
  137. struct lsm_param_payload_common common;
  138. uint32_t minor_version;
  139. uint32_t sample_rate;
  140. uint16_t num_channels;
  141. uint16_t bit_width;
  142. uint8_t channel_mapping[LSM_MAX_NUM_CHANNELS];
  143. } __packed;
  144. /*
  145. * This param cannot be sent in this format.
  146. * The actual number of confidence level values
  147. * need to appended to this param payload.
  148. */
  149. struct lsm_param_min_confidence_levels {
  150. struct lsm_param_payload_common common;
  151. uint8_t num_confidence_levels;
  152. } __packed;
  153. struct lsm_set_params_hdr {
  154. uint32_t data_payload_size;
  155. uint32_t data_payload_addr_lsw;
  156. uint32_t data_payload_addr_msw;
  157. uint32_t mem_map_handle;
  158. } __packed;
  159. struct lsm_cmd_set_params {
  160. struct apr_hdr msg_hdr;
  161. struct lsm_set_params_hdr param_hdr;
  162. } __packed;
  163. struct lsm_cmd_set_params_conf {
  164. struct apr_hdr msg_hdr;
  165. struct lsm_set_params_hdr params_hdr;
  166. struct lsm_param_min_confidence_levels conf_payload;
  167. } __packed;
  168. struct lsm_cmd_set_params_opmode {
  169. struct apr_hdr msg_hdr;
  170. struct lsm_set_params_hdr params_hdr;
  171. struct lsm_param_op_mode op_mode;
  172. } __packed;
  173. struct lsm_cmd_set_connectport {
  174. struct apr_hdr msg_hdr;
  175. struct lsm_set_params_hdr params_hdr;
  176. struct lsm_param_connect_to_port connect_to_port;
  177. } __packed;
  178. struct lsm_cmd_poll_enable {
  179. struct apr_hdr msg_hdr;
  180. struct lsm_set_params_hdr params_hdr;
  181. struct lsm_param_poll_enable poll_enable;
  182. } __packed;
  183. struct lsm_param_epd_thres {
  184. struct lsm_param_payload_common common;
  185. uint32_t minor_version;
  186. uint32_t epd_begin;
  187. uint32_t epd_end;
  188. } __packed;
  189. struct lsm_cmd_set_epd_threshold {
  190. struct apr_hdr msg_hdr;
  191. struct lsm_set_params_hdr param_hdr;
  192. struct lsm_param_epd_thres epd_thres;
  193. } __packed;
  194. struct lsm_param_gain {
  195. struct lsm_param_payload_common common;
  196. uint32_t minor_version;
  197. uint16_t gain;
  198. uint16_t reserved;
  199. } __packed;
  200. struct lsm_cmd_set_gain {
  201. struct apr_hdr msg_hdr;
  202. struct lsm_set_params_hdr param_hdr;
  203. struct lsm_param_gain lsm_gain;
  204. } __packed;
  205. struct lsm_cmd_reg_snd_model {
  206. struct apr_hdr hdr;
  207. uint32_t model_size;
  208. uint32_t model_addr_lsw;
  209. uint32_t model_addr_msw;
  210. uint32_t mem_map_handle;
  211. } __packed;
  212. struct lsm_lab_enable {
  213. struct lsm_param_payload_common common;
  214. uint16_t enable;
  215. uint16_t reserved;
  216. } __packed;
  217. struct lsm_params_lab_enable {
  218. struct apr_hdr msg_hdr;
  219. struct lsm_set_params_hdr params_hdr;
  220. struct lsm_lab_enable lab_enable;
  221. } __packed;
  222. struct lsm_lab_config {
  223. struct lsm_param_payload_common common;
  224. uint32_t minor_version;
  225. uint32_t wake_up_latency_ms;
  226. } __packed;
  227. struct lsm_params_lab_config {
  228. struct apr_hdr msg_hdr;
  229. struct lsm_set_params_hdr params_hdr;
  230. struct lsm_lab_config lab_config;
  231. } __packed;
  232. struct lsm_cmd_read {
  233. struct apr_hdr hdr;
  234. uint32_t buf_addr_lsw;
  235. uint32_t buf_addr_msw;
  236. uint32_t mem_map_handle;
  237. uint32_t buf_size;
  238. } __packed;
  239. struct lsm_cmd_read_done {
  240. struct apr_hdr hdr;
  241. uint32_t status;
  242. uint32_t buf_addr_lsw;
  243. uint32_t buf_addr_msw;
  244. uint32_t mem_map_handle;
  245. uint32_t total_size;
  246. uint32_t offset;
  247. uint32_t timestamp_lsw;
  248. uint32_t timestamp_msw;
  249. uint32_t flags;
  250. } __packed;
  251. struct lsm_cmd_set_fwk_mode_cfg {
  252. struct apr_hdr msg_hdr;
  253. struct lsm_set_params_hdr params_hdr;
  254. struct lsm_param_fwk_mode_cfg fwk_mode_cfg;
  255. } __packed;
  256. struct lsm_cmd_set_media_fmt {
  257. struct apr_hdr msg_hdr;
  258. struct lsm_set_params_hdr params_hdr;
  259. struct lsm_param_media_fmt media_fmt;
  260. } __packed;
  261. struct lsm_client *q6lsm_client_alloc(lsm_app_cb cb, void *priv);
  262. void q6lsm_client_free(struct lsm_client *client);
  263. int q6lsm_open(struct lsm_client *client, uint16_t app_id);
  264. int q6lsm_start(struct lsm_client *client, bool wait);
  265. int q6lsm_stop(struct lsm_client *client, bool wait);
  266. int q6lsm_snd_model_buf_alloc(struct lsm_client *client, size_t len,
  267. bool allocate_module_data);
  268. int q6lsm_snd_model_buf_free(struct lsm_client *client);
  269. int q6lsm_close(struct lsm_client *client);
  270. int q6lsm_register_sound_model(struct lsm_client *client,
  271. enum lsm_detection_mode mode,
  272. bool detectfailure);
  273. int q6lsm_set_data(struct lsm_client *client,
  274. enum lsm_detection_mode mode,
  275. bool detectfailure);
  276. int q6lsm_deregister_sound_model(struct lsm_client *client);
  277. void set_lsm_port(int lsm_port);
  278. int get_lsm_port(void);
  279. int q6lsm_lab_control(struct lsm_client *client, u32 enable);
  280. int q6lsm_stop_lab(struct lsm_client *client);
  281. int q6lsm_read(struct lsm_client *client, struct lsm_cmd_read *read);
  282. int q6lsm_lab_buffer_alloc(struct lsm_client *client, bool alloc);
  283. int q6lsm_set_one_param(struct lsm_client *client,
  284. struct lsm_params_info *p_info, void *data,
  285. uint32_t param_type);
  286. void q6lsm_sm_set_param_data(struct lsm_client *client,
  287. struct lsm_params_info *p_info,
  288. size_t *offset);
  289. int q6lsm_set_port_connected(struct lsm_client *client);
  290. int q6lsm_set_fwk_mode_cfg(struct lsm_client *client, uint32_t event_mode);
  291. int q6lsm_set_media_fmt_params(struct lsm_client *client);
  292. #endif /* __Q6LSM_H__ */