From 99d767a0cbf8ee7406000cbac647d9681d885282 Mon Sep 17 00:00:00 2001
From: notaz <notasas@gmail.com>
Date: Sat, 18 Aug 2012 01:39:37 +0300
Subject: [PATCH] frontend: omap; increase vram allocation

---
 frontend/plat_omap.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/frontend/plat_omap.c b/frontend/plat_omap.c
index b01c6343..e5b6c04e 100644
--- a/frontend/plat_omap.c
+++ b/frontend/plat_omap.c
@@ -52,8 +52,9 @@ static int omap_setup_layer_(int fd, int enabled, int x, int y, int w, int h)
 			perror("SETUP_PLANE");
 	}
 
-	if (mi.size < 640*512*3*3) {
-		mi.size = 640*512*3*3;
+	// upto 1024x512 (2x resolution enhancement)
+	if (mi.size < 1024*512*2 * 3) {
+		mi.size = 1024*512*2 * 3;
 		ret = ioctl(fd, OMAPFB_SETUP_MEM, &mi);
 		if (ret != 0) {
 			perror("SETUP_MEM");
-- 
2.39.5