aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSundar Raman2013-07-18 17:49:53 -0500
committerSundar Raman2013-07-25 14:39:25 -0500
commitcb0f3d071a1828d5d638fb065bec61b1e5713f90 (patch)
treec61d5c80e398c3c3bb3523d2728f2dd713092f3e
parent759e49df9bb75acfe7df806946448740c79fd537 (diff)
downloadkernel-video-cb0f3d071a1828d5d638fb065bec61b1e5713f90.tar.gz
kernel-video-cb0f3d071a1828d5d638fb065bec61b1e5713f90.tar.xz
kernel-video-cb0f3d071a1828d5d638fb065bec61b1e5713f90.zip
gc320: Increase VRAM buffers to 4
With GC320 driver integrated and LCD/HDMI output using VRAM buffers for SGX composition, it is necessary to increase the number of VRAM buffers to 4 inorder to allow GC320 to use 2 buffers for composition output. Change-Id: I2a481ab9c5c16cd26ac5635b543f41e8c5929fdf Signed-off-by: Sundar Raman <a0393242@ti.com>
-rw-r--r--arch/arm/plat-omap/sgx_omaplfb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/plat-omap/sgx_omaplfb.c b/arch/arm/plat-omap/sgx_omaplfb.c
index efa08a6d691..e4cad796c80 100644
--- a/arch/arm/plat-omap/sgx_omaplfb.c
+++ b/arch/arm/plat-omap/sgx_omaplfb.c
@@ -35,12 +35,12 @@
35 35
36static struct sgx_omaplfb_config omaplfb_config[OMAPLFB_NUM_DEV] = { 36static struct sgx_omaplfb_config omaplfb_config[OMAPLFB_NUM_DEV] = {
37 { 37 {
38 .vram_buffers = 2, 38 .vram_buffers = 4,
39 .swap_chain_length = 2, 39 .swap_chain_length = 2,
40 }, 40 },
41 { 41 {
42 .tiler2d_buffers = 0, 42 .tiler2d_buffers = 0,
43 .vram_buffers = 2, 43 .vram_buffers = 4,
44 .swap_chain_length = 2, 44 .swap_chain_length = 2,
45 } 45 }
46}; 46};