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

Commit 619f8dbb authored by Senthil Kumar Rajagopal's avatar Senthil Kumar Rajagopal Committed by Gerrit - the friendly Code Review server
Browse files

msm: isp: Increased the Scratch buffer size.



Scratch buffer size is not sufficient for 14 bit raw.
This leads to page fault. This change increases the size of
scratch buffer to accommodate 14 bit MIPI raw format.
CRs-Fixed: 970413

Change-Id: I866640158c11c0f69505e4fb6b12a9204e2a6ad4
Signed-off-by: default avatarSenthil Kumar Rajagopal <skrajago@codeaurora.org>
parent 2ab415c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2297,7 +2297,7 @@ static struct msm_vfe_axi_hardware_info msm_vfe40_axi_hw_info = {
	.num_rdi = 3,
	.num_rdi_master = 3,
	.min_wm_ub = 64,
	.scratch_buf_range = SZ_32M,
	.scratch_buf_range = SZ_32M + SZ_4M,
};

static struct msm_vfe_stats_hardware_info msm_vfe40_stats_hw_info = {
+1 −1
Original line number Diff line number Diff line
@@ -1944,7 +1944,7 @@ static struct msm_vfe_axi_hardware_info msm_vfe44_axi_hw_info = {
	.num_rdi = 3,
	.num_rdi_master = 3,
	.min_wm_ub = 96,
	.scratch_buf_range = SZ_32M,
	.scratch_buf_range = SZ_32M + SZ_4M,
};

static struct msm_vfe_stats_hardware_info msm_vfe44_stats_hw_info = {
+1 −1
Original line number Diff line number Diff line
@@ -2048,7 +2048,7 @@ static struct msm_vfe_axi_hardware_info msm_vfe46_axi_hw_info = {
	.num_rdi = 3,
	.num_rdi_master = 3,
	.min_wm_ub = 96,
	.scratch_buf_range = SZ_32M,
	.scratch_buf_range = SZ_32M + SZ_4M,
};

static struct msm_vfe_stats_hardware_info msm_vfe46_stats_hw_info = {
+1 −1
Original line number Diff line number Diff line
@@ -2288,7 +2288,7 @@ static struct msm_vfe_axi_hardware_info msm_vfe47_axi_hw_info = {
	.num_rdi = 3,
	.num_rdi_master = 3,
	.min_wm_ub = 96,
	.scratch_buf_range = SZ_32M,
	.scratch_buf_range = SZ_32M + SZ_4M,
};

static struct msm_vfe_stats_hardware_info msm_vfe47_stats_hw_info = {