q6lsm.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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. uint32_t event_type;
  82. };
  83. struct lsm_stream_cmd_open_tx {
  84. struct apr_hdr hdr;
  85. uint16_t app_id;
  86. uint16_t reserved;
  87. uint32_t sampling_rate;
  88. } __packed;
  89. struct lsm_stream_cmd_open_tx_v2 {
  90. struct apr_hdr hdr;
  91. uint32_t topology_id;
  92. } __packed;
  93. struct lsm_custom_topologies {
  94. struct apr_hdr hdr;
  95. uint32_t data_payload_addr_lsw;
  96. uint32_t data_payload_addr_msw;
  97. uint32_t mem_map_handle;
  98. uint32_t buffer_size;
  99. } __packed;
  100. struct lsm_session_cmd_set_params_v2 {
  101. struct apr_hdr apr_hdr;
  102. uint32_t payload_size;
  103. struct mem_mapping_hdr mem_hdr;
  104. u32 param_data[0];
  105. } __packed;
  106. struct lsm_session_cmd_set_params_v3 {
  107. struct apr_hdr apr_hdr;
  108. struct mem_mapping_hdr mem_hdr;
  109. uint32_t payload_size;
  110. u32 param_data[0];
  111. } __packed;
  112. struct lsm_param_op_mode {
  113. uint32_t minor_version;
  114. uint16_t mode;
  115. uint16_t reserved;
  116. } __packed;
  117. struct lsm_param_connect_to_port {
  118. uint32_t minor_version;
  119. /* AFE port id that receives voice wake up data */
  120. uint16_t port_id;
  121. uint16_t reserved;
  122. } __packed;
  123. struct lsm_param_poll_enable {
  124. uint32_t minor_version;
  125. /* indicates to voice wakeup that HW MAD/SW polling is enabled or not */
  126. uint32_t polling_enable;
  127. } __packed;
  128. struct lsm_param_fwk_mode_cfg {
  129. uint32_t minor_version;
  130. uint32_t mode;
  131. } __packed;
  132. struct lsm_param_media_fmt {
  133. uint32_t minor_version;
  134. uint32_t sample_rate;
  135. uint16_t num_channels;
  136. uint16_t bit_width;
  137. uint8_t channel_mapping[LSM_MAX_NUM_CHANNELS];
  138. } __packed;
  139. struct lsm_param_confidence_levels {
  140. uint8_t num_confidence_levels;
  141. uint8_t confidence_levels[0];
  142. } __packed;
  143. struct lsm_param_epd_thres {
  144. uint32_t minor_version;
  145. uint32_t epd_begin;
  146. uint32_t epd_end;
  147. } __packed;
  148. struct lsm_param_gain {
  149. uint32_t minor_version;
  150. uint16_t gain;
  151. uint16_t reserved;
  152. } __packed;
  153. struct lsm_cmd_reg_snd_model {
  154. struct apr_hdr hdr;
  155. uint32_t model_size;
  156. uint32_t model_addr_lsw;
  157. uint32_t model_addr_msw;
  158. uint32_t mem_map_handle;
  159. } __packed;
  160. struct lsm_param_lab_enable {
  161. uint16_t enable;
  162. uint16_t reserved;
  163. } __packed;
  164. struct lsm_param_lab_config {
  165. uint32_t minor_version;
  166. uint32_t wake_up_latency_ms;
  167. } __packed;
  168. struct lsm_cmd_read {
  169. struct apr_hdr hdr;
  170. uint32_t buf_addr_lsw;
  171. uint32_t buf_addr_msw;
  172. uint32_t mem_map_handle;
  173. uint32_t buf_size;
  174. } __packed;
  175. struct lsm_cmd_read_done {
  176. struct apr_hdr hdr;
  177. uint32_t status;
  178. uint32_t buf_addr_lsw;
  179. uint32_t buf_addr_msw;
  180. uint32_t mem_map_handle;
  181. uint32_t total_size;
  182. uint32_t offset;
  183. uint32_t timestamp_lsw;
  184. uint32_t timestamp_msw;
  185. uint32_t flags;
  186. } __packed;
  187. struct lsm_param_det_event_type {
  188. uint32_t minor_version;
  189. uint32_t event_type;
  190. uint32_t mode;
  191. } __packed;
  192. struct lsm_client *q6lsm_client_alloc(lsm_app_cb cb, void *priv);
  193. void q6lsm_client_free(struct lsm_client *client);
  194. int q6lsm_open(struct lsm_client *client, uint16_t app_id);
  195. int q6lsm_start(struct lsm_client *client, bool wait);
  196. int q6lsm_stop(struct lsm_client *client, bool wait);
  197. int q6lsm_snd_model_buf_alloc(struct lsm_client *client, size_t len,
  198. bool allocate_module_data);
  199. int q6lsm_snd_model_buf_free(struct lsm_client *client);
  200. int q6lsm_close(struct lsm_client *client);
  201. int q6lsm_register_sound_model(struct lsm_client *client,
  202. enum lsm_detection_mode mode,
  203. bool detectfailure);
  204. int q6lsm_set_data(struct lsm_client *client,
  205. enum lsm_detection_mode mode,
  206. bool detectfailure);
  207. int q6lsm_deregister_sound_model(struct lsm_client *client);
  208. void set_lsm_port(int lsm_port);
  209. int get_lsm_port(void);
  210. int q6lsm_lab_control(struct lsm_client *client, u32 enable);
  211. int q6lsm_stop_lab(struct lsm_client *client);
  212. int q6lsm_read(struct lsm_client *client, struct lsm_cmd_read *read);
  213. int q6lsm_lab_buffer_alloc(struct lsm_client *client, bool alloc);
  214. int q6lsm_set_one_param(struct lsm_client *client,
  215. struct lsm_params_info *p_info, void *data,
  216. uint32_t param_type);
  217. void q6lsm_sm_set_param_data(struct lsm_client *client,
  218. struct lsm_params_info *p_info,
  219. size_t *offset);
  220. int q6lsm_set_port_connected(struct lsm_client *client);
  221. int q6lsm_set_fwk_mode_cfg(struct lsm_client *client, uint32_t event_mode);
  222. int q6lsm_set_media_fmt_params(struct lsm_client *client);
  223. #endif /* __Q6LSM_H__ */