diff options
author | Christoffer Dall <christoffer.dall@linaro.org> | 2018-07-03 11:43:09 -0400 |
---|---|---|
committer | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> | 2018-07-03 11:43:09 -0400 |
commit | ace6033ec5c356615eaa3582fb1946e9eaff6662 (patch) | |
tree | c2532320205f73b054e8b8ed7aed8d6ac2d92038 /drivers/video | |
parent | 1ef4e117c85f7d237f30f6f18d0668d334b30695 (diff) |
video: fbdev: Set pixclock = 0 in goldfishfb
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>
Signed-off-by: Roman Kiryanov <rkir@google.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/fbdev/goldfishfb.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
237 | fb->fb.var.activate = FB_ACTIVATE_NOW; | 237 | fb->fb.var.activate = FB_ACTIVATE_NOW; |
238 | fb->fb.var.height = readl(fb->reg_base + FB_GET_PHYS_HEIGHT); | 238 | fb->fb.var.height = readl(fb->reg_base + FB_GET_PHYS_HEIGHT); |
239 | fb->fb.var.width = readl(fb->reg_base + FB_GET_PHYS_WIDTH); | 239 | fb->fb.var.width = readl(fb->reg_base + FB_GET_PHYS_WIDTH); |
240 | fb->fb.var.pixclock = 10000; | 240 | fb->fb.var.pixclock = 0; |
241 | 241 | ||
242 | fb->fb.var.red.offset = 11; | 242 | fb->fb.var.red.offset = 11; |
243 | fb->fb.var.red.length = 5; | 243 | fb->fb.var.red.length = 5; |