arm64: use common image prefix
[openwrt/svn-archive/archive.git] / target / linux / omap / patches-3.18 / 0752-video-da8xx-fb-fix-defect-with-vsync-callback-invoca.patch
1 From c99bd415829ef29adf71bb1e1b577650f10e93f5 Mon Sep 17 00:00:00 2001
2 From: Darren Etheridge <detheridge@ti.com>
3 Date: Mon, 4 Nov 2013 12:27:40 -0600
4 Subject: [PATCH 752/752] video/da8xx-fb fix defect with vsync callback
5 invocation
6
7 Fix defect where SGX is running at half of the expected framerate.
8 The original patch (@ commit ID 9a1a810516ae9cb3259b898b6879901c5b44fa90)
9 seems to have a mistake where it only calls the callback
10 for the even or the odd frames depending on the revision of the LCD controller
11 This patch corrects this and invokes the callback for both odd and even frame
12 for just the Rev02 version of the LCDC (won't find an SGX GPU on a Rev01).
13
14 Signed-off-by: Darren Etheridge <detheridge@ti.com>
15 ---
16 drivers/video/fbdev/da8xx-fb.c | 4 ++--
17 1 file changed, 2 insertions(+), 2 deletions(-)
18
19 --- a/drivers/video/fbdev/da8xx-fb.c
20 +++ b/drivers/video/fbdev/da8xx-fb.c
21 @@ -909,6 +909,8 @@ static irqreturn_t lcdc_irq_handler_rev0
22 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
23 par->vsync_flag = 1;
24 wake_up_interruptible(&par->vsync_wait);
25 + if (vsync_cb_handler)
26 + vsync_cb_handler(vsync_cb_arg);
27 }
28
29 /* Set only when controller is disabled and at the end of
30 @@ -974,8 +976,6 @@ static irqreturn_t lcdc_irq_handler_rev0
31 LCD_DMA_FRM_BUF_CEILING_ADDR_1_REG);
32 par->vsync_flag = 1;
33 wake_up_interruptible(&par->vsync_wait);
34 - if (vsync_cb_handler)
35 - vsync_cb_handler(vsync_cb_arg);
36 }
37 }
38