]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - queue-4.14/video-fbdev-set-pixclock-0-in-goldfishfb.patch
sign off on some patches
[thirdparty/kernel/stable-queue.git] / queue-4.14 / video-fbdev-set-pixclock-0-in-goldfishfb.patch
CommitLineData
b1d6352e
SL
1From 1b7759976c86629e935216518c6c981f63c772d7 Mon Sep 17 00:00:00 2001
2From: Christoffer Dall <christoffer.dall@linaro.org>
3Date: Tue, 3 Jul 2018 17:43:09 +0200
4Subject: video: fbdev: Set pixclock = 0 in goldfishfb
5
6[ Upstream commit ace6033ec5c356615eaa3582fb1946e9eaff6662 ]
7
8User space Android code identifies pixclock == 0 as a sign for emulation
9and will set the frame rate to 60 fps when reading this value, which is
10the desired outcome.
11
12Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
13Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
14Signed-off-by: Roman Kiryanov <rkir@google.com>
15Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16Signed-off-by: Sasha Levin <sashal@kernel.org>
af18a487 17Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
b1d6352e 18---
af18a487 19 drivers/video/fbdev/goldfishfb.c | 2 +-
b1d6352e
SL
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
b1d6352e
SL
22--- a/drivers/video/fbdev/goldfishfb.c
23+++ b/drivers/video/fbdev/goldfishfb.c
af18a487 24@@ -234,7 +234,7 @@ static int goldfish_fb_probe(struct plat
b1d6352e
SL
25 fb->fb.var.activate = FB_ACTIVATE_NOW;
26 fb->fb.var.height = readl(fb->reg_base + FB_GET_PHYS_HEIGHT);
27 fb->fb.var.width = readl(fb->reg_base + FB_GET_PHYS_WIDTH);
28- fb->fb.var.pixclock = 10000;
29+ fb->fb.var.pixclock = 0;
30
31 fb->fb.var.red.offset = 11;
32 fb->fb.var.red.length = 5;