diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-11-07 05:05:44 -0500 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-11-08 12:10:12 -0500 |
commit | 0fbe7870d7e97d6fa595652a8f8eaf159e4bb6c9 (patch) | |
tree | 268af43a3d492fe6b4640b19b61031f4e5a39122 | |
parent | 92d03a80489fbf0a35827b8b11b0a78703e34425 (diff) |
drm/i915: Wire up pipe CRC support for bdw
The layout of the CRC registers is the same as on hsw, only the
interrupt handling has changed a bit. So trivial to wire up, yay!
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/i915/i915_irq.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index 44209442ff1a..a06de99ed3fa 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c | |||
@@ -1808,6 +1808,9 @@ static irqreturn_t gen8_irq_handler(int irq, void *arg) | |||
1808 | intel_finish_page_flip_plane(dev, pipe); | 1808 | intel_finish_page_flip_plane(dev, pipe); |
1809 | } | 1809 | } |
1810 | 1810 | ||
1811 | if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE) | ||
1812 | hsw_pipe_crc_irq_handler(dev, pipe); | ||
1813 | |||
1811 | if (pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS) { | 1814 | if (pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS) { |
1812 | DRM_ERROR("Fault errors on pipe %c\n: 0x%08x", | 1815 | DRM_ERROR("Fault errors on pipe %c\n: 0x%08x", |
1813 | pipe_name(pipe), | 1816 | pipe_name(pipe), |
@@ -2898,6 +2901,7 @@ static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv) | |||
2898 | struct drm_device *dev = dev_priv->dev; | 2901 | struct drm_device *dev = dev_priv->dev; |
2899 | uint32_t de_pipe_enables = GEN8_PIPE_FLIP_DONE | | 2902 | uint32_t de_pipe_enables = GEN8_PIPE_FLIP_DONE | |
2900 | GEN8_PIPE_VBLANK | | 2903 | GEN8_PIPE_VBLANK | |
2904 | GEN8_PIPE_CDCLK_CRC_DONE | | ||
2901 | GEN8_DE_PIPE_IRQ_FAULT_ERRORS; | 2905 | GEN8_DE_PIPE_IRQ_FAULT_ERRORS; |
2902 | int pipe; | 2906 | int pipe; |
2903 | dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_enables; | 2907 | dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_enables; |