aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media
diff options
context:
space:
mode:
authorJosh Wu <josh.wu@atmel.com>2014-11-25 04:30:25 -0500
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>2015-03-02 11:27:11 -0500
commitce037f19aaef992c634af653b17e61eee30a9404 (patch)
tree92eacbba08e01fa81f101dafebaa409ab2be871e /drivers/media
parent0e661006370b7e7fb9ac9d94f9c3500a62cd559b (diff)
[media] media: atmel-isi: increase the burst length to improve the performance
The burst length could be BEATS_4/8/16. Before this patch, isi use default value BEATS_4. To imporve the performance we could set it to BEATS_16. Otherwise sometime it would cause the ISI overflow error. Reported-by: Bo Shen <voice.shen@atmel.com> Signed-off-by: Josh Wu <josh.wu@atmel.com> Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/platform/soc_camera/atmel-isi.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/media/platform/soc_camera/atmel-isi.c b/drivers/media/platform/soc_camera/atmel-isi.c
index 8526bf5c8429..c835beb2a1a8 100644
--- a/drivers/media/platform/soc_camera/atmel-isi.c
+++ b/drivers/media/platform/soc_camera/atmel-isi.c
@@ -843,6 +843,8 @@ static int isi_camera_set_bus_param(struct soc_camera_device *icd)
843 if (isi->pdata.full_mode) 843 if (isi->pdata.full_mode)
844 cfg1 |= ISI_CFG1_FULL_MODE; 844 cfg1 |= ISI_CFG1_FULL_MODE;
845 845
846 cfg1 |= ISI_CFG1_THMASK_BEATS_16;
847
846 isi_writel(isi, ISI_CTRL, ISI_CTRL_DIS); 848 isi_writel(isi, ISI_CTRL, ISI_CTRL_DIS);
847 isi_writel(isi, ISI_CFG1, cfg1); 849 isi_writel(isi, ISI_CFG1, cfg1);
848 850