msm: camera: icp: icp debug improvement

ON receiving HFI_EVENT_SYS_ERROR event_id as part
of sys_error msg and event_data1 is set to
HFI_ERR_SYS_FATAL, trigger the crash.

CRs-Fixed: 2549369
Change-Id: Iddf56f46b2c07a703a787b0dedebd801081c93d6
Signed-off-by: Tejas Prajapati <tpraja@codeaurora.org>
This commit is contained in:
Tejas Prajapati 2019-10-16 10:39:45 +05:30 committed by Gerrit - the friendly Code Review server
parent 1f409d4bca
commit a3b0bbaa8c

View File

@ -2361,6 +2361,10 @@ static int cam_icp_mgr_process_fatal_error(
if (event_notify->event_id == HFI_EVENT_SYS_ERROR) {
CAM_INFO(CAM_ICP, "received HFI_EVENT_SYS_ERROR");
if (event_notify->event_data1 == HFI_ERR_SYS_FATAL) {
CAM_ERR(CAM_ICP, "received HFI_ERR_SYS_FATAL");
BUG();
}
rc = cam_icp_mgr_trigger_recovery(hw_mgr);
cam_icp_mgr_process_dbg_buf(icp_hw_mgr.a5_dbg_lvl);
}