Merge 2bfe13b91cd383705ad8253a157eb6dc7f34b721 on remote branch

Change-Id: I329527fc89fab3cda7bf87487fc3b408ad93b54b
diff --git a/sound_trigger_hw.c b/sound_trigger_hw.c
index b1eef96..e4772cb 100644
--- a/sound_trigger_hw.c
+++ b/sound_trigger_hw.c
@@ -3,7 +3,7 @@
  * This file contains the API to load sound models with
  * DSP and start/stop detection of associated key phrases.
  *
- * Copyright (c) 2013-2020, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2013-2021, 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
@@ -1252,6 +1252,7 @@
              stdev->session_allowed) {
             /* pause and resume ADSP sessions to send new echo reference */
             list_for_each(node, &stdev->sound_model_list) {
+                ALOGD("%s: Pause and resume sessions", __func__);
                 p_ses = node_to_item(node, st_session_t, list_node);
                 if (p_ses->exec_mode == ST_EXEC_MODE_ADSP) {
                     st_session_pause(p_ses);
@@ -2341,6 +2342,10 @@
         goto exit;
     }
 
+    ALOGD("%s:[%d] fs detections: %d, ss detections: %d, ss rejections: %d",
+        __func__, handle, st_session->fs_det_count, st_session->ss_det_count,
+        st_session->ss_rej_count);
+
     if (st_session->callback) {
         status = stop_recognition_l(st_session);
         if (status) {
diff --git a/st_hw_session_lsm.c b/st_hw_session_lsm.c
index 312bd01..62f53d0 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-2020, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2021, 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
@@ -864,7 +864,10 @@
         ST_DBG_DECLARE(FILE *fptr_drv = NULL; static int file_cnt = 0);
         if (p_lsm_ses->common.stdev->enable_debug_dumps) {
             ST_DBG_FILE_OPEN_WR(fptr_drv, ST_DEBUG_DUMP_LOCATION,
-                                "st_lab_drv_data_ape", "pcm", file_cnt++);
+                                "st_lab_drv_data_ape", "pcm", file_cnt);
+            ALOGD("%s: Buffer data from DSP stored in: st_lab_drv_data_ape_%d.bin",
+                __func__, file_cnt);
+            file_cnt++;
         }
 
         ATRACE_BEGIN("sthal:lsm: buffer_thread_loop");
@@ -1226,11 +1229,14 @@
             ST_DBG_DECLARE(FILE *detect_fd = NULL;
                 static int detect_fd_cnt = 0);
             ST_DBG_FILE_OPEN_WR(detect_fd, ST_DEBUG_DUMP_LOCATION,
-                "lsm_detection_event", "bin", detect_fd_cnt++);
+                "lsm_detection_event", "bin", detect_fd_cnt);
             ST_DBG_FILE_WRITE(detect_fd,
                 hw_sess_event.payload.detected.detect_payload,
                 hw_sess_event.payload.detected.payload_size);
             ST_DBG_FILE_CLOSE(detect_fd);
+            ALOGD("%s: Detection payload from DSP stored in: lsm_detection_event_%d.bin",
+                __func__, detect_fd_cnt);
+            detect_fd_cnt++;
         }
 
         pthread_mutex_unlock(&p_lsm_ses->callback_thread_lock);
@@ -1488,6 +1494,8 @@
     struct snd_lsm_module_params lsm_params = {0};
     struct st_module_param_info *mparams = NULL;
 
+    ALOGD("%s: Reg PDK5 sound model", __func__);
+
     mparams = p_ses->lsm_usecase.params;
     sm_header.model_id = model_id;
     sm_header.model_size = sm_size;
@@ -2319,10 +2327,13 @@
             ST_DBG_DECLARE(FILE *lsm_params_fd = NULL;
                 static int lsm_params_cnt = 0);
             ST_DBG_FILE_OPEN_WR(lsm_params_fd, ST_DEBUG_DUMP_LOCATION,
-                "lsm_params_data", "bin", lsm_params_cnt++);
+                "lsm_params_data", "bin", lsm_params_cnt);
             ST_DBG_FILE_WRITE(lsm_params_fd, lsm_params.params,
                 lsm_params.data_size);
             ST_DBG_FILE_CLOSE(lsm_params_fd);
+            ALOGD("%s: LSM module params stored in: lsm_params_data_%d.bin",
+                __func__, lsm_params_cnt);
+            lsm_params_cnt++;
         }
 
         status = lsm_set_module_params(p_lsm_ses, &lsm_params);
