msm: mpq8064: Increase VCAPs bus bandwidth request values
Experienced a problem that after receiving a bunch of successful
frames the VCAP would no longer capture frames properly.
The problem stems from a overflow as a result of bus bandwidth
request not being sufficient enough.
Change-Id: I3c059b7bb36f06c4b9ea4149565f941891da9326
Signed-off-by: Terence Hampson <thampson@codeaurora.org>
diff --git a/arch/arm/mach-msm/devices-8064.c b/arch/arm/mach-msm/devices-8064.c
index aa62810..2bc2428 100644
--- a/arch/arm/mach-msm/devices-8064.c
+++ b/arch/arm/mach-msm/devices-8064.c
@@ -2092,8 +2092,8 @@
{
.src = MSM_BUS_MASTER_VIDEO_CAP,
.dst = MSM_BUS_SLAVE_EBI_CH0,
- .ab = 1280 * 720 * 3 * 60 / 16,
- .ib = 1280 * 720 * 3 * 60 / 16 * 1.5,
+ .ab = 1280 * 720 * 3 * 60,
+ .ib = 1280 * 720 * 3 * 60 * 1.5,
},
};
@@ -2101,8 +2101,8 @@
{
.src = MSM_BUS_MASTER_VIDEO_CAP,
.dst = MSM_BUS_SLAVE_EBI_CH0,
- .ab = 1280 * 720 * 3 * 60 / 16,
- .ib = 1280 * 720 * 3 * 60 / 16 * 1.5,
+ .ab = 1280 * 720 * 3 * 60,
+ .ib = 1280 * 720 * 3 * 60 * 1.5,
},
};
@@ -2110,8 +2110,8 @@
{
.src = MSM_BUS_MASTER_VIDEO_CAP,
.dst = MSM_BUS_SLAVE_EBI_CH0,
- .ab = 1920 * 1080 * 3 * 60 / 16,
- .ib = 1920 * 1080 * 3 * 60 / 16 * 1.5,
+ .ab = 1920 * 1080 * 3 * 60,
+ .ib = 1920 * 1080 * 3 * 60 * 1.5,
},
};