goldfish_fb: Set pixclock = 0
authorChristoffer Dall <christoffer.dall@linaro.org>
Thu, 19 Jun 2014 14:24:04 +0000 (16:24 +0200)
committerGreg Hackmann <ghackmann@google.com>
Tue, 29 Jul 2014 19:50:10 +0000 (12:50 -0700)
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@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
drivers/video/goldfishfb.c

index 0ca9cb789a856930bb59e1315feb76a0f654c0ef..917ced59a87426e390714a18709d46429d66bda1 100644 (file)
@@ -234,7 +234,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;