@@ -2443,10 +2454,13 @@
                 ST_DBG_DECLARE(FILE *lsm_params_fd = NULL;
                     static int lsm_params_cnt = 0);
                 ST_DBG_FILE_OPEN_WR(lsm_params_fd, ST_DEBUG_DUMP_LOCATION,
-                    "lsm_params_data", "bin", lsm_params_cnt++);
+                    "lsm_params_data", "bin", lsm_params_cnt);
                 ST_DBG_FILE_WRITE(lsm_params_fd, lsm_params.params,
                     lsm_params.data_size);
                 ST_DBG_FILE_CLOSE(lsm_params_fd);
+                ALOGD("%s: Multi Stage LSM module params stored in: lsm_params_data_%d.bin",
+                    __func__, lsm_params_cnt);
+                lsm_params_cnt++;
             }
 
             status = lsm_set_module_params(p_lsm_ses, &lsm_params);
@@ -3214,10 +3228,13 @@
         ST_DBG_DECLARE(FILE *req_event_fd = NULL;
             static int req_event_cnt = 0);
         ST_DBG_FILE_OPEN_WR(req_event_fd, ST_DEBUG_DUMP_LOCATION,
-            "requested_event_lsm", "bin", req_event_cnt++);
+            "requested_event_lsm", "bin", req_event_cnt);
         ST_DBG_FILE_WRITE(req_event_fd, param_info.param_data,
             param_info.param_size);
         ST_DBG_FILE_CLOSE(req_event_fd);
+        ALOGD("%s: Requested detection event dump stored in: lsm_params_data_%d.bin",
+            __func__, req_event_cnt);
+        req_event_cnt++;
     }
 
     status = lsm_set_module_params(p_lsm_ses, &lsm_params);
diff --git a/st_second_stage.c b/st_second_stage.c
index 65c558d..f01fc44 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-2020, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2018-2021, 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
@@ -311,8 +311,10 @@
 
     ALOGV("%s: Issuing capi_get_param for param %d", __func__,
         VOICEPRINT2_ID_RESULT);
+    ATRACE_BEGIN("sthal:second_stage: get_result for user verification (VOP)");
     rc = ss_session->capi_handle->vtbl_ptr->get_param(ss_session->capi_handle,
         VOICEPRINT2_ID_RESULT, NULL, &capi_result_ptr);
+    ATRACE_END();
     if (CAPI_V2_EOK != rc) {
         ALOGE("%s: get_param failed, result = %d", __func__, rc);
         ret = -EINVAL;
@@ -345,8 +347,6 @@
 
     ALOGV("%s: Enter", __func__);
 
-    start_time = get_current_time_ns();
-
     process_input_buff = calloc(1, ss_session->buff_sz);
     if (!process_input_buff) {
         ALOGE("%s: failed to allocate process_input_buff", __func__);
@@ -412,6 +412,9 @@
             ret = pthread_cond_timedwait(&ss_session->cond, &ss_session->lock,
                 &tspec);
             ALOGV("%s: done waiting on cond", __func__);
+
+            start_time = get_current_time_ns();
+
             if (ret) {
                 ALOGE("%s: ERROR. read wait timed out, ret %d", __func__, ret);
                 break;
@@ -550,7 +553,10 @@
             if (st_sec_stage->stdev->enable_debug_dumps) {
                 ST_DBG_FILE_OPEN_WR(st_sec_stage->dump_fp,
                     ST_DEBUG_DUMP_LOCATION, "ss_buf_kw_det", "bin",
-                    ss_fd_cnt_kw_det++);
+                    ss_fd_cnt_kw_det);
+                ALOGD("%s: 2nd stage KWD buffer stored in: ss_buf_kw_det_%d.bin",
+                    __func__, ss_fd_cnt_kw_det);
+                ss_fd_cnt_kw_det++;
             }
             start_keyword_detection(st_sec_stage);
             if (st_sec_stage->stdev->enable_debug_dumps)
@@ -559,7 +565,10 @@
             if (st_sec_stage->stdev->enable_debug_dumps) {
                 ST_DBG_FILE_OPEN_WR(st_sec_stage->dump_fp,
                     ST_DEBUG_DUMP_LOCATION, "ss_buf_user_ver", "bin",
-                    ss_fd_cnt_user_ver++);
+                    ss_fd_cnt_user_ver);
+                ALOGD("%s: 2nd stage UV buffer stored in: ss_buf_user_ver_%d.bin",
+                    __func__, ss_fd_cnt_user_ver);
+                ss_fd_cnt_user_ver++;
             }
             start_user_verification(st_sec_stage);
             if (st_sec_stage->stdev->enable_debug_dumps)
diff --git a/st_session.c b/st_session.c
index 3f09fcb..cff561e 100644
--- a/st_session.c
+++ b/st_session.c
@@ -4,7 +4,7 @@
  * user session. This state machine implements logic for handling all user
  * interactions, detectinos, SSR and Audio Concurencies.
  *
- * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2021, 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
@@ -393,9 +393,12 @@
     if (stdev->enable_debug_dumps) {
         ST_DBG_DECLARE(FILE *sm_fd = NULL; static int sm_cnt = 0);
         ST_DBG_FILE_OPEN_WR(sm_fd, ST_DEBUG_DUMP_LOCATION,
-            "st_smlib_output_merged_sm", "bin", sm_cnt++);
+            "st_smlib_output_merged_sm", "bin", sm_cnt);
         ST_DBG_FILE_WRITE(sm_fd, out_model->data, out_model->size);
         ST_DBG_FILE_CLOSE(sm_fd);
+        ALOGD("%s: SM returned from SML merge stored in: st_smlib_output_merged_sm_%d.bin",
+             __func__, sm_cnt);
+        sm_cnt++;
     }
     ALOGV("%s: Exit", __func__);
     return 0;
@@ -473,9 +476,12 @@
     if (stdev->enable_debug_dumps && out_model->data && out_model->size) {
         ST_DBG_DECLARE(FILE *sm_fd = NULL; static int sm_cnt = 0);
         ST_DBG_FILE_OPEN_WR(sm_fd, ST_DEBUG_DUMP_LOCATION,
-            "st_smlib_output_deleted_sm", "bin", sm_cnt++);
+            "st_smlib_output_deleted_sm", "bin", sm_cnt);
         ST_DBG_FILE_WRITE(sm_fd, out_model->data, out_model->size);
         ST_DBG_FILE_CLOSE(sm_fd);
+        ALOGD("%s: SM returned from SML delete stored in: st_smlib_output_deleted_sm_%d.bin",
+             __func__, sm_cnt);
+        sm_cnt++;
     }
     return 0;
 
@@ -2475,11 +2481,14 @@
         ST_DBG_DECLARE(FILE *rc_opaque_fd = NULL;
             static int rc_opaque_cnt = 0);
         ST_DBG_FILE_OPEN_WR(rc_opaque_fd, ST_DEBUG_DUMP_LOCATION,
-            "rc_config_opaque_data", "bin", rc_opaque_cnt++);
+            "rc_config_opaque_data", "bin", rc_opaque_cnt);
         ST_DBG_FILE_WRITE(rc_opaque_fd,
             (uint8_t *)rc_config + rc_config->data_offset,
             rc_config->data_size);
         ST_DBG_FILE_CLOSE(rc_opaque_fd);
+        ALOGD("%s: rc_config opaque data dump stored in: rc_config_opaque_data_%d.bin",
+             __func__, rc_opaque_cnt);
+        rc_opaque_cnt++;
     }
 
     if (!st_hw_ses) {
@@ -3826,9 +3835,12 @@
                 ST_DBG_DECLARE(FILE *opaque_fd = NULL;
                     static int opaque_cnt = 0);
                 ST_DBG_FILE_OPEN_WR(opaque_fd, ST_DEBUG_DUMP_LOCATION,
-                    "detection_opaque_data", "bin", opaque_cnt++);
+                    "detection_opaque_data", "bin", opaque_cnt);
                 ST_DBG_FILE_WRITE(opaque_fd, opaque_data, opaque_size);
                 ST_DBG_FILE_CLOSE(opaque_fd);
+                ALOGD("%s: detection opaque data dump stored in: detection_opaque_data_%d.bin",
+                     __func__, opaque_cnt);
+                opaque_cnt++;
             }
         } else {
             status = parse_generic_event_without_opaque_data(st_ses, payload,
@@ -4034,10 +4046,13 @@
         if (st_ses->stdev->enable_debug_dumps) {
             ST_DBG_DECLARE(FILE *opaque_fd = NULL; static int opaque_cnt = 0);
             ST_DBG_FILE_OPEN_WR(opaque_fd, ST_DEBUG_DUMP_LOCATION,
-                                "detection_opaque_data", "bin", opaque_cnt++);
+                                "detection_opaque_data", "bin", opaque_cnt);
             ST_DBG_FILE_WRITE(opaque_fd, (opaque_data - opaque_size),
                               opaque_size);
             ST_DBG_FILE_CLOSE(opaque_fd);
+            ALOGD("%s: detection opaque data dump stored in: detection_opaque_data_%d.bin",
+                     __func__, opaque_cnt);
+            opaque_cnt++;
         }
 
     } else {
@@ -4342,6 +4357,7 @@
                 ATRACE_ASYNC_END("sthal: detection success",
                     st_ses->sm_handle);
 
+                stc_ses->ss_det_count++;
                 status = process_detection_event(st_ses,
                     st_ses->det_session_ev->payload.detected.timestamp,
                     st_ses->det_session_ev->payload.detected.detect_status,
@@ -4370,7 +4386,7 @@
                 capture_requested = stc_ses->rc_config->capture_requested;
                 cookie = stc_ses->cookie;
                 callback_time = get_current_time_ns();
-                ALOGD("%s:[c%d] Second stage detected successfully, "
+                ALOGD("%s:[c%d] Second stage detection SUCCESS, "
                     "calling client callback", __func__, stc_ses->sm_handle);
                 ALOGD("%s: Total sthal processing time: %llums", __func__,
                     (callback_time - st_ses->detection_event_time) /
@@ -4413,8 +4429,9 @@
             } else {
                 ATRACE_ASYNC_END("sthal: detection reject",
                     st_ses->sm_handle);
-                ALOGD("%s: Second stage did NOT detect, restarting st_session",
-                    __func__);
+                stc_ses->ss_rej_count++;
+                ALOGD("%s: Second stage detection REJECT, count = %d, "
+                    "restarting st_session", __func__, stc_ses->ss_rej_count);
                 st_ses->hw_ses_current->fptrs->stop_buffering(
                     st_ses->hw_ses_current);
                 start_second_stage_for_client(stc_ses);
@@ -5368,6 +5385,7 @@
             pthread_mutex_unlock(&st_ses->lock);
             break;
         }
+        stc_ses->fs_det_count++;
         st_ses->det_stc_ses = stc_ses;
         st_ses->hw_ses_current->enable_second_stage = false; /* Initialize */
         stc_ses->detection_sent = false;
@@ -5429,9 +5447,13 @@
         if (!status && st_ses->lab_enabled) {
             if (stc_ses->rc_config->capture_requested ||
                 !list_empty(&stc_ses->second_stage_list)) {
-                if (st_ses->stdev->enable_debug_dumps) {
+                if (st_ses->stdev->enable_debug_dumps &&
+                    stc_ses->rc_config->capture_requested) {
                     ST_DBG_FILE_OPEN_WR(st_ses->lab_fp, ST_DEBUG_DUMP_LOCATION,
-                        "lab_capture", "bin", file_cnt++);
+                        "lab_capture", "bin", file_cnt);
+                    ALOGD("%s: Voice Request stored in: lab_capture_%d.bin",
+                        __func__, file_cnt);
+                    file_cnt++;
                 }
                 STATE_TRANSITION(st_ses, buffering_state_fn);
                 lab_enabled = true;
@@ -5808,10 +5830,10 @@
         /* Note: this function may block if there is no PCM data ready*/
         hw_ses->fptrs->read_pcm(hw_ses, ev->payload.readpcm.out_buff,
             ev->payload.readpcm.out_buff_size);
-        if (st_ses->stdev->enable_debug_dumps) {
+        if (st_ses->stdev->enable_debug_dumps &&
+            stc_ses->rc_config->capture_requested)
             ST_DBG_FILE_WRITE(st_ses->lab_fp, ev->payload.readpcm.out_buff,
                 ev->payload.readpcm.out_buff_size);
-        }
         break;
     case ST_SES_EV_END_BUFFERING:
         if (stc_ses == st_ses->det_stc_ses) {
@@ -5853,7 +5875,8 @@
         hw_ses->fptrs->stop_buffering(hw_ses);
         STATE_TRANSITION(st_ses, active_state_fn);
         DISPATCH_EVENT(st_ses, *ev, status);
-        if (st_ses->stdev->enable_debug_dumps)
+        if (st_ses->stdev->enable_debug_dumps &&
+            stc_ses->rc_config->capture_requested)
             ST_DBG_FILE_CLOSE(st_ses->lab_fp);
         break;
 
diff --git a/st_session.h b/st_session.h
index 04cdcae..52f4caa 100644
--- a/st_session.h
+++ b/st_session.h
@@ -4,7 +4,7 @@
  * abstraction represents a single st session from the application/framework
  * point of view.
  *
- * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
+ * Copyright (c) 2016-2021, 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
@@ -161,6 +161,10 @@
     struct sound_model_info sm_info;
 
     st_module_type_t f_stage_version;
+
+    uint32_t fs_det_count;
+    uint32_t ss_det_count;
+    uint32_t ss_rej_count;
 };
 
 struct st_proxy_session {