st-hal: Support for SVA 5.0 second stage

- Pass second stage buffer in multiple of 10 msecs.
- Calling (2nd stage) capi_v2_end for keyword detection
  also (previously only for user verification).
- Ignore UBM model as that is only relevant to user
  training the model

Change-Id: I085b8bd11caf64122873c43dc62d466061918c9e
diff --git a/sml_model_parser.h b/sml_model_parser.h
index 3ff87c3..226087b 100644
--- a/sml_model_parser.h
+++ b/sml_model_parser.h
@@ -92,6 +92,7 @@
     ST_SM_ID_SVA_VOP      = 0x0004,
     ST_SM_ID_SVA_RNN      = 0x0008,
     ST_SM_ID_SVA_KWD      = 0x000A,            //ST_SM_ID_SVA_CNN | ST_SM_ID_SVA_RNN
+    SML_ID_SVA_S_STAGE_UBM = 0x0010,
     ST_SM_ID_SVA_END      = 0x00F0,
     ST_SM_ID_CUSTOM_START = 0x0100,
     ST_SM_ID_CUSTOM_END   = 0xF000,
diff --git a/sound_trigger_hw.c b/sound_trigger_hw.c
index 0c8bc26..1bb9848 100644
--- a/sound_trigger_hw.c
+++ b/sound_trigger_hw.c
@@ -1732,8 +1732,8 @@
             sizeof(SML_HeaderTypeV3) + (i * sizeof(SML_BigSoundModelTypeV3)));
 
         if (big_sm->type != ST_SM_ID_SVA_GMM) {
-            if ((big_sm->type == ST_SM_ID_SVA_VOP) &&
-                !(recognition_mode & RECOGNITION_MODE_USER_IDENTIFICATION))
+            if ((big_sm->type == SML_ID_SVA_S_STAGE_UBM || big_sm->type == ST_SM_ID_SVA_VOP) &&
+                 !(recognition_mode & RECOGNITION_MODE_USER_IDENTIFICATION))
                 continue;
 
             ss_usecase = platform_get_ss_usecase(st_ses->vendor_uuid_info, big_sm->type);
diff --git a/st_hw_session_lsm.c b/st_hw_session_lsm.c
index cde7e06..7508975 100644
--- a/st_hw_session_lsm.c
+++ b/st_hw_session_lsm.c
@@ -796,6 +796,7 @@
     bool real_time_check = true;
     uint64_t frame_receive_time = 0, frame_send_time = 0;
     uint64_t frame_read_time = 0, buffering_start_time = 0;
+    uint64_t ss_buf_time = 0;
     st_hw_sess_event_t hw_sess_event = {0};
 
     if (p_lsm_ses == NULL) {
@@ -895,6 +896,20 @@
                     st_sec_stage->ss_session->buff_sz =
                         (p_lsm_ses->common.kw_end_idx -
                         st_sec_stage->ss_session->buf_start);
+
+                    /*
+                     * As per requirement in PDK, input buffer size for
+                     * second stage should be in multiple of 10 ms.
+                     */
+                    ss_buf_time = convert_bytes_to_ms(st_sec_stage->ss_session->buff_sz,
+                        &p_lsm_ses->common.config);
+
+                    if (ss_buf_time % 10) {
+                        ss_buf_time -= (ss_buf_time % 10);
+                        st_sec_stage->ss_session->buff_sz = convert_ms_to_bytes(ss_buf_time,
+                            &p_lsm_ses->common.config);
+                    }
+
                     st_sec_stage->ss_session->lab_buf_sz =
                         p_lsm_ses->lab_drv_buf_size;
                     st_sec_stage->ss_session->det_status =
diff --git a/st_second_stage.c b/st_second_stage.c
index d3b81ae..65c558d 100644
--- a/st_second_stage.c
+++ b/st_second_stage.c
@@ -6,7 +6,7 @@
  * retrieves the detection results via capi wrappers and notifies the
  * sound trigger state machine.
  *
- * 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
@@ -382,21 +382,23 @@
         goto exit;
     }
 
-    uv_cfg_ptr->sva_uv_confidence_score =
-        ss_session->st_ses->hw_ses_current->user_level;
-    capi_uv_ptr.data_ptr = (int8_t *)uv_cfg_ptr;
-    capi_uv_ptr.actual_data_len = sizeof(voiceprint2_sva_uv_score_t);
-    capi_uv_ptr.max_data_len = sizeof(voiceprint2_sva_uv_score_t);
+    if (ss_session->st_ses->hw_ses_current->f_stage_version == ST_MODULE_TYPE_GMM) {
+        uv_cfg_ptr->sva_uv_confidence_score =
+            ss_session->st_ses->hw_ses_current->user_level;
+        capi_uv_ptr.data_ptr = (int8_t *)uv_cfg_ptr;
+        capi_uv_ptr.actual_data_len = sizeof(voiceprint2_sva_uv_score_t);
+        capi_uv_ptr.max_data_len = sizeof(voiceprint2_sva_uv_score_t);
 
-    ALOGV("%s: Issuing capi_set_param for param %d, uv_conf_score %f", __func__,
-        VOICEPRINT2_ID_SVA_UV_SCORE, uv_cfg_ptr->sva_uv_confidence_score);
-    rc = ss_session->capi_handle->vtbl_ptr->set_param(ss_session->capi_handle,
-        VOICEPRINT2_ID_SVA_UV_SCORE, NULL, &capi_uv_ptr);
-    if (CAPI_V2_EOK != rc) {
-        ALOGE("%s: set_param VOICEPRINT2_ID_SVA_UV_SCORE failed, result = %d",
-            __func__, rc);
-        ret = -EINVAL;
-        goto exit;
+        ALOGV("%s: Issuing capi_set_param for param %d, uv_conf_score %f", __func__,
+            VOICEPRINT2_ID_SVA_UV_SCORE, uv_cfg_ptr->sva_uv_confidence_score);
+        rc = ss_session->capi_handle->vtbl_ptr->set_param(ss_session->capi_handle,
+            VOICEPRINT2_ID_SVA_UV_SCORE, NULL, &capi_uv_ptr);
+        if (CAPI_V2_EOK != rc) {
+            ALOGE("%s: set_param VOICEPRINT2_ID_SVA_UV_SCORE failed, result = %d",
+               __func__, rc);
+            ret = -EINVAL;
+            goto exit;
+        }
     }
 
     while (!ss_session->exit_buffering) {
@@ -806,8 +808,10 @@
     int status = 0;
     capi_v2_err_t rc;
 
-    if ((st_sec_stage->ss_info->sm_detection_type ==
-         ST_SM_TYPE_USER_VERIFICATION) &&
+    if (((st_sec_stage->ss_info->sm_detection_type ==
+          ST_SM_TYPE_USER_VERIFICATION) ||
+         (st_sec_stage->ss_info->sm_detection_type ==
+          ST_SM_TYPE_KEYWORD_DETECTION)) &&
         !st_sec_stage->stdev->ssr_offline_received) {
         ALOGV("%s: Issuing capi_end", __func__);
         rc = st_sec_stage->ss_session->capi_handle->vtbl_ptr->end(
diff --git a/st_session.c b/st_session.c
index f62bbda..c5f1b31 100644
--- a/st_session.c
+++ b/st_session.c
@@ -2648,6 +2648,13 @@
              * during only one remaining client model as there won't be a
              * merged model yet.
              */
+
+            /*
+             * User verification confidence is not required
+             * in SVA5 PDK_UV case. As first stage doesn't
+             * support user verification.
+             */
+            num_conf_levels = 1;
             memcpy(stc_ses->sm_info.cf_levels, conf_levels,
                    stc_ses->sm_info.cf_levels_size);