Skip to content

Commit

Permalink
drm/i914: Refactor vlv_display_irq_postinstall()
Browse files Browse the repository at this point in the history
Split the vlv display irq postinstall code to a separate function so
that we can share it with chv.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Ville Syrjälä authored and Daniel Vetter committed Nov 7, 2014
1 parent 70591a4 commit 0e6c9a9
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions drivers/gpu/drm/i915/i915_irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -3425,10 +3425,8 @@ void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
valleyview_display_irqs_uninstall(dev_priv);
}

static int valleyview_irq_postinstall(struct drm_device *dev)
static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
{
struct drm_i915_private *dev_priv = dev->dev_private;

dev_priv->irq_mask = ~0;

I915_WRITE(PORT_HOTPLUG_EN, 0);
Expand All @@ -3449,6 +3447,13 @@ static int valleyview_irq_postinstall(struct drm_device *dev)

I915_WRITE(VLV_IIR, 0xffffffff);
I915_WRITE(VLV_IIR, 0xffffffff);
}

static int valleyview_irq_postinstall(struct drm_device *dev)
{
struct drm_i915_private *dev_priv = dev->dev_private;

vlv_display_irq_postinstall(dev_priv);

gen5_gt_irq_postinstall(dev);

Expand Down

0 comments on commit 0e6c9a9

Please sign in to comment.