msm: camera: isp: Skip reapply of DMI config on bubble recovery

Updating same DMI bank, which is consumed by HW, can result in
violations so during bubble recvery skip  updating DMI config.

CRs-Fixed: 2511286
Change-Id: I1af2dbf2f1b49afcd4276d3f5759e5ba6d8da637
Signed-off-by: Trishansh Bhardwaj <tbhardwa@codeaurora.org>
This commit is contained in:
Trishansh Bhardwaj
2019-09-13 16:03:28 +05:30
committed by Gerrit - the friendly Code Review server
parent 70c486722f
commit 921bdca4b0
6 changed files with 55 additions and 17 deletions

View File

@@ -108,6 +108,7 @@ struct cam_isp_ctx_irq_ops {
* @bubble_report: Flag to track if bubble report is active on
* current request
* @hw_update_data: HW update data for this request
* @reapply: True if reapplying after bubble
*
*/
struct cam_isp_ctx_req {
@@ -124,6 +125,7 @@ struct cam_isp_ctx_req {
int32_t bubble_report;
struct cam_isp_prepare_hw_update_data hw_update_data;
bool bubble_detected;
bool reapply;
};
/**