lsm_params.h 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. #ifndef _UAPI_LSM_PARAMS_H__
  2. #define _UAPI_LSM_PARAMS_H__
  3. #define LSM_POLLING_ENABLE_SUPPORT
  4. #define LSM_EVENT_TIMESTAMP_MODE_SUPPORT
  5. #include <linux/types.h>
  6. #include <sound/asound.h>
  7. #define SNDRV_LSM_VERSION SNDRV_PROTOCOL_VERSION(0, 1, 0)
  8. #define LSM_OUT_FORMAT_PCM (0)
  9. #define LSM_OUT_FORMAT_ADPCM (1 << 0)
  10. #define LSM_OUT_DATA_RAW (0)
  11. #define LSM_OUT_DATA_PACKED (1)
  12. #define LSM_OUT_DATA_EVENTS_DISABLED (0)
  13. #define LSM_OUT_DATA_EVENTS_ENABLED (1)
  14. #define LSM_OUT_TRANSFER_MODE_RT (0)
  15. #define LSM_OUT_TRANSFER_MODE_FTRT (1)
  16. #define LSM_ENDPOINT_DETECT_THRESHOLD (0)
  17. #define LSM_OPERATION_MODE (1)
  18. #define LSM_GAIN (2)
  19. #define LSM_MIN_CONFIDENCE_LEVELS (3)
  20. #define LSM_REG_SND_MODEL (4)
  21. #define LSM_DEREG_SND_MODEL (5)
  22. #define LSM_CUSTOM_PARAMS (6)
  23. #define LSM_POLLING_ENABLE (7)
  24. #define LSM_DET_EVENT_TYPE (8)
  25. #define LSM_PARAMS_MAX (LSM_DET_EVENT_TYPE + 1)
  26. #define LSM_EVENT_NON_TIME_STAMP_MODE (0)
  27. #define LSM_EVENT_TIME_STAMP_MODE (1)
  28. #define LSM_DET_EVENT_TYPE_LEGACY (0)
  29. #define LSM_DET_EVENT_TYPE_GENERIC (1)
  30. enum lsm_app_id {
  31. LSM_VOICE_WAKEUP_APP_ID = 1,
  32. LSM_VOICE_WAKEUP_APP_ID_V2 = 2,
  33. };
  34. enum lsm_detection_mode {
  35. LSM_MODE_KEYWORD_ONLY_DETECTION = 1,
  36. LSM_MODE_USER_KEYWORD_DETECTION
  37. };
  38. enum lsm_vw_status {
  39. LSM_VOICE_WAKEUP_STATUS_RUNNING = 1,
  40. LSM_VOICE_WAKEUP_STATUS_DETECTED,
  41. LSM_VOICE_WAKEUP_STATUS_END_SPEECH,
  42. LSM_VOICE_WAKEUP_STATUS_REJECTED
  43. };
  44. /*
  45. * Data for LSM_ENDPOINT_DETECT_THRESHOLD param_type
  46. * @epd_begin: Begin threshold
  47. * @epd_end: End threshold
  48. */
  49. struct snd_lsm_ep_det_thres {
  50. __u32 epd_begin;
  51. __u32 epd_end;
  52. };
  53. /*
  54. * Data for LSM_OPERATION_MODE param_type
  55. * @mode: The detection mode to be used
  56. * @detect_failure: Setting to enable failure detections.
  57. */
  58. struct snd_lsm_detect_mode {
  59. enum lsm_detection_mode mode;
  60. bool detect_failure;
  61. };
  62. /*
  63. * Data for LSM_GAIN param_type
  64. * @gain: The gain to be applied on LSM
  65. */
  66. struct snd_lsm_gain {
  67. __u16 gain;
  68. };
  69. /*
  70. * Data for LSM_POLLING_ENABLE param_type
  71. * @poll_en: Polling enable or disable
  72. */
  73. struct snd_lsm_poll_enable {
  74. bool poll_en;
  75. };
  76. /*
  77. * Data for LSM_DET_EVENT_TYPE param_type
  78. * @event_type: LSM_DET_EVENT_TYPE_LEGACY or LSM_DET_EVENT_TYPE_GENERIC
  79. * @mode: Type of information in detection event payload
  80. */
  81. struct snd_lsm_det_event_type {
  82. __u32 event_type;
  83. __u32 mode;
  84. };
  85. struct snd_lsm_sound_model_v2 {
  86. __u8 __user *data;
  87. __u8 *confidence_level;
  88. __u32 data_size;
  89. enum lsm_detection_mode detection_mode;
  90. __u8 num_confidence_levels;
  91. bool detect_failure;
  92. };
  93. struct snd_lsm_session_data {
  94. enum lsm_app_id app_id;
  95. };
  96. struct snd_lsm_event_status {
  97. __u16 status;
  98. __u16 payload_size;
  99. __u8 payload[0];
  100. };
  101. struct snd_lsm_event_status_v3 {
  102. __u32 timestamp_lsw;
  103. __u32 timestamp_msw;
  104. __u16 status;
  105. __u16 payload_size;
  106. __u8 payload[0];
  107. };
  108. struct snd_lsm_detection_params {
  109. __u8 *conf_level;
  110. enum lsm_detection_mode detect_mode;
  111. __u8 num_confidence_levels;
  112. bool detect_failure;
  113. bool poll_enable;
  114. };
  115. /*
  116. * Param info for each parameter type
  117. * @module_id: Module to which parameter is to be set
  118. * @param_id: Parameter that is to be set
  119. * @param_size: size (in number of bytes) for the data
  120. * in param_data.
  121. * For confidence levels, this is num_conf_levels
  122. * For REG_SND_MODEL, this is size of sound model
  123. * For CUSTOM_PARAMS, this is size of the entire blob of data
  124. * @param_data: Data for the parameter.
  125. * For some param_types this is a structure defined, ex: LSM_GAIN
  126. * For CONFIDENCE_LEVELS, this is array of confidence levels
  127. * For REG_SND_MODEL, this is the sound model data
  128. * For CUSTOM_PARAMS, this is the blob of custom data.
  129. */
  130. struct lsm_params_info {
  131. __u32 module_id;
  132. __u32 param_id;
  133. __u32 param_size;
  134. __u8 __user *param_data;
  135. uint32_t param_type;
  136. };
  137. /*
  138. * Data passed to the SET_PARAM_V2 IOCTL
  139. * @num_params: Number of params that are to be set
  140. * should not be greater than LSM_PARAMS_MAX
  141. * @params: Points to an array of lsm_params_info
  142. * Each entry points to one parameter to set
  143. * @data_size: size (in bytes) for params
  144. * should be equal to
  145. * num_params * sizeof(struct lsm_parms_info)
  146. */
  147. struct snd_lsm_module_params {
  148. __u8 __user *params;
  149. __u32 num_params;
  150. __u32 data_size;
  151. };
  152. /*
  153. * Data passed to LSM_OUT_FORMAT_CFG IOCTL
  154. * @format: The media format enum
  155. * @packing: indicates the packing method used for data path
  156. * @events: indicates whether data path events need to be enabled
  157. * @transfer_mode: indicates whether FTRT mode or RT mode.
  158. */
  159. struct snd_lsm_output_format_cfg {
  160. __u8 format;
  161. __u8 packing;
  162. __u8 events;
  163. __u8 mode;
  164. };
  165. #define SNDRV_LSM_DEREG_SND_MODEL _IOW('U', 0x01, int)
  166. #define SNDRV_LSM_EVENT_STATUS _IOW('U', 0x02, struct snd_lsm_event_status)
  167. #define SNDRV_LSM_ABORT_EVENT _IOW('U', 0x03, int)
  168. #define SNDRV_LSM_START _IOW('U', 0x04, int)
  169. #define SNDRV_LSM_STOP _IOW('U', 0x05, int)
  170. #define SNDRV_LSM_SET_SESSION_DATA _IOW('U', 0x06, struct snd_lsm_session_data)
  171. #define SNDRV_LSM_REG_SND_MODEL_V2 _IOW('U', 0x07,\
  172. struct snd_lsm_sound_model_v2)
  173. #define SNDRV_LSM_LAB_CONTROL _IOW('U', 0x08, uint32_t)
  174. #define SNDRV_LSM_STOP_LAB _IO('U', 0x09)
  175. #define SNDRV_LSM_SET_PARAMS _IOW('U', 0x0A, \
  176. struct snd_lsm_detection_params)
  177. #define SNDRV_LSM_SET_MODULE_PARAMS _IOW('U', 0x0B, \
  178. struct snd_lsm_module_params)
  179. #define SNDRV_LSM_OUT_FORMAT_CFG _IOW('U', 0x0C, \
  180. struct snd_lsm_output_format_cfg)
  181. #define SNDRV_LSM_SET_PORT _IO('U', 0x0D)
  182. #define SNDRV_LSM_SET_FWK_MODE_CONFIG _IOW('U', 0x0E, uint32_t)
  183. #define SNDRV_LSM_EVENT_STATUS_V3 _IOW('U', 0x0F, \
  184. struct snd_lsm_event_status_v3)
  185. #define SNDRV_LSM_GENERIC_DET_EVENT _IOW('U', 0x10, struct snd_lsm_event_status)
  186. #endif