blob: 77c123cc88179e7f0ac3ef40af6d75fd34f59583 [file] [log] [blame]
Daniel Vetter47339cd2014-09-30 10:56:46 +02001/*
2 * Copyright © 2014 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Daniel Vetter <daniel.vetter@ffwll.ch>
25 *
26 */
27
28#include "i915_drv.h"
29#include "intel_drv.h"
30
Daniel Vetteref073882014-09-30 10:56:50 +020031/**
32 * DOC: fifo underrun handling
33 *
34 * The i915 driver checks for display fifo underruns using the interrupt signals
35 * provided by the hardware. This is enabled by default and fairly useful to
36 * debug display issues, especially watermark settings.
37 *
38 * If an underrun is detected this is logged into dmesg. To avoid flooding logs
39 * and occupying the cpu underrun interrupts are disabled after the first
40 * occurrence until the next modeset on a given pipe.
41 *
42 * Note that underrun detection on gmch platforms is a bit more ugly since there
43 * is no interrupt (despite that the signalling bit is in the PIPESTAT pipe
44 * interrupt register). Also on some other platforms underrun interrupts are
45 * shared, which means that if we detect an underrun we need to disable underrun
46 * reporting on all pipes.
47 *
48 * The code also supports underrun detection on the PCH transcoder.
49 */
50
Daniel Vetter47339cd2014-09-30 10:56:46 +020051static bool ivb_can_enable_err_int(struct drm_device *dev)
52{
Chris Wilsonfac5e232016-07-04 11:34:36 +010053 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter47339cd2014-09-30 10:56:46 +020054 struct intel_crtc *crtc;
55 enum pipe pipe;
56
Chris Wilson67520412017-03-02 13:28:01 +000057 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetter47339cd2014-09-30 10:56:46 +020058
59 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä98187832016-10-31 22:37:10 +020060 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Daniel Vetter47339cd2014-09-30 10:56:46 +020061
62 if (crtc->cpu_fifo_underrun_disabled)
63 return false;
64 }
65
66 return true;
67}
68
69static bool cpt_can_enable_serr_int(struct drm_device *dev)
70{
Chris Wilsonfac5e232016-07-04 11:34:36 +010071 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter47339cd2014-09-30 10:56:46 +020072 enum pipe pipe;
73 struct intel_crtc *crtc;
74
Chris Wilson67520412017-03-02 13:28:01 +000075 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetter47339cd2014-09-30 10:56:46 +020076
77 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä98187832016-10-31 22:37:10 +020078 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Daniel Vetter47339cd2014-09-30 10:56:46 +020079
80 if (crtc->pch_fifo_underrun_disabled)
81 return false;
82 }
83
84 return true;
85}
86
Ville Syrjäläaca7b682015-10-30 19:22:21 +020087static void i9xx_check_fifo_underruns(struct intel_crtc *crtc)
Daniel Vetter47339cd2014-09-30 10:56:46 +020088{
Ville Syrjäläaca7b682015-10-30 19:22:21 +020089 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020090 i915_reg_t reg = PIPESTAT(crtc->pipe);
Ville Syrjälä6b12ca52017-09-14 18:17:31 +030091 u32 enable_mask;
Daniel Vetter47339cd2014-09-30 10:56:46 +020092
Chris Wilson67520412017-03-02 13:28:01 +000093 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetter47339cd2014-09-30 10:56:46 +020094
Ville Syrjälä6b12ca52017-09-14 18:17:31 +030095 if ((I915_READ(reg) & PIPE_FIFO_UNDERRUN_STATUS) == 0)
Ville Syrjäläaca7b682015-10-30 19:22:21 +020096 return;
Daniel Vetter47339cd2014-09-30 10:56:46 +020097
Ville Syrjälä6b12ca52017-09-14 18:17:31 +030098 enable_mask = i915_pipestat_enable_mask(dev_priv, crtc->pipe);
99 I915_WRITE(reg, enable_mask | PIPE_FIFO_UNDERRUN_STATUS);
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200100 POSTING_READ(reg);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200101
Ville Syrjälä53a79152017-03-02 19:15:08 +0200102 trace_intel_cpu_fifo_underrun(dev_priv, crtc->pipe);
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200103 DRM_ERROR("pipe %c underrun\n", pipe_name(crtc->pipe));
Daniel Vetter47339cd2014-09-30 10:56:46 +0200104}
105
106static void i9xx_set_fifo_underrun_reporting(struct drm_device *dev,
107 enum pipe pipe,
108 bool enable, bool old)
109{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100110 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200111 i915_reg_t reg = PIPESTAT(pipe);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200112
Chris Wilson67520412017-03-02 13:28:01 +0000113 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200114
115 if (enable) {
Ville Syrjälä6b12ca52017-09-14 18:17:31 +0300116 u32 enable_mask = i915_pipestat_enable_mask(dev_priv, pipe);
117
118 I915_WRITE(reg, enable_mask | PIPE_FIFO_UNDERRUN_STATUS);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200119 POSTING_READ(reg);
120 } else {
Ville Syrjälä6b12ca52017-09-14 18:17:31 +0300121 if (old && I915_READ(reg) & PIPE_FIFO_UNDERRUN_STATUS)
Daniel Vetter47339cd2014-09-30 10:56:46 +0200122 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
123 }
124}
125
126static void ironlake_set_fifo_underrun_reporting(struct drm_device *dev,
127 enum pipe pipe, bool enable)
128{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100129 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200130 uint32_t bit = (pipe == PIPE_A) ? DE_PIPEA_FIFO_UNDERRUN :
131 DE_PIPEB_FIFO_UNDERRUN;
132
133 if (enable)
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +0200134 ilk_enable_display_irq(dev_priv, bit);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200135 else
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +0200136 ilk_disable_display_irq(dev_priv, bit);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200137}
138
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200139static void ivybridge_check_fifo_underruns(struct intel_crtc *crtc)
140{
141 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
142 enum pipe pipe = crtc->pipe;
143 uint32_t err_int = I915_READ(GEN7_ERR_INT);
144
Chris Wilson67520412017-03-02 13:28:01 +0000145 lockdep_assert_held(&dev_priv->irq_lock);
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200146
147 if ((err_int & ERR_INT_FIFO_UNDERRUN(pipe)) == 0)
148 return;
149
150 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN(pipe));
151 POSTING_READ(GEN7_ERR_INT);
152
Ville Syrjälä53a79152017-03-02 19:15:08 +0200153 trace_intel_cpu_fifo_underrun(dev_priv, pipe);
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200154 DRM_ERROR("fifo underrun on pipe %c\n", pipe_name(pipe));
155}
156
Daniel Vetter47339cd2014-09-30 10:56:46 +0200157static void ivybridge_set_fifo_underrun_reporting(struct drm_device *dev,
158 enum pipe pipe,
159 bool enable, bool old)
160{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100161 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200162 if (enable) {
163 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN(pipe));
164
165 if (!ivb_can_enable_err_int(dev))
166 return;
167
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +0200168 ilk_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200169 } else {
Ville Syrjäläfbdedaea2015-11-23 18:06:16 +0200170 ilk_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200171
172 if (old &&
173 I915_READ(GEN7_ERR_INT) & ERR_INT_FIFO_UNDERRUN(pipe)) {
174 DRM_ERROR("uncleared fifo underrun on pipe %c\n",
175 pipe_name(pipe));
176 }
177 }
178}
179
180static void broadwell_set_fifo_underrun_reporting(struct drm_device *dev,
181 enum pipe pipe, bool enable)
182{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100183 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200184
Daniel Vetter47339cd2014-09-30 10:56:46 +0200185 if (enable)
Ville Syrjälä013d3752015-11-23 18:06:17 +0200186 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_FIFO_UNDERRUN);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200187 else
Ville Syrjälä013d3752015-11-23 18:06:17 +0200188 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_FIFO_UNDERRUN);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200189}
190
191static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
Ville Syrjälä41c32e5d2017-09-01 17:31:23 +0300192 enum pipe pch_transcoder,
Daniel Vetter47339cd2014-09-30 10:56:46 +0200193 bool enable)
194{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100195 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä41c32e5d2017-09-01 17:31:23 +0300196 uint32_t bit = (pch_transcoder == PIPE_A) ?
Daniel Vetter47339cd2014-09-30 10:56:46 +0200197 SDE_TRANSA_FIFO_UNDER : SDE_TRANSB_FIFO_UNDER;
198
199 if (enable)
200 ibx_enable_display_interrupt(dev_priv, bit);
201 else
202 ibx_disable_display_interrupt(dev_priv, bit);
203}
204
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200205static void cpt_check_pch_fifo_underruns(struct intel_crtc *crtc)
206{
207 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä41c32e5d2017-09-01 17:31:23 +0300208 enum pipe pch_transcoder = crtc->pipe;
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200209 uint32_t serr_int = I915_READ(SERR_INT);
210
Chris Wilson67520412017-03-02 13:28:01 +0000211 lockdep_assert_held(&dev_priv->irq_lock);
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200212
213 if ((serr_int & SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder)) == 0)
214 return;
215
216 I915_WRITE(SERR_INT, SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder));
217 POSTING_READ(SERR_INT);
218
Ville Syrjälä53a79152017-03-02 19:15:08 +0200219 trace_intel_pch_fifo_underrun(dev_priv, pch_transcoder);
Ville Syrjälä41c32e5d2017-09-01 17:31:23 +0300220 DRM_ERROR("pch fifo underrun on pch transcoder %c\n",
221 pipe_name(pch_transcoder));
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200222}
223
Daniel Vetter47339cd2014-09-30 10:56:46 +0200224static void cpt_set_fifo_underrun_reporting(struct drm_device *dev,
Ville Syrjälä41c32e5d2017-09-01 17:31:23 +0300225 enum pipe pch_transcoder,
Daniel Vetter47339cd2014-09-30 10:56:46 +0200226 bool enable, bool old)
227{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100228 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200229
230 if (enable) {
231 I915_WRITE(SERR_INT,
232 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder));
233
234 if (!cpt_can_enable_serr_int(dev))
235 return;
236
237 ibx_enable_display_interrupt(dev_priv, SDE_ERROR_CPT);
238 } else {
239 ibx_disable_display_interrupt(dev_priv, SDE_ERROR_CPT);
240
241 if (old && I915_READ(SERR_INT) &
242 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder)) {
Ville Syrjälä41c32e5d2017-09-01 17:31:23 +0300243 DRM_ERROR("uncleared pch fifo underrun on pch transcoder %c\n",
244 pipe_name(pch_transcoder));
Daniel Vetter47339cd2014-09-30 10:56:46 +0200245 }
246 }
247}
248
Daniel Vetter47339cd2014-09-30 10:56:46 +0200249static bool __intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
250 enum pipe pipe, bool enable)
251{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100252 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä98187832016-10-31 22:37:10 +0200253 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200254 bool old;
255
Chris Wilson67520412017-03-02 13:28:01 +0000256 lockdep_assert_held(&dev_priv->irq_lock);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200257
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200258 old = !crtc->cpu_fifo_underrun_disabled;
259 crtc->cpu_fifo_underrun_disabled = !enable;
Daniel Vetter47339cd2014-09-30 10:56:46 +0200260
Tvrtko Ursulin49cff962016-10-13 11:02:54 +0100261 if (HAS_GMCH_DISPLAY(dev_priv))
Daniel Vetter47339cd2014-09-30 10:56:46 +0200262 i9xx_set_fifo_underrun_reporting(dev, pipe, enable, old);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100263 else if (IS_GEN5(dev_priv) || IS_GEN6(dev_priv))
Daniel Vetter47339cd2014-09-30 10:56:46 +0200264 ironlake_set_fifo_underrun_reporting(dev, pipe, enable);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100265 else if (IS_GEN7(dev_priv))
Daniel Vetter47339cd2014-09-30 10:56:46 +0200266 ivybridge_set_fifo_underrun_reporting(dev, pipe, enable, old);
Rodrigo Vivi4efa16c2017-06-09 15:26:13 -0700267 else if (INTEL_GEN(dev_priv) >= 8)
Daniel Vetter47339cd2014-09-30 10:56:46 +0200268 broadwell_set_fifo_underrun_reporting(dev, pipe, enable);
269
270 return old;
271}
272
Daniel Vetteref073882014-09-30 10:56:50 +0200273/**
274 * intel_set_cpu_fifo_underrun_reporting - set cpu fifo underrrun reporting state
275 * @dev_priv: i915 device instance
276 * @pipe: (CPU) pipe to set state for
277 * @enable: whether underruns should be reported or not
278 *
279 * This function sets the fifo underrun state for @pipe. It is used in the
280 * modeset code to avoid false positives since on many platforms underruns are
281 * expected when disabling or enabling the pipe.
282 *
283 * Notice that on some platforms disabling underrun reports for one pipe
284 * disables for all due to shared interrupts. Actual reporting is still per-pipe
285 * though.
286 *
287 * Returns the previous state of underrun reporting.
288 */
Daniel Vettera72e4c92014-09-30 10:56:47 +0200289bool intel_set_cpu_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
Daniel Vetter47339cd2014-09-30 10:56:46 +0200290 enum pipe pipe, bool enable)
291{
Daniel Vetter47339cd2014-09-30 10:56:46 +0200292 unsigned long flags;
293 bool ret;
294
295 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Chris Wilson91c8a322016-07-05 10:40:23 +0100296 ret = __intel_set_cpu_fifo_underrun_reporting(&dev_priv->drm, pipe,
Daniel Vettera72e4c92014-09-30 10:56:47 +0200297 enable);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200298 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
299
300 return ret;
301}
302
Daniel Vetter47339cd2014-09-30 10:56:46 +0200303/**
Daniel Vetteref073882014-09-30 10:56:50 +0200304 * intel_set_pch_fifo_underrun_reporting - set PCH fifo underrun reporting state
305 * @dev_priv: i915 device instance
Daniel Vetter47339cd2014-09-30 10:56:46 +0200306 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
Daniel Vetteref073882014-09-30 10:56:50 +0200307 * @enable: whether underruns should be reported or not
Daniel Vetter47339cd2014-09-30 10:56:46 +0200308 *
309 * This function makes us disable or enable PCH fifo underruns for a specific
310 * PCH transcoder. Notice that on some PCHs (e.g. CPT/PPT), disabling FIFO
311 * underrun reporting for one transcoder may also disable all the other PCH
312 * error interruts for the other transcoders, due to the fact that there's just
313 * one interrupt mask/enable bit for all the transcoders.
314 *
315 * Returns the previous state of underrun reporting.
316 */
Daniel Vettera72e4c92014-09-30 10:56:47 +0200317bool intel_set_pch_fifo_underrun_reporting(struct drm_i915_private *dev_priv,
Matthias Kaehlckea2196032017-07-17 11:14:03 -0700318 enum pipe pch_transcoder,
Daniel Vetter47339cd2014-09-30 10:56:46 +0200319 bool enable)
320{
Ville Syrjälä98187832016-10-31 22:37:10 +0200321 struct intel_crtc *crtc =
Matthias Kaehlckea2196032017-07-17 11:14:03 -0700322 intel_get_crtc_for_pipe(dev_priv, pch_transcoder);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200323 unsigned long flags;
324 bool old;
325
326 /*
327 * NOTE: Pre-LPT has a fixed cpu pipe -> pch transcoder mapping, but LPT
328 * has only one pch transcoder A that all pipes can use. To avoid racy
329 * pch transcoder -> pipe lookups from interrupt code simply store the
330 * underrun statistics in crtc A. Since we never expose this anywhere
331 * nor use it outside of the fifo underrun code here using the "wrong"
332 * crtc on LPT won't cause issues.
333 */
334
335 spin_lock_irqsave(&dev_priv->irq_lock, flags);
336
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200337 old = !crtc->pch_fifo_underrun_disabled;
338 crtc->pch_fifo_underrun_disabled = !enable;
Daniel Vetter47339cd2014-09-30 10:56:46 +0200339
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +0300340 if (HAS_PCH_IBX(dev_priv))
Chris Wilson91c8a322016-07-05 10:40:23 +0100341 ibx_set_fifo_underrun_reporting(&dev_priv->drm,
342 pch_transcoder,
Daniel Vettera72e4c92014-09-30 10:56:47 +0200343 enable);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200344 else
Chris Wilson91c8a322016-07-05 10:40:23 +0100345 cpt_set_fifo_underrun_reporting(&dev_priv->drm,
346 pch_transcoder,
Daniel Vettera72e4c92014-09-30 10:56:47 +0200347 enable, old);
Daniel Vetter47339cd2014-09-30 10:56:46 +0200348
349 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
350 return old;
351}
Daniel Vetter1f7247c2014-09-30 10:56:48 +0200352
Daniel Vetteref073882014-09-30 10:56:50 +0200353/**
Kumar Amit Mehtacea3bf82015-01-26 17:47:32 +0100354 * intel_cpu_fifo_underrun_irq_handler - handle CPU fifo underrun interrupt
Daniel Vetteref073882014-09-30 10:56:50 +0200355 * @dev_priv: i915 device instance
356 * @pipe: (CPU) pipe to set state for
357 *
358 * This handles a CPU fifo underrun interrupt, generating an underrun warning
359 * into dmesg if underrun reporting is enabled and then disables the underrun
360 * interrupt to avoid an irq storm.
361 */
Daniel Vetter1f7247c2014-09-30 10:56:48 +0200362void intel_cpu_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
363 enum pipe pipe)
364{
Ville Syrjälä98187832016-10-31 22:37:10 +0200365 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Chris Wilson54fc7c12015-02-26 15:53:02 +0000366
367 /* We may be called too early in init, thanks BIOS! */
368 if (crtc == NULL)
369 return;
370
Daniel Vetter0f239f42014-09-30 10:56:49 +0200371 /* GMCH can't disable fifo underruns, filter them. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +0300372 if (HAS_GMCH_DISPLAY(dev_priv) &&
Ville Syrjäläe2af48c2016-10-31 22:37:05 +0200373 crtc->cpu_fifo_underrun_disabled)
Daniel Vetter0f239f42014-09-30 10:56:49 +0200374 return;
375
Ville Syrjälä53a79152017-03-02 19:15:08 +0200376 if (intel_set_cpu_fifo_underrun_reporting(dev_priv, pipe, false)) {
377 trace_intel_cpu_fifo_underrun(dev_priv, pipe);
Daniel Vetter1f7247c2014-09-30 10:56:48 +0200378 DRM_ERROR("CPU pipe %c FIFO underrun\n",
379 pipe_name(pipe));
Ville Syrjälä53a79152017-03-02 19:15:08 +0200380 }
Paulo Zanoni61a585d2016-09-13 10:38:57 -0300381
382 intel_fbc_handle_fifo_underrun_irq(dev_priv);
Daniel Vetter1f7247c2014-09-30 10:56:48 +0200383}
384
Daniel Vetteref073882014-09-30 10:56:50 +0200385/**
386 * intel_pch_fifo_underrun_irq_handler - handle PCH fifo underrun interrupt
387 * @dev_priv: i915 device instance
388 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
389 *
390 * This handles a PCH fifo underrun interrupt, generating an underrun warning
391 * into dmesg if underrun reporting is enabled and then disables the underrun
392 * interrupt to avoid an irq storm.
393 */
Daniel Vetter1f7247c2014-09-30 10:56:48 +0200394void intel_pch_fifo_underrun_irq_handler(struct drm_i915_private *dev_priv,
Matthias Kaehlckea2196032017-07-17 11:14:03 -0700395 enum pipe pch_transcoder)
Daniel Vetter1f7247c2014-09-30 10:56:48 +0200396{
397 if (intel_set_pch_fifo_underrun_reporting(dev_priv, pch_transcoder,
Ville Syrjälä53a79152017-03-02 19:15:08 +0200398 false)) {
399 trace_intel_pch_fifo_underrun(dev_priv, pch_transcoder);
Ville Syrjälä41c32e5d2017-09-01 17:31:23 +0300400 DRM_ERROR("PCH transcoder %c FIFO underrun\n",
401 pipe_name(pch_transcoder));
Ville Syrjälä53a79152017-03-02 19:15:08 +0200402 }
Daniel Vetter1f7247c2014-09-30 10:56:48 +0200403}
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200404
405/**
406 * intel_check_cpu_fifo_underruns - check for CPU fifo underruns immediately
407 * @dev_priv: i915 device instance
408 *
409 * Check for CPU fifo underruns immediately. Useful on IVB/HSW where the shared
410 * error interrupt may have been disabled, and so CPU fifo underruns won't
411 * necessarily raise an interrupt, and on GMCH platforms where underruns never
412 * raise an interrupt.
413 */
414void intel_check_cpu_fifo_underruns(struct drm_i915_private *dev_priv)
415{
416 struct intel_crtc *crtc;
417
418 spin_lock_irq(&dev_priv->irq_lock);
419
Chris Wilson91c8a322016-07-05 10:40:23 +0100420 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200421 if (crtc->cpu_fifo_underrun_disabled)
422 continue;
423
424 if (HAS_GMCH_DISPLAY(dev_priv))
425 i9xx_check_fifo_underruns(crtc);
426 else if (IS_GEN7(dev_priv))
427 ivybridge_check_fifo_underruns(crtc);
428 }
429
430 spin_unlock_irq(&dev_priv->irq_lock);
431}
432
433/**
434 * intel_check_pch_fifo_underruns - check for PCH fifo underruns immediately
435 * @dev_priv: i915 device instance
436 *
437 * Check for PCH fifo underruns immediately. Useful on CPT/PPT where the shared
438 * error interrupt may have been disabled, and so PCH fifo underruns won't
439 * necessarily raise an interrupt.
440 */
441void intel_check_pch_fifo_underruns(struct drm_i915_private *dev_priv)
442{
443 struct intel_crtc *crtc;
444
445 spin_lock_irq(&dev_priv->irq_lock);
446
Chris Wilson91c8a322016-07-05 10:40:23 +0100447 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläaca7b682015-10-30 19:22:21 +0200448 if (crtc->pch_fifo_underrun_disabled)
449 continue;
450
451 if (HAS_PCH_CPT(dev_priv))
452 cpt_check_pch_fifo_underruns(crtc);
453 }
454
455 spin_unlock_irq(&dev_priv->irq_lock);
456}