Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 593ff340 authored by Venkat Chinta's avatar Venkat Chinta Committed by Gerrit - the friendly Code Review server
Browse files

msm: camera: ife: Remove reset type override



This change removes the VFE reset type override that
was introduced to a hardware limitation that has since
been rectified.

CRs-Fixed: 2590331
Change-Id: I2232ab69a9c66e9e14dd849755d8b4eba63fe136
Signed-off-by: default avatarVenkat Chinta <vchinta@codeaurora.org>
parent f3a1bc3d
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -12,10 +12,10 @@
#include "cam_debug_util.h"
#include "cam_vfe_soc.h"

#define CAM_VFE_HW_RESET_HW_AND_REG_VAL       0x00000007
#define CAM_VFE_HW_RESET_HW_VAL               0x007F0000
#define CAM_VFE_HW_RESET_HW_AND_REG_VAL       0x00000001
#define CAM_VFE_HW_RESET_HW_VAL               0x00010000
#define CAM_VFE_LITE_HW_RESET_AND_REG_VAL     0x00000002
#define CAM_VFE_LITE_HW_RESET_HW_VAL          0x0000003D
#define CAM_VFE_LITE_HW_RESET_HW_VAL          0x00000001

struct cam_vfe_top_ver3_common_data {
	struct cam_hw_soc_info                     *soc_info;
@@ -281,11 +281,6 @@ int cam_vfe_top_ver3_reset(void *device_priv,
			reset_reg_val = CAM_VFE_LITE_HW_RESET_HW_VAL;
		break;
	}
	/* override due to hw limitation */
	if (!soc_private->is_ife_lite)
		reset_reg_val = CAM_VFE_HW_RESET_HW_AND_REG_VAL;
	else
		reset_reg_val = CAM_VFE_LITE_HW_RESET_AND_REG_VAL;

	CAM_DBG(CAM_ISP, "reset reg value: 0x%x", reset_reg_val);