drm: omapdrm: Handle CRTC error IRQs directly
authorLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Wed, 27 May 2015 21:21:29 +0000 (00:21 +0300)
committerLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Mon, 19 Dec 2016 09:24:56 +0000 (11:24 +0200)
Instead of going through a complicated registration mechanism, just
expose the CRTC error IRQ function and call it directly from the main
IRQ handler.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/gpu/drm/omapdrm/omap_crtc.c
drivers/gpu/drm/omapdrm/omap_drv.h
drivers/gpu/drm/omapdrm/omap_irq.c

index 8dea89030e66e879949c88ce20c28aa7dd8cbc0f..ea274143cea0935c0d5b46c95050fc1e822b4e87 100644 (file)
@@ -37,7 +37,6 @@ struct omap_crtc {
        struct videomode vm;
 
        struct omap_drm_irq vblank_irq;
-       struct omap_drm_irq error_irq;
 
        bool ignore_digit_sync_lost;
 
@@ -275,10 +274,9 @@ static void omap_crtc_complete_page_flip(struct drm_crtc *crtc)
        spin_unlock_irqrestore(&dev->event_lock, flags);
 }
 
-static void omap_crtc_error_irq(struct omap_drm_irq *irq, uint32_t irqstatus)
+void omap_crtc_error_irq(struct drm_crtc *crtc, uint32_t irqstatus)
 {
-       struct omap_crtc *omap_crtc =
-                       container_of(irq, struct omap_crtc, error_irq);
+       struct omap_crtc *omap_crtc = to_omap_crtc(crtc);
 
        if (omap_crtc->ignore_digit_sync_lost) {
                irqstatus &= ~DISPC_IRQ_SYNC_LOST_DIGIT;
@@ -325,7 +323,6 @@ static void omap_crtc_destroy(struct drm_crtc *crtc)
        DBG("%s", omap_crtc->name);
 
        WARN_ON(omap_crtc->vblank_irq.registered);
-       omap_irq_unregister(crtc->dev, &omap_crtc->error_irq);
 
        drm_crtc_cleanup(crtc);
 
@@ -549,11 +546,6 @@ struct drm_crtc *omap_crtc_init(struct drm_device *dev,
        omap_crtc->vblank_irq.irqmask = pipe2vbl(crtc);
        omap_crtc->vblank_irq.irq = omap_crtc_vblank_irq;
 
-       omap_crtc->error_irq.irqmask =
-                       dispc_mgr_get_sync_lost_irq(channel);
-       omap_crtc->error_irq.irq = omap_crtc_error_irq;
-       omap_irq_register(dev, &omap_crtc->error_irq);
-
        ret = drm_crtc_init_with_planes(dev, crtc, plane, NULL,
                                        &omap_crtc_funcs, NULL);
        if (ret < 0) {
index a3594fa10ef396269332bcaee50af638889cb7ea..0d88c9798df9059c1e185fd53bf10735441a2196 100644 (file)
@@ -155,6 +155,7 @@ void omap_crtc_pre_uninit(void);
 struct drm_crtc *omap_crtc_init(struct drm_device *dev,
                struct drm_plane *plane, enum omap_channel channel, int id);
 int omap_crtc_wait_pending(struct drm_crtc *crtc);
+void omap_crtc_error_irq(struct drm_crtc *crtc, uint32_t irqstatus);
 
 struct drm_plane *omap_plane_init(struct drm_device *dev,
                int id, enum drm_plane_type type,
index 57a2de7e0d7ba66452649680bb18c52d7df66181..58c5efb267665c966c76ab5edfb74970382daf5f 100644 (file)
@@ -241,9 +241,13 @@ static irqreturn_t omap_irq_handler(int irq, void *arg)
 
        for (id = 0; id < priv->num_crtcs; id++) {
                struct drm_crtc *crtc = priv->crtcs[id];
+               enum omap_channel channel = omap_crtc_channel(crtc);
 
                if (irqstatus & pipe2vbl(crtc))
                        drm_handle_vblank(dev, id);
+
+               if (irqstatus & dispc_mgr_get_sync_lost_irq(channel))
+                       omap_crtc_error_irq(crtc, irqstatus);
        }
 
        omap_irq_fifo_underflow(priv, irqstatus);
@@ -279,6 +283,7 @@ int omap_drm_irq_install(struct drm_device *dev)
 {
        struct omap_drm_private *priv = dev->dev_private;
        struct omap_drm_irq *error_handler = &priv->error_handler;
+       unsigned int num_mgrs = dss_feat_get_num_mgrs();
        unsigned int max_planes;
        unsigned int i;
        int ret;
@@ -294,6 +299,9 @@ int omap_drm_irq_install(struct drm_device *dev)
                        priv->irq_mask |= omap_underflow_irqs[i];
        }
 
+       for (i = 0; i < num_mgrs; ++i)
+               priv->irq_mask |= dispc_mgr_get_sync_lost_irq(i);
+
        dispc_runtime_get();
        dispc_clear_irqstatus(0xffffffff);
        dispc_runtime_put();