st-hal: add adjustable ss vop prepend support
For better detection rate of second stage vop,
add another parameter to make prepend buffer
adjustable.
Change-Id: I2bf2e85a44777202bf74db57034638bf4201576f
diff --git a/sound_trigger_platform.c b/sound_trigger_platform.c
index 78dd82c..c382a3c 100644
--- a/sound_trigger_platform.c
+++ b/sound_trigger_platform.c
@@ -187,6 +187,7 @@
#define ST_PARAM_KEY_SS_SM_TYPE "sm_detection_type"
#define ST_PARAM_KEY_SS_SM_ID "sm_id"
#define ST_PARAM_KEY_SS_LIB "module_lib"
+#define ST_PARAM_KEY_SS_DATA_BEFORE_KW_START "data_before_kw_start"
#define ST_PARAM_KEY_SS_DATA_AFTER_KW_END "data_after_kw_end"
#define ST_BACKEND_PORT_NAME_MAX_SIZE 25
@@ -1679,6 +1680,14 @@
common_params->channel_count = value;
}
+ err = str_parms_get_int(parms, ST_PARAM_KEY_SS_DATA_BEFORE_KW_START, &value);
+ if (err >= 0) {
+ str_parms_del(parms, ST_PARAM_KEY_SS_DATA_BEFORE_KW_START);
+ common_params->data_before_kw_start = value;
+ } else {
+ common_params->data_before_kw_start = VOP_DATA_BEFORE_TRUE_KW_START_MS;
+ }
+
err = str_parms_get_int(parms, ST_PARAM_KEY_SS_DATA_AFTER_KW_END, &value);
if (err >= 0) {
str_parms_del(parms, ST_PARAM_KEY_SS_DATA_AFTER_KW_END);
diff --git a/st_common_defs.h b/st_common_defs.h
index 2beef66..f9a88ca 100644
--- a/st_common_defs.h
+++ b/st_common_defs.h
@@ -1,6 +1,6 @@
/* st_common_defs.h
*
- * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -102,6 +102,7 @@
#define GENERIC_DET_EVENT_HEADER_SIZE (8)
#define FIRST_STAGE_KW_START_TOLERANCE_MS (300)
#define FIRST_STAGE_KW_END_TOLERANCE_MS (240)
+#define VOP_DATA_BEFORE_TRUE_KW_START_MS (360)
#define CNN_DATA_AFTER_TRUE_KW_END_MS (200)
#define GENERIC_DET_EVENT_USER_LEVEL_OFFSET (17)
#define GCS_NON_GENERIC_USER_LEVEL_OFFSET (3)
diff --git a/st_hw_session_lsm.c b/st_hw_session_lsm.c
index 1ff1abc..c494f71 100644
--- a/st_hw_session_lsm.c
+++ b/st_hw_session_lsm.c
@@ -2,7 +2,7 @@
*
* This file implements the hw session functionality specific to LSM HW
*
- * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -1395,7 +1395,8 @@
int status = 0;
struct listnode *node = NULL, *tmp_node = NULL;
st_arm_second_stage_t *st_sec_stage = NULL;
- unsigned int prepend_bytes = 0, cnn_append_bytes = 0, vop_append_bytes = 0;
+ unsigned int cnn_prepend_bytes = 0, vop_prepend_bytes = 0;
+ unsigned int cnn_append_bytes = 0, vop_append_bytes = 0;
unsigned int kw_duration_bytes = 0;
bool real_time_check = true;
uint64_t frame_receive_time = 0, frame_send_time = 0;
@@ -1415,10 +1416,6 @@
st_buffer_reset(p_lsm_ses->common.buffer);
if (p_lsm_ses->common.enable_second_stage) {
- prepend_bytes =
- convert_ms_to_bytes(
- p_lsm_ses->common.vendor_uuid_info->kw_start_tolerance,
- &p_lsm_ses->common.config);
if (p_lsm_ses->common.sthw_cfg.client_req_hist_buf) {
kw_duration_bytes =
convert_ms_to_bytes(
@@ -1446,15 +1443,20 @@
* detections. Similarly, error tolerance is added to the end of the
* buffer for generic and non generic detection event usecases.
*/
- if (p_lsm_ses->common.kw_start_idx > prepend_bytes) {
- st_sec_stage->ss_session->buf_start =
- p_lsm_ses->common.kw_start_idx - prepend_bytes;
- } else {
- st_sec_stage->ss_session->buf_start = 0;
- }
-
if (st_sec_stage->ss_info->sm_detection_type ==
ST_SM_TYPE_KEYWORD_DETECTION) {
+ cnn_prepend_bytes =
+ convert_ms_to_bytes(
+ p_lsm_ses->common.vendor_uuid_info->kw_start_tolerance,
+ &p_lsm_ses->common.config);
+
+ if (p_lsm_ses->common.kw_start_idx > cnn_prepend_bytes) {
+ st_sec_stage->ss_session->buf_start =
+ p_lsm_ses->common.kw_start_idx - cnn_prepend_bytes;
+ } else {
+ st_sec_stage->ss_session->buf_start = 0;
+ }
+
cnn_append_bytes =
convert_ms_to_bytes(
(p_lsm_ses->common.vendor_uuid_info->kw_end_tolerance +
@@ -1479,6 +1481,18 @@
st_sec_stage->ss_session->det_status = KEYWORD_DETECTION_PENDING;
} else if (st_sec_stage->ss_info->sm_detection_type ==
ST_SM_TYPE_USER_VERIFICATION) {
+ vop_prepend_bytes =
+ convert_ms_to_bytes(
+ st_sec_stage->ss_info->data_before_kw_start,
+ &p_lsm_ses->common.config);
+
+ if (p_lsm_ses->common.kw_start_idx > vop_prepend_bytes) {
+ st_sec_stage->ss_session->buf_start =
+ p_lsm_ses->common.kw_start_idx - vop_prepend_bytes;
+ } else {
+ st_sec_stage->ss_session->buf_start = 0;
+ }
+
vop_append_bytes =
convert_ms_to_bytes(
p_lsm_ses->common.vendor_uuid_info->kw_end_tolerance,
diff --git a/st_second_stage.h b/st_second_stage.h
index fee487d..6a15e81 100644
--- a/st_second_stage.h
+++ b/st_second_stage.h
@@ -4,7 +4,7 @@
* abstraction represents a single st second stage session from the st session
* perspective.
*
- * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
@@ -70,6 +70,7 @@
unsigned int sample_rate;
unsigned int bit_width;
unsigned int channel_count;
+ unsigned int data_before_kw_start;
unsigned int data_after_kw_end;
}st_second_stage_info_t;