q6lsm.h 8.3 KB

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