[PATCH v2 3/3] video: fbdev: Set pixclock = 0 in goldfishfb

rkir at google.com rkir at google.com
Fri Jun 8 19:11:00 UTC 2018


From: Christoffer Dall <christoffer.dall at linaro.org>

User space Android code identifies pixclock == 0 as a sign for emulation
and will set the frame rate to 60 fps when reading this value, which is
the desired outcome.

Signed-off-by: Christoffer Dall <christoffer.dall at linaro.org>
Signed-off-by: Peter Maydell <peter.maydell at linaro.org>
Signed-off-by: Roman Kiryanov <rkir at google.com>
---
Changes in v2:
 - Updated the commit message to include "video: fbdev:".
 - Dropped Change-Id.
 - Signed-off the commit.

 drivers/video/fbdev/goldfishfb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/video/fbdev/goldfishfb.c b/drivers/video/fbdev/goldfishfb.c
index 01732858b60d..3a9e5f1b758e 100644
--- a/drivers/video/fbdev/goldfishfb.c
+++ b/drivers/video/fbdev/goldfishfb.c
@@ -237,7 +237,7 @@ static int goldfish_fb_probe(struct platform_device *pdev)
 	fb->fb.var.activate	= FB_ACTIVATE_NOW;
 	fb->fb.var.height	= readl(fb->reg_base + FB_GET_PHYS_HEIGHT);
 	fb->fb.var.width	= readl(fb->reg_base + FB_GET_PHYS_WIDTH);
-	fb->fb.var.pixclock	= 10000;
+	fb->fb.var.pixclock	= 0;
 
 	fb->fb.var.red.offset = 11;
 	fb->fb.var.red.length = 5;
-- 
2.18.0.rc1.242.g61856ae69a-goog



More information about the dri-devel mailing list