]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/tilcdc: Enable frame done irq and functionality for LCDC rev 1
authorJyri Sarha <jsarha@ti.com>
Mon, 21 Nov 2016 16:30:19 +0000 (18:30 +0200)
committerJyri Sarha <jsarha@ti.com>
Wed, 30 Nov 2016 12:20:03 +0000 (14:20 +0200)
We should wait for the last frame to complete before shutting things
down also on LCDC rev 1.

Signed-off-by: Jyri Sarha <jsarha@ti.com>
Tested-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
drivers/gpu/drm/tilcdc/tilcdc_crtc.c
drivers/gpu/drm/tilcdc/tilcdc_regs.h

index fb244220542417623a10862b8ff94470a0eb0dac..9942b0577d6e556a2fce45b1d66c3ac410bf5c37 100644 (file)
@@ -171,7 +171,7 @@ static void tilcdc_crtc_enable_irqs(struct drm_device *dev)
 
        if (priv->rev == 1) {
                tilcdc_set(dev, LCDC_RASTER_CTRL_REG,
-                       LCDC_V1_SYNC_LOST_INT_ENA |
+                       LCDC_V1_SYNC_LOST_INT_ENA | LCDC_V1_FRAME_DONE_INT_ENA |
                        LCDC_V1_UNDERFLOW_INT_ENA);
                tilcdc_set(dev, LCDC_DMA_CTRL_REG,
                        LCDC_V1_END_OF_FRAME_INT_ENA);
@@ -190,7 +190,7 @@ static void tilcdc_crtc_disable_irqs(struct drm_device *dev)
        /* disable irqs that we might have enabled: */
        if (priv->rev == 1) {
                tilcdc_clear(dev, LCDC_RASTER_CTRL_REG,
-                       LCDC_V1_SYNC_LOST_INT_ENA |
+                       LCDC_V1_SYNC_LOST_INT_ENA | LCDC_V1_FRAME_DONE_INT_ENA |
                        LCDC_V1_UNDERFLOW_INT_ENA | LCDC_V1_PL_INT_ENA);
                tilcdc_clear(dev, LCDC_DMA_CTRL_REG,
                        LCDC_V1_END_OF_FRAME_INT_ENA);
@@ -935,13 +935,17 @@ irqreturn_t tilcdc_crtc_irq(struct drm_crtc *crtc)
                }
        }
 
+       if (stat & LCDC_FRAME_DONE) {
+               tilcdc_crtc->frame_done = true;
+               wake_up(&tilcdc_crtc->frame_done_wq);
+               /* rev 1 lcdc appears to hang if irq is not disbaled here */
+               if (priv->rev == 1)
+                       tilcdc_clear(dev, LCDC_RASTER_CTRL_REG,
+                                    LCDC_V1_FRAME_DONE_INT_ENA);
+       }
+
        /* For revision 2 only */
        if (priv->rev == 2) {
-               if (stat & LCDC_FRAME_DONE) {
-                       tilcdc_crtc->frame_done = true;
-                       wake_up(&tilcdc_crtc->frame_done_wq);
-               }
-
                /* Indicate to LCDC that the interrupt service routine has
                 * completed, see 13.3.6.1.6 in AM335x TRM.
                 */
index d69a940adbea82c334a2f444b4d04fa151360f9b..9d528c0a67a4fbffcb193a6b3f2f0843ff1c06f3 100644 (file)
@@ -67,6 +67,7 @@
 #define LCDC_V1_PL_INT_ENA                       BIT(4)
 #define LCDC_V2_PL_INT_ENA                       BIT(6)
 #define LCDC_V1_SYNC_LOST_INT_ENA                BIT(5)
+#define LCDC_V1_FRAME_DONE_INT_ENA               BIT(3)
 #define LCDC_MONOCHROME_MODE                     BIT(1)
 #define LCDC_RASTER_ENABLE                       BIT(0)
 #define LCDC_TFT_ALT_ENABLE                      BIT(23)