1 /* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
4 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
7 * Permission is hereby granted, free of charge, to any person obtaining a
8 * copy of this software and associated documentation files (the
9 * "Software"), to deal in the Software without restriction, including
10 * without limitation the rights to use, copy, modify, merge, publish,
11 * distribute, sub license, and/or sell copies of the Software, and to
12 * permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
20 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
22 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
23 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
25 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
31 #include <linux/circ_buf.h>
32 #include <linux/slab.h>
33 #include <linux/sysrq.h>
35 #include <drm/drm_drv.h>
36 #include <drm/drm_irq.h>
38 #include "display/intel_display_types.h"
39 #include "display/intel_fifo_underrun.h"
40 #include "display/intel_hotplug.h"
41 #include "display/intel_lpe_audio.h"
42 #include "display/intel_psr.h"
44 #include "gt/intel_breadcrumbs.h"
45 #include "gt/intel_gt.h"
46 #include "gt/intel_gt_irq.h"
47 #include "gt/intel_gt_pm_irq.h"
48 #include "gt/intel_rps.h"
52 #include "i915_trace.h"
56 * DOC: interrupt handling
58 * These functions provide the basic support for enabling and disabling the
59 * interrupt handling support. There's a lot more functionality in i915_irq.c
60 * and related files, but that will be described in separate chapters.
64 * Interrupt statistic for PMU. Increments the counter only if the
65 * interrupt originated from the the GPU so interrupts from a device which
66 * shares the interrupt line are not accounted.
68 static inline void pmu_irq_stats(struct drm_i915_private *i915,
71 if (unlikely(res != IRQ_HANDLED))
75 * A clever compiler translates that into INC. A not so clever one
76 * should at least prevent store tearing.
78 WRITE_ONCE(i915->pmu.irq_count, i915->pmu.irq_count + 1);
81 typedef bool (*long_pulse_detect_func)(enum hpd_pin pin, u32 val);
82 typedef u32 (*hotplug_enables_func)(struct drm_i915_private *i915,
85 static const u32 hpd_ilk[HPD_NUM_PINS] = {
86 [HPD_PORT_A] = DE_DP_A_HOTPLUG,
89 static const u32 hpd_ivb[HPD_NUM_PINS] = {
90 [HPD_PORT_A] = DE_DP_A_HOTPLUG_IVB,
93 static const u32 hpd_bdw[HPD_NUM_PINS] = {
94 [HPD_PORT_A] = GEN8_DE_PORT_HOTPLUG(HPD_PORT_A),
97 static const u32 hpd_ibx[HPD_NUM_PINS] = {
98 [HPD_CRT] = SDE_CRT_HOTPLUG,
99 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
100 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
101 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
102 [HPD_PORT_D] = SDE_PORTD_HOTPLUG,
105 static const u32 hpd_cpt[HPD_NUM_PINS] = {
106 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
107 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
108 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
109 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
110 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT,
113 static const u32 hpd_spt[HPD_NUM_PINS] = {
114 [HPD_PORT_A] = SDE_PORTA_HOTPLUG_SPT,
115 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
116 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
117 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT,
118 [HPD_PORT_E] = SDE_PORTE_HOTPLUG_SPT,
121 static const u32 hpd_mask_i915[HPD_NUM_PINS] = {
122 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
123 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
124 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
125 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
126 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
127 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN,
130 static const u32 hpd_status_g4x[HPD_NUM_PINS] = {
131 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
132 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
133 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
134 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
135 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
136 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS,
139 static const u32 hpd_status_i915[HPD_NUM_PINS] = {
140 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
141 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
142 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
143 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
144 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
145 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS,
148 static const u32 hpd_bxt[HPD_NUM_PINS] = {
149 [HPD_PORT_A] = GEN8_DE_PORT_HOTPLUG(HPD_PORT_A),
150 [HPD_PORT_B] = GEN8_DE_PORT_HOTPLUG(HPD_PORT_B),
151 [HPD_PORT_C] = GEN8_DE_PORT_HOTPLUG(HPD_PORT_C),
154 static const u32 hpd_gen11[HPD_NUM_PINS] = {
155 [HPD_PORT_TC1] = GEN11_TC_HOTPLUG(HPD_PORT_TC1) | GEN11_TBT_HOTPLUG(HPD_PORT_TC1),
156 [HPD_PORT_TC2] = GEN11_TC_HOTPLUG(HPD_PORT_TC2) | GEN11_TBT_HOTPLUG(HPD_PORT_TC2),
157 [HPD_PORT_TC3] = GEN11_TC_HOTPLUG(HPD_PORT_TC3) | GEN11_TBT_HOTPLUG(HPD_PORT_TC3),
158 [HPD_PORT_TC4] = GEN11_TC_HOTPLUG(HPD_PORT_TC4) | GEN11_TBT_HOTPLUG(HPD_PORT_TC4),
159 [HPD_PORT_TC5] = GEN11_TC_HOTPLUG(HPD_PORT_TC5) | GEN11_TBT_HOTPLUG(HPD_PORT_TC5),
160 [HPD_PORT_TC6] = GEN11_TC_HOTPLUG(HPD_PORT_TC6) | GEN11_TBT_HOTPLUG(HPD_PORT_TC6),
163 static const u32 hpd_icp[HPD_NUM_PINS] = {
164 [HPD_PORT_A] = SDE_DDI_HOTPLUG_ICP(HPD_PORT_A),
165 [HPD_PORT_B] = SDE_DDI_HOTPLUG_ICP(HPD_PORT_B),
166 [HPD_PORT_C] = SDE_DDI_HOTPLUG_ICP(HPD_PORT_C),
167 [HPD_PORT_TC1] = SDE_TC_HOTPLUG_ICP(HPD_PORT_TC1),
168 [HPD_PORT_TC2] = SDE_TC_HOTPLUG_ICP(HPD_PORT_TC2),
169 [HPD_PORT_TC3] = SDE_TC_HOTPLUG_ICP(HPD_PORT_TC3),
170 [HPD_PORT_TC4] = SDE_TC_HOTPLUG_ICP(HPD_PORT_TC4),
171 [HPD_PORT_TC5] = SDE_TC_HOTPLUG_ICP(HPD_PORT_TC5),
172 [HPD_PORT_TC6] = SDE_TC_HOTPLUG_ICP(HPD_PORT_TC6),
175 static const u32 hpd_sde_dg1[HPD_NUM_PINS] = {
176 [HPD_PORT_A] = SDE_DDI_HOTPLUG_ICP(HPD_PORT_A),
177 [HPD_PORT_B] = SDE_DDI_HOTPLUG_ICP(HPD_PORT_B),
178 [HPD_PORT_C] = SDE_DDI_HOTPLUG_ICP(HPD_PORT_C),
179 [HPD_PORT_D] = SDE_DDI_HOTPLUG_ICP(HPD_PORT_D),
182 static void intel_hpd_init_pins(struct drm_i915_private *dev_priv)
184 struct i915_hotplug *hpd = &dev_priv->hotplug;
186 if (HAS_GMCH(dev_priv)) {
187 if (IS_G4X(dev_priv) || IS_VALLEYVIEW(dev_priv) ||
188 IS_CHERRYVIEW(dev_priv))
189 hpd->hpd = hpd_status_g4x;
191 hpd->hpd = hpd_status_i915;
195 if (INTEL_GEN(dev_priv) >= 11)
196 hpd->hpd = hpd_gen11;
197 else if (IS_GEN9_LP(dev_priv))
199 else if (INTEL_GEN(dev_priv) >= 8)
201 else if (INTEL_GEN(dev_priv) >= 7)
206 if ((INTEL_PCH_TYPE(dev_priv) < PCH_DG1) &&
207 (!HAS_PCH_SPLIT(dev_priv) || HAS_PCH_NOP(dev_priv)))
210 if (HAS_PCH_DG1(dev_priv))
211 hpd->pch_hpd = hpd_sde_dg1;
212 else if (HAS_PCH_TGP(dev_priv) || HAS_PCH_JSP(dev_priv) ||
213 HAS_PCH_ICP(dev_priv) || HAS_PCH_MCC(dev_priv))
214 hpd->pch_hpd = hpd_icp;
215 else if (HAS_PCH_CNP(dev_priv) || HAS_PCH_SPT(dev_priv))
216 hpd->pch_hpd = hpd_spt;
217 else if (HAS_PCH_LPT(dev_priv) || HAS_PCH_CPT(dev_priv))
218 hpd->pch_hpd = hpd_cpt;
219 else if (HAS_PCH_IBX(dev_priv))
220 hpd->pch_hpd = hpd_ibx;
222 MISSING_CASE(INTEL_PCH_TYPE(dev_priv));
226 intel_handle_vblank(struct drm_i915_private *dev_priv, enum pipe pipe)
228 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
230 drm_crtc_handle_vblank(&crtc->base);
233 void gen3_irq_reset(struct intel_uncore *uncore, i915_reg_t imr,
234 i915_reg_t iir, i915_reg_t ier)
236 intel_uncore_write(uncore, imr, 0xffffffff);
237 intel_uncore_posting_read(uncore, imr);
239 intel_uncore_write(uncore, ier, 0);
241 /* IIR can theoretically queue up two events. Be paranoid. */
242 intel_uncore_write(uncore, iir, 0xffffffff);
243 intel_uncore_posting_read(uncore, iir);
244 intel_uncore_write(uncore, iir, 0xffffffff);
245 intel_uncore_posting_read(uncore, iir);
248 void gen2_irq_reset(struct intel_uncore *uncore)
250 intel_uncore_write16(uncore, GEN2_IMR, 0xffff);
251 intel_uncore_posting_read16(uncore, GEN2_IMR);
253 intel_uncore_write16(uncore, GEN2_IER, 0);
255 /* IIR can theoretically queue up two events. Be paranoid. */
256 intel_uncore_write16(uncore, GEN2_IIR, 0xffff);
257 intel_uncore_posting_read16(uncore, GEN2_IIR);
258 intel_uncore_write16(uncore, GEN2_IIR, 0xffff);
259 intel_uncore_posting_read16(uncore, GEN2_IIR);
263 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
265 static void gen3_assert_iir_is_zero(struct intel_uncore *uncore, i915_reg_t reg)
267 u32 val = intel_uncore_read(uncore, reg);
272 drm_WARN(&uncore->i915->drm, 1,
273 "Interrupt register 0x%x is not zero: 0x%08x\n",
274 i915_mmio_reg_offset(reg), val);
275 intel_uncore_write(uncore, reg, 0xffffffff);
276 intel_uncore_posting_read(uncore, reg);
277 intel_uncore_write(uncore, reg, 0xffffffff);
278 intel_uncore_posting_read(uncore, reg);
281 static void gen2_assert_iir_is_zero(struct intel_uncore *uncore)
283 u16 val = intel_uncore_read16(uncore, GEN2_IIR);
288 drm_WARN(&uncore->i915->drm, 1,
289 "Interrupt register 0x%x is not zero: 0x%08x\n",
290 i915_mmio_reg_offset(GEN2_IIR), val);
291 intel_uncore_write16(uncore, GEN2_IIR, 0xffff);
292 intel_uncore_posting_read16(uncore, GEN2_IIR);
293 intel_uncore_write16(uncore, GEN2_IIR, 0xffff);
294 intel_uncore_posting_read16(uncore, GEN2_IIR);
297 void gen3_irq_init(struct intel_uncore *uncore,
298 i915_reg_t imr, u32 imr_val,
299 i915_reg_t ier, u32 ier_val,
302 gen3_assert_iir_is_zero(uncore, iir);
304 intel_uncore_write(uncore, ier, ier_val);
305 intel_uncore_write(uncore, imr, imr_val);
306 intel_uncore_posting_read(uncore, imr);
309 void gen2_irq_init(struct intel_uncore *uncore,
310 u32 imr_val, u32 ier_val)
312 gen2_assert_iir_is_zero(uncore);
314 intel_uncore_write16(uncore, GEN2_IER, ier_val);
315 intel_uncore_write16(uncore, GEN2_IMR, imr_val);
316 intel_uncore_posting_read16(uncore, GEN2_IMR);
319 /* For display hotplug interrupt */
321 i915_hotplug_interrupt_update_locked(struct drm_i915_private *dev_priv,
327 lockdep_assert_held(&dev_priv->irq_lock);
328 drm_WARN_ON(&dev_priv->drm, bits & ~mask);
330 val = intel_uncore_read(&dev_priv->uncore, PORT_HOTPLUG_EN);
333 intel_uncore_write(&dev_priv->uncore, PORT_HOTPLUG_EN, val);
337 * i915_hotplug_interrupt_update - update hotplug interrupt enable
338 * @dev_priv: driver private
339 * @mask: bits to update
340 * @bits: bits to enable
341 * NOTE: the HPD enable bits are modified both inside and outside
342 * of an interrupt context. To avoid that read-modify-write cycles
343 * interfer, these bits are protected by a spinlock. Since this
344 * function is usually not called from a context where the lock is
345 * held already, this function acquires the lock itself. A non-locking
346 * version is also available.
348 void i915_hotplug_interrupt_update(struct drm_i915_private *dev_priv,
352 spin_lock_irq(&dev_priv->irq_lock);
353 i915_hotplug_interrupt_update_locked(dev_priv, mask, bits);
354 spin_unlock_irq(&dev_priv->irq_lock);
358 * ilk_update_display_irq - update DEIMR
359 * @dev_priv: driver private
360 * @interrupt_mask: mask of interrupt bits to update
361 * @enabled_irq_mask: mask of interrupt bits to enable
363 void ilk_update_display_irq(struct drm_i915_private *dev_priv,
365 u32 enabled_irq_mask)
369 lockdep_assert_held(&dev_priv->irq_lock);
370 drm_WARN_ON(&dev_priv->drm, enabled_irq_mask & ~interrupt_mask);
372 new_val = dev_priv->irq_mask;
373 new_val &= ~interrupt_mask;
374 new_val |= (~enabled_irq_mask & interrupt_mask);
376 if (new_val != dev_priv->irq_mask &&
377 !drm_WARN_ON(&dev_priv->drm, !intel_irqs_enabled(dev_priv))) {
378 dev_priv->irq_mask = new_val;
379 intel_uncore_write(&dev_priv->uncore, DEIMR, dev_priv->irq_mask);
380 intel_uncore_posting_read(&dev_priv->uncore, DEIMR);
385 * bdw_update_port_irq - update DE port interrupt
386 * @dev_priv: driver private
387 * @interrupt_mask: mask of interrupt bits to update
388 * @enabled_irq_mask: mask of interrupt bits to enable
390 static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
392 u32 enabled_irq_mask)
397 lockdep_assert_held(&dev_priv->irq_lock);
399 drm_WARN_ON(&dev_priv->drm, enabled_irq_mask & ~interrupt_mask);
401 if (drm_WARN_ON(&dev_priv->drm, !intel_irqs_enabled(dev_priv)))
404 old_val = intel_uncore_read(&dev_priv->uncore, GEN8_DE_PORT_IMR);
407 new_val &= ~interrupt_mask;
408 new_val |= (~enabled_irq_mask & interrupt_mask);
410 if (new_val != old_val) {
411 intel_uncore_write(&dev_priv->uncore, GEN8_DE_PORT_IMR, new_val);
412 intel_uncore_posting_read(&dev_priv->uncore, GEN8_DE_PORT_IMR);
417 * bdw_update_pipe_irq - update DE pipe interrupt
418 * @dev_priv: driver private
419 * @pipe: pipe whose interrupt to update
420 * @interrupt_mask: mask of interrupt bits to update
421 * @enabled_irq_mask: mask of interrupt bits to enable
423 void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
426 u32 enabled_irq_mask)
430 lockdep_assert_held(&dev_priv->irq_lock);
432 drm_WARN_ON(&dev_priv->drm, enabled_irq_mask & ~interrupt_mask);
434 if (drm_WARN_ON(&dev_priv->drm, !intel_irqs_enabled(dev_priv)))
437 new_val = dev_priv->de_irq_mask[pipe];
438 new_val &= ~interrupt_mask;
439 new_val |= (~enabled_irq_mask & interrupt_mask);
441 if (new_val != dev_priv->de_irq_mask[pipe]) {
442 dev_priv->de_irq_mask[pipe] = new_val;
443 intel_uncore_write(&dev_priv->uncore, GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
444 intel_uncore_posting_read(&dev_priv->uncore, GEN8_DE_PIPE_IMR(pipe));
449 * ibx_display_interrupt_update - update SDEIMR
450 * @dev_priv: driver private
451 * @interrupt_mask: mask of interrupt bits to update
452 * @enabled_irq_mask: mask of interrupt bits to enable
454 void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
456 u32 enabled_irq_mask)
458 u32 sdeimr = intel_uncore_read(&dev_priv->uncore, SDEIMR);
459 sdeimr &= ~interrupt_mask;
460 sdeimr |= (~enabled_irq_mask & interrupt_mask);
462 drm_WARN_ON(&dev_priv->drm, enabled_irq_mask & ~interrupt_mask);
464 lockdep_assert_held(&dev_priv->irq_lock);
466 if (drm_WARN_ON(&dev_priv->drm, !intel_irqs_enabled(dev_priv)))
469 intel_uncore_write(&dev_priv->uncore, SDEIMR, sdeimr);
470 intel_uncore_posting_read(&dev_priv->uncore, SDEIMR);
473 u32 i915_pipestat_enable_mask(struct drm_i915_private *dev_priv,
476 u32 status_mask = dev_priv->pipestat_irq_mask[pipe];
477 u32 enable_mask = status_mask << 16;
479 lockdep_assert_held(&dev_priv->irq_lock);
481 if (INTEL_GEN(dev_priv) < 5)
485 * On pipe A we don't support the PSR interrupt yet,
486 * on pipe B and C the same bit MBZ.
488 if (drm_WARN_ON_ONCE(&dev_priv->drm,
489 status_mask & PIPE_A_PSR_STATUS_VLV))
492 * On pipe B and C we don't support the PSR interrupt yet, on pipe
493 * A the same bit is for perf counters which we don't use either.
495 if (drm_WARN_ON_ONCE(&dev_priv->drm,
496 status_mask & PIPE_B_PSR_STATUS_VLV))
499 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
500 SPRITE0_FLIP_DONE_INT_EN_VLV |
501 SPRITE1_FLIP_DONE_INT_EN_VLV);
502 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
503 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
504 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
505 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
508 drm_WARN_ONCE(&dev_priv->drm,
509 enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
510 status_mask & ~PIPESTAT_INT_STATUS_MASK,
511 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
512 pipe_name(pipe), enable_mask, status_mask);
517 void i915_enable_pipestat(struct drm_i915_private *dev_priv,
518 enum pipe pipe, u32 status_mask)
520 i915_reg_t reg = PIPESTAT(pipe);
523 drm_WARN_ONCE(&dev_priv->drm, status_mask & ~PIPESTAT_INT_STATUS_MASK,
524 "pipe %c: status_mask=0x%x\n",
525 pipe_name(pipe), status_mask);
527 lockdep_assert_held(&dev_priv->irq_lock);
528 drm_WARN_ON(&dev_priv->drm, !intel_irqs_enabled(dev_priv));
530 if ((dev_priv->pipestat_irq_mask[pipe] & status_mask) == status_mask)
533 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
534 enable_mask = i915_pipestat_enable_mask(dev_priv, pipe);
536 intel_uncore_write(&dev_priv->uncore, reg, enable_mask | status_mask);
537 intel_uncore_posting_read(&dev_priv->uncore, reg);
540 void i915_disable_pipestat(struct drm_i915_private *dev_priv,
541 enum pipe pipe, u32 status_mask)
543 i915_reg_t reg = PIPESTAT(pipe);
546 drm_WARN_ONCE(&dev_priv->drm, status_mask & ~PIPESTAT_INT_STATUS_MASK,
547 "pipe %c: status_mask=0x%x\n",
548 pipe_name(pipe), status_mask);
550 lockdep_assert_held(&dev_priv->irq_lock);
551 drm_WARN_ON(&dev_priv->drm, !intel_irqs_enabled(dev_priv));
553 if ((dev_priv->pipestat_irq_mask[pipe] & status_mask) == 0)
556 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
557 enable_mask = i915_pipestat_enable_mask(dev_priv, pipe);
559 intel_uncore_write(&dev_priv->uncore, reg, enable_mask | status_mask);
560 intel_uncore_posting_read(&dev_priv->uncore, reg);
563 static bool i915_has_asle(struct drm_i915_private *dev_priv)
565 if (!dev_priv->opregion.asle)
568 return IS_PINEVIEW(dev_priv) || IS_MOBILE(dev_priv);
572 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
573 * @dev_priv: i915 device private
575 static void i915_enable_asle_pipestat(struct drm_i915_private *dev_priv)
577 if (!i915_has_asle(dev_priv))
580 spin_lock_irq(&dev_priv->irq_lock);
582 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
583 if (INTEL_GEN(dev_priv) >= 4)
584 i915_enable_pipestat(dev_priv, PIPE_A,
585 PIPE_LEGACY_BLC_EVENT_STATUS);
587 spin_unlock_irq(&dev_priv->irq_lock);
591 * This timing diagram depicts the video signal in and
592 * around the vertical blanking period.
594 * Assumptions about the fictitious mode used in this example:
596 * vsync_start = vblank_start + 1
597 * vsync_end = vblank_start + 2
598 * vtotal = vblank_start + 3
601 * latch double buffered registers
602 * increment frame counter (ctg+)
603 * generate start of vblank interrupt (gen4+)
606 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
607 * | may be shifted forward 1-3 extra lines via PIPECONF
609 * | | start of vsync:
610 * | | generate vsync interrupt
612 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
613 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
614 * ----va---> <-----------------vb--------------------> <--------va-------------
615 * | | <----vs-----> |
616 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
617 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
618 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
620 * last visible pixel first visible pixel
621 * | increment frame counter (gen3/4)
622 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
624 * x = horizontal active
625 * _ = horizontal blanking
626 * hs = horizontal sync
627 * va = vertical active
628 * vb = vertical blanking
630 * vbs = vblank_start (number)
633 * - most events happen at the start of horizontal sync
634 * - frame start happens at the start of horizontal blank, 1-4 lines
635 * (depending on PIPECONF settings) after the start of vblank
636 * - gen3/4 pixel and frame counter are synchronized with the start
637 * of horizontal active on the first line of vertical active
640 /* Called from drm generic code, passed a 'crtc', which
641 * we use as a pipe index
643 u32 i915_get_vblank_counter(struct drm_crtc *crtc)
645 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
646 struct drm_vblank_crtc *vblank = &dev_priv->drm.vblank[drm_crtc_index(crtc)];
647 const struct drm_display_mode *mode = &vblank->hwmode;
648 enum pipe pipe = to_intel_crtc(crtc)->pipe;
649 i915_reg_t high_frame, low_frame;
650 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
651 unsigned long irqflags;
654 * On i965gm TV output the frame counter only works up to
655 * the point when we enable the TV encoder. After that the
656 * frame counter ceases to work and reads zero. We need a
657 * vblank wait before enabling the TV encoder and so we
658 * have to enable vblank interrupts while the frame counter
659 * is still in a working state. However the core vblank code
660 * does not like us returning non-zero frame counter values
661 * when we've told it that we don't have a working frame
662 * counter. Thus we must stop non-zero values leaking out.
664 if (!vblank->max_vblank_count)
667 htotal = mode->crtc_htotal;
668 hsync_start = mode->crtc_hsync_start;
669 vbl_start = mode->crtc_vblank_start;
670 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
671 vbl_start = DIV_ROUND_UP(vbl_start, 2);
673 /* Convert to pixel count */
676 /* Start of vblank event occurs at start of hsync */
677 vbl_start -= htotal - hsync_start;
679 high_frame = PIPEFRAME(pipe);
680 low_frame = PIPEFRAMEPIXEL(pipe);
682 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
685 * High & low register fields aren't synchronized, so make sure
686 * we get a low value that's stable across two reads of the high
690 high1 = intel_de_read_fw(dev_priv, high_frame) & PIPE_FRAME_HIGH_MASK;
691 low = intel_de_read_fw(dev_priv, low_frame);
692 high2 = intel_de_read_fw(dev_priv, high_frame) & PIPE_FRAME_HIGH_MASK;
693 } while (high1 != high2);
695 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
697 high1 >>= PIPE_FRAME_HIGH_SHIFT;
698 pixel = low & PIPE_PIXEL_MASK;
699 low >>= PIPE_FRAME_LOW_SHIFT;
702 * The frame counter increments at beginning of active.
703 * Cook up a vblank counter by also checking the pixel
704 * counter against vblank start.
706 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
709 u32 g4x_get_vblank_counter(struct drm_crtc *crtc)
711 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
712 struct drm_vblank_crtc *vblank = &dev_priv->drm.vblank[drm_crtc_index(crtc)];
713 enum pipe pipe = to_intel_crtc(crtc)->pipe;
715 if (!vblank->max_vblank_count)
718 return intel_uncore_read(&dev_priv->uncore, PIPE_FRMCOUNT_G4X(pipe));
721 static u32 intel_crtc_scanlines_since_frame_timestamp(struct intel_crtc *crtc)
723 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
724 struct drm_vblank_crtc *vblank =
725 &crtc->base.dev->vblank[drm_crtc_index(&crtc->base)];
726 const struct drm_display_mode *mode = &vblank->hwmode;
727 u32 htotal = mode->crtc_htotal;
728 u32 clock = mode->crtc_clock;
729 u32 scan_prev_time, scan_curr_time, scan_post_time;
732 * To avoid the race condition where we might cross into the
733 * next vblank just between the PIPE_FRMTMSTMP and TIMESTAMP_CTR
734 * reads. We make sure we read PIPE_FRMTMSTMP and TIMESTAMP_CTR
735 * during the same frame.
739 * This field provides read back of the display
740 * pipe frame time stamp. The time stamp value
741 * is sampled at every start of vertical blank.
743 scan_prev_time = intel_de_read_fw(dev_priv,
744 PIPE_FRMTMSTMP(crtc->pipe));
747 * The TIMESTAMP_CTR register has the current
750 scan_curr_time = intel_de_read_fw(dev_priv, IVB_TIMESTAMP_CTR);
752 scan_post_time = intel_de_read_fw(dev_priv,
753 PIPE_FRMTMSTMP(crtc->pipe));
754 } while (scan_post_time != scan_prev_time);
756 return div_u64(mul_u32_u32(scan_curr_time - scan_prev_time,
757 clock), 1000 * htotal);
761 * On certain encoders on certain platforms, pipe
762 * scanline register will not work to get the scanline,
763 * since the timings are driven from the PORT or issues
764 * with scanline register updates.
765 * This function will use Framestamp and current
766 * timestamp registers to calculate the scanline.
768 static u32 __intel_get_crtc_scanline_from_timestamp(struct intel_crtc *crtc)
770 struct drm_vblank_crtc *vblank =
771 &crtc->base.dev->vblank[drm_crtc_index(&crtc->base)];
772 const struct drm_display_mode *mode = &vblank->hwmode;
773 u32 vblank_start = mode->crtc_vblank_start;
774 u32 vtotal = mode->crtc_vtotal;
777 scanline = intel_crtc_scanlines_since_frame_timestamp(crtc);
778 scanline = min(scanline, vtotal - 1);
779 scanline = (scanline + vblank_start) % vtotal;
785 * intel_de_read_fw(), only for fast reads of display block, no need for
788 static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
790 struct drm_device *dev = crtc->base.dev;
791 struct drm_i915_private *dev_priv = to_i915(dev);
792 const struct drm_display_mode *mode;
793 struct drm_vblank_crtc *vblank;
794 enum pipe pipe = crtc->pipe;
795 int position, vtotal;
800 vblank = &crtc->base.dev->vblank[drm_crtc_index(&crtc->base)];
801 mode = &vblank->hwmode;
803 if (crtc->mode_flags & I915_MODE_FLAG_GET_SCANLINE_FROM_TIMESTAMP)
804 return __intel_get_crtc_scanline_from_timestamp(crtc);
806 vtotal = mode->crtc_vtotal;
807 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
810 if (IS_GEN(dev_priv, 2))
811 position = intel_de_read_fw(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
813 position = intel_de_read_fw(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
816 * On HSW, the DSL reg (0x70000) appears to return 0 if we
817 * read it just before the start of vblank. So try it again
818 * so we don't accidentally end up spanning a vblank frame
819 * increment, causing the pipe_update_end() code to squak at us.
821 * The nature of this problem means we can't simply check the ISR
822 * bit and return the vblank start value; nor can we use the scanline
823 * debug register in the transcoder as it appears to have the same
824 * problem. We may need to extend this to include other platforms,
825 * but so far testing only shows the problem on HSW.
827 if (HAS_DDI(dev_priv) && !position) {
830 for (i = 0; i < 100; i++) {
832 temp = intel_de_read_fw(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
833 if (temp != position) {
841 * See update_scanline_offset() for the details on the
842 * scanline_offset adjustment.
844 return (position + crtc->scanline_offset) % vtotal;
847 static bool i915_get_crtc_scanoutpos(struct drm_crtc *_crtc,
849 int *vpos, int *hpos,
850 ktime_t *stime, ktime_t *etime,
851 const struct drm_display_mode *mode)
853 struct drm_device *dev = _crtc->dev;
854 struct drm_i915_private *dev_priv = to_i915(dev);
855 struct intel_crtc *crtc = to_intel_crtc(_crtc);
856 enum pipe pipe = crtc->pipe;
858 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
859 unsigned long irqflags;
860 bool use_scanline_counter = INTEL_GEN(dev_priv) >= 5 ||
861 IS_G4X(dev_priv) || IS_GEN(dev_priv, 2) ||
862 crtc->mode_flags & I915_MODE_FLAG_USE_SCANLINE_COUNTER;
864 if (drm_WARN_ON(&dev_priv->drm, !mode->crtc_clock)) {
865 drm_dbg(&dev_priv->drm,
866 "trying to get scanoutpos for disabled "
867 "pipe %c\n", pipe_name(pipe));
871 htotal = mode->crtc_htotal;
872 hsync_start = mode->crtc_hsync_start;
873 vtotal = mode->crtc_vtotal;
874 vbl_start = mode->crtc_vblank_start;
875 vbl_end = mode->crtc_vblank_end;
877 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
878 vbl_start = DIV_ROUND_UP(vbl_start, 2);
884 * Lock uncore.lock, as we will do multiple timing critical raw
885 * register reads, potentially with preemption disabled, so the
886 * following code must not block on uncore.lock.
888 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
890 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
892 /* Get optional system timestamp before query. */
894 *stime = ktime_get();
896 if (crtc->mode_flags & I915_MODE_FLAG_VRR) {
897 int scanlines = intel_crtc_scanlines_since_frame_timestamp(crtc);
899 position = __intel_get_crtc_scanline(crtc);
902 * Already exiting vblank? If so, shift our position
903 * so it looks like we're already apporaching the full
904 * vblank end. This should make the generated timestamp
905 * more or less match when the active portion will start.
907 if (position >= vbl_start && scanlines < position)
908 position = min(crtc->vmax_vblank_start + scanlines, vtotal - 1);
909 } else if (use_scanline_counter) {
910 /* No obvious pixelcount register. Only query vertical
911 * scanout position from Display scan line register.
913 position = __intel_get_crtc_scanline(crtc);
915 /* Have access to pixelcount since start of frame.
916 * We can split this into vertical and horizontal
919 position = (intel_de_read_fw(dev_priv, PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
921 /* convert to pixel counts */
927 * In interlaced modes, the pixel counter counts all pixels,
928 * so one field will have htotal more pixels. In order to avoid
929 * the reported position from jumping backwards when the pixel
930 * counter is beyond the length of the shorter field, just
931 * clamp the position the length of the shorter field. This
932 * matches how the scanline counter based position works since
933 * the scanline counter doesn't count the two half lines.
935 if (position >= vtotal)
936 position = vtotal - 1;
939 * Start of vblank interrupt is triggered at start of hsync,
940 * just prior to the first active line of vblank. However we
941 * consider lines to start at the leading edge of horizontal
942 * active. So, should we get here before we've crossed into
943 * the horizontal active of the first line in vblank, we would
944 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
945 * always add htotal-hsync_start to the current pixel position.
947 position = (position + htotal - hsync_start) % vtotal;
950 /* Get optional system timestamp after query. */
952 *etime = ktime_get();
954 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
956 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
959 * While in vblank, position will be negative
960 * counting up towards 0 at vbl_end. And outside
961 * vblank, position will be positive counting
964 if (position >= vbl_start)
967 position += vtotal - vbl_end;
969 if (use_scanline_counter) {
973 *vpos = position / htotal;
974 *hpos = position - (*vpos * htotal);
980 bool intel_crtc_get_vblank_timestamp(struct drm_crtc *crtc, int *max_error,
981 ktime_t *vblank_time, bool in_vblank_irq)
983 return drm_crtc_vblank_helper_get_vblank_timestamp_internal(
984 crtc, max_error, vblank_time, in_vblank_irq,
985 i915_get_crtc_scanoutpos);
988 int intel_get_crtc_scanline(struct intel_crtc *crtc)
990 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
991 unsigned long irqflags;
994 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
995 position = __intel_get_crtc_scanline(crtc);
996 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
1002 * ivb_parity_work - Workqueue called when a parity error interrupt
1004 * @work: workqueue struct
1006 * Doesn't actually do anything except notify userspace. As a consequence of
1007 * this event, userspace should try to remap the bad rows since statistically
1008 * it is likely the same row is more likely to go bad again.
1010 static void ivb_parity_work(struct work_struct *work)
1012 struct drm_i915_private *dev_priv =
1013 container_of(work, typeof(*dev_priv), l3_parity.error_work);
1014 struct intel_gt *gt = &dev_priv->gt;
1015 u32 error_status, row, bank, subbank;
1016 char *parity_event[6];
1020 /* We must turn off DOP level clock gating to access the L3 registers.
1021 * In order to prevent a get/put style interface, acquire struct mutex
1022 * any time we access those registers.
1024 mutex_lock(&dev_priv->drm.struct_mutex);
1026 /* If we've screwed up tracking, just let the interrupt fire again */
1027 if (drm_WARN_ON(&dev_priv->drm, !dev_priv->l3_parity.which_slice))
1030 misccpctl = intel_uncore_read(&dev_priv->uncore, GEN7_MISCCPCTL);
1031 intel_uncore_write(&dev_priv->uncore, GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1032 intel_uncore_posting_read(&dev_priv->uncore, GEN7_MISCCPCTL);
1034 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
1038 if (drm_WARN_ON_ONCE(&dev_priv->drm,
1039 slice >= NUM_L3_SLICES(dev_priv)))
1042 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1044 reg = GEN7_L3CDERRST1(slice);
1046 error_status = intel_uncore_read(&dev_priv->uncore, reg);
1047 row = GEN7_PARITY_ERROR_ROW(error_status);
1048 bank = GEN7_PARITY_ERROR_BANK(error_status);
1049 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1051 intel_uncore_write(&dev_priv->uncore, reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1052 intel_uncore_posting_read(&dev_priv->uncore, reg);
1054 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1055 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1056 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1057 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1058 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1059 parity_event[5] = NULL;
1061 kobject_uevent_env(&dev_priv->drm.primary->kdev->kobj,
1062 KOBJ_CHANGE, parity_event);
1064 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1065 slice, row, bank, subbank);
1067 kfree(parity_event[4]);
1068 kfree(parity_event[3]);
1069 kfree(parity_event[2]);
1070 kfree(parity_event[1]);
1073 intel_uncore_write(&dev_priv->uncore, GEN7_MISCCPCTL, misccpctl);
1076 drm_WARN_ON(&dev_priv->drm, dev_priv->l3_parity.which_slice);
1077 spin_lock_irq(>->irq_lock);
1078 gen5_gt_enable_irq(gt, GT_PARITY_ERROR(dev_priv));
1079 spin_unlock_irq(>->irq_lock);
1081 mutex_unlock(&dev_priv->drm.struct_mutex);
1084 static bool gen11_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1093 return val & GEN11_HOTPLUG_CTL_LONG_DETECT(pin);
1099 static bool bxt_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1103 return val & PORTA_HOTPLUG_LONG_DETECT;
1105 return val & PORTB_HOTPLUG_LONG_DETECT;
1107 return val & PORTC_HOTPLUG_LONG_DETECT;
1113 static bool icp_ddi_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1120 return val & SHOTPLUG_CTL_DDI_HPD_LONG_DETECT(pin);
1126 static bool icp_tc_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1135 return val & ICP_TC_HPD_LONG_DETECT(pin);
1141 static bool spt_port_hotplug2_long_detect(enum hpd_pin pin, u32 val)
1145 return val & PORTE_HOTPLUG_LONG_DETECT;
1151 static bool spt_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1155 return val & PORTA_HOTPLUG_LONG_DETECT;
1157 return val & PORTB_HOTPLUG_LONG_DETECT;
1159 return val & PORTC_HOTPLUG_LONG_DETECT;
1161 return val & PORTD_HOTPLUG_LONG_DETECT;
1167 static bool ilk_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1171 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1177 static bool pch_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1181 return val & PORTB_HOTPLUG_LONG_DETECT;
1183 return val & PORTC_HOTPLUG_LONG_DETECT;
1185 return val & PORTD_HOTPLUG_LONG_DETECT;
1191 static bool i9xx_port_hotplug_long_detect(enum hpd_pin pin, u32 val)
1195 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
1197 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
1199 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1206 * Get a bit mask of pins that have triggered, and which ones may be long.
1207 * This can be called multiple times with the same masks to accumulate
1208 * hotplug detection results from several registers.
1210 * Note that the caller is expected to zero out the masks initially.
1212 static void intel_get_hpd_pins(struct drm_i915_private *dev_priv,
1213 u32 *pin_mask, u32 *long_mask,
1214 u32 hotplug_trigger, u32 dig_hotplug_reg,
1215 const u32 hpd[HPD_NUM_PINS],
1216 bool long_pulse_detect(enum hpd_pin pin, u32 val))
1220 BUILD_BUG_ON(BITS_PER_TYPE(*pin_mask) < HPD_NUM_PINS);
1222 for_each_hpd_pin(pin) {
1223 if ((hpd[pin] & hotplug_trigger) == 0)
1226 *pin_mask |= BIT(pin);
1228 if (long_pulse_detect(pin, dig_hotplug_reg))
1229 *long_mask |= BIT(pin);
1232 drm_dbg(&dev_priv->drm,
1233 "hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x, long 0x%08x\n",
1234 hotplug_trigger, dig_hotplug_reg, *pin_mask, *long_mask);
1238 static u32 intel_hpd_enabled_irqs(struct drm_i915_private *dev_priv,
1239 const u32 hpd[HPD_NUM_PINS])
1241 struct intel_encoder *encoder;
1242 u32 enabled_irqs = 0;
1244 for_each_intel_encoder(&dev_priv->drm, encoder)
1245 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
1246 enabled_irqs |= hpd[encoder->hpd_pin];
1248 return enabled_irqs;
1251 static u32 intel_hpd_hotplug_irqs(struct drm_i915_private *dev_priv,
1252 const u32 hpd[HPD_NUM_PINS])
1254 struct intel_encoder *encoder;
1255 u32 hotplug_irqs = 0;
1257 for_each_intel_encoder(&dev_priv->drm, encoder)
1258 hotplug_irqs |= hpd[encoder->hpd_pin];
1260 return hotplug_irqs;
1263 static u32 intel_hpd_hotplug_enables(struct drm_i915_private *i915,
1264 hotplug_enables_func hotplug_enables)
1266 struct intel_encoder *encoder;
1269 for_each_intel_encoder(&i915->drm, encoder)
1270 hotplug |= hotplug_enables(i915, encoder->hpd_pin);
1275 static void gmbus_irq_handler(struct drm_i915_private *dev_priv)
1277 wake_up_all(&dev_priv->gmbus_wait_queue);
1280 static void dp_aux_irq_handler(struct drm_i915_private *dev_priv)
1282 wake_up_all(&dev_priv->gmbus_wait_queue);
1285 #if defined(CONFIG_DEBUG_FS)
1286 static void display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1292 struct intel_crtc *crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
1293 struct intel_pipe_crc *pipe_crc = &crtc->pipe_crc;
1294 u32 crcs[5] = { crc0, crc1, crc2, crc3, crc4 };
1296 trace_intel_pipe_crc(crtc, crcs);
1298 spin_lock(&pipe_crc->lock);
1300 * For some not yet identified reason, the first CRC is
1301 * bonkers. So let's just wait for the next vblank and read
1302 * out the buggy result.
1304 * On GEN8+ sometimes the second CRC is bonkers as well, so
1305 * don't trust that one either.
1307 if (pipe_crc->skipped <= 0 ||
1308 (INTEL_GEN(dev_priv) >= 8 && pipe_crc->skipped == 1)) {
1309 pipe_crc->skipped++;
1310 spin_unlock(&pipe_crc->lock);
1313 spin_unlock(&pipe_crc->lock);
1315 drm_crtc_add_crc_entry(&crtc->base, true,
1316 drm_crtc_accurate_vblank_count(&crtc->base),
1321 display_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1328 static void flip_done_handler(struct drm_i915_private *i915,
1331 struct intel_crtc *crtc = intel_get_crtc_for_pipe(i915, pipe);
1332 struct drm_crtc_state *crtc_state = crtc->base.state;
1333 struct drm_pending_vblank_event *e = crtc_state->event;
1334 struct drm_device *dev = &i915->drm;
1335 unsigned long irqflags;
1337 spin_lock_irqsave(&dev->event_lock, irqflags);
1339 crtc_state->event = NULL;
1341 drm_crtc_send_vblank_event(&crtc->base, e);
1343 spin_unlock_irqrestore(&dev->event_lock, irqflags);
1346 static void hsw_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1349 display_pipe_crc_irq_handler(dev_priv, pipe,
1350 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_1_IVB(pipe)),
1354 static void ivb_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1357 display_pipe_crc_irq_handler(dev_priv, pipe,
1358 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_1_IVB(pipe)),
1359 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_2_IVB(pipe)),
1360 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_3_IVB(pipe)),
1361 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_4_IVB(pipe)),
1362 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_5_IVB(pipe)));
1365 static void i9xx_pipe_crc_irq_handler(struct drm_i915_private *dev_priv,
1370 if (INTEL_GEN(dev_priv) >= 3)
1371 res1 = intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_RES1_I915(pipe));
1375 if (INTEL_GEN(dev_priv) >= 5 || IS_G4X(dev_priv))
1376 res2 = intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_RES2_G4X(pipe));
1380 display_pipe_crc_irq_handler(dev_priv, pipe,
1381 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_RED(pipe)),
1382 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_GREEN(pipe)),
1383 intel_uncore_read(&dev_priv->uncore, PIPE_CRC_RES_BLUE(pipe)),
1387 static void i9xx_pipestat_irq_reset(struct drm_i915_private *dev_priv)
1391 for_each_pipe(dev_priv, pipe) {
1392 intel_uncore_write(&dev_priv->uncore, PIPESTAT(pipe),
1393 PIPESTAT_INT_STATUS_MASK |
1394 PIPE_FIFO_UNDERRUN_STATUS);
1396 dev_priv->pipestat_irq_mask[pipe] = 0;
1400 static void i9xx_pipestat_irq_ack(struct drm_i915_private *dev_priv,
1401 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
1405 spin_lock(&dev_priv->irq_lock);
1407 if (!dev_priv->display_irqs_enabled) {
1408 spin_unlock(&dev_priv->irq_lock);
1412 for_each_pipe(dev_priv, pipe) {
1414 u32 status_mask, enable_mask, iir_bit = 0;
1417 * PIPESTAT bits get signalled even when the interrupt is
1418 * disabled with the mask bits, and some of the status bits do
1419 * not generate interrupts at all (like the underrun bit). Hence
1420 * we need to be careful that we only handle what we want to
1424 /* fifo underruns are filterered in the underrun handler. */
1425 status_mask = PIPE_FIFO_UNDERRUN_STATUS;
1430 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1433 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1436 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1440 status_mask |= dev_priv->pipestat_irq_mask[pipe];
1445 reg = PIPESTAT(pipe);
1446 pipe_stats[pipe] = intel_uncore_read(&dev_priv->uncore, reg) & status_mask;
1447 enable_mask = i915_pipestat_enable_mask(dev_priv, pipe);
1450 * Clear the PIPE*STAT regs before the IIR
1452 * Toggle the enable bits to make sure we get an
1453 * edge in the ISR pipe event bit if we don't clear
1454 * all the enabled status bits. Otherwise the edge
1455 * triggered IIR on i965/g4x wouldn't notice that
1456 * an interrupt is still pending.
1458 if (pipe_stats[pipe]) {
1459 intel_uncore_write(&dev_priv->uncore, reg, pipe_stats[pipe]);
1460 intel_uncore_write(&dev_priv->uncore, reg, enable_mask);
1463 spin_unlock(&dev_priv->irq_lock);
1466 static void i8xx_pipestat_irq_handler(struct drm_i915_private *dev_priv,
1467 u16 iir, u32 pipe_stats[I915_MAX_PIPES])
1471 for_each_pipe(dev_priv, pipe) {
1472 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
1473 intel_handle_vblank(dev_priv, pipe);
1475 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1476 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
1478 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1479 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
1483 static void i915_pipestat_irq_handler(struct drm_i915_private *dev_priv,
1484 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
1486 bool blc_event = false;
1489 for_each_pipe(dev_priv, pipe) {
1490 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
1491 intel_handle_vblank(dev_priv, pipe);
1493 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
1496 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1497 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
1499 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1500 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
1503 if (blc_event || (iir & I915_ASLE_INTERRUPT))
1504 intel_opregion_asle_intr(dev_priv);
1507 static void i965_pipestat_irq_handler(struct drm_i915_private *dev_priv,
1508 u32 iir, u32 pipe_stats[I915_MAX_PIPES])
1510 bool blc_event = false;
1513 for_each_pipe(dev_priv, pipe) {
1514 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS)
1515 intel_handle_vblank(dev_priv, pipe);
1517 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
1520 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1521 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
1523 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1524 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
1527 if (blc_event || (iir & I915_ASLE_INTERRUPT))
1528 intel_opregion_asle_intr(dev_priv);
1530 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1531 gmbus_irq_handler(dev_priv);
1534 static void valleyview_pipestat_irq_handler(struct drm_i915_private *dev_priv,
1535 u32 pipe_stats[I915_MAX_PIPES])
1539 for_each_pipe(dev_priv, pipe) {
1540 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS)
1541 intel_handle_vblank(dev_priv, pipe);
1543 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV)
1544 flip_done_handler(dev_priv, pipe);
1546 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1547 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
1549 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1550 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
1553 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1554 gmbus_irq_handler(dev_priv);
1557 static u32 i9xx_hpd_irq_ack(struct drm_i915_private *dev_priv)
1559 u32 hotplug_status = 0, hotplug_status_mask;
1562 if (IS_G4X(dev_priv) ||
1563 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
1564 hotplug_status_mask = HOTPLUG_INT_STATUS_G4X |
1565 DP_AUX_CHANNEL_MASK_INT_STATUS_G4X;
1567 hotplug_status_mask = HOTPLUG_INT_STATUS_I915;
1570 * We absolutely have to clear all the pending interrupt
1571 * bits in PORT_HOTPLUG_STAT. Otherwise the ISR port
1572 * interrupt bit won't have an edge, and the i965/g4x
1573 * edge triggered IIR will not notice that an interrupt
1574 * is still pending. We can't use PORT_HOTPLUG_EN to
1575 * guarantee the edge as the act of toggling the enable
1576 * bits can itself generate a new hotplug interrupt :(
1578 for (i = 0; i < 10; i++) {
1579 u32 tmp = intel_uncore_read(&dev_priv->uncore, PORT_HOTPLUG_STAT) & hotplug_status_mask;
1582 return hotplug_status;
1584 hotplug_status |= tmp;
1585 intel_uncore_write(&dev_priv->uncore, PORT_HOTPLUG_STAT, hotplug_status);
1588 drm_WARN_ONCE(&dev_priv->drm, 1,
1589 "PORT_HOTPLUG_STAT did not clear (0x%08x)\n",
1590 intel_uncore_read(&dev_priv->uncore, PORT_HOTPLUG_STAT));
1592 return hotplug_status;
1595 static void i9xx_hpd_irq_handler(struct drm_i915_private *dev_priv,
1598 u32 pin_mask = 0, long_mask = 0;
1599 u32 hotplug_trigger;
1601 if (IS_G4X(dev_priv) ||
1602 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
1603 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
1605 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
1607 if (hotplug_trigger) {
1608 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
1609 hotplug_trigger, hotplug_trigger,
1610 dev_priv->hotplug.hpd,
1611 i9xx_port_hotplug_long_detect);
1613 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
1616 if ((IS_G4X(dev_priv) ||
1617 IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) &&
1618 hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
1619 dp_aux_irq_handler(dev_priv);
1622 static irqreturn_t valleyview_irq_handler(int irq, void *arg)
1624 struct drm_i915_private *dev_priv = arg;
1625 irqreturn_t ret = IRQ_NONE;
1627 if (!intel_irqs_enabled(dev_priv))
1630 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1631 disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
1634 u32 iir, gt_iir, pm_iir;
1635 u32 pipe_stats[I915_MAX_PIPES] = {};
1636 u32 hotplug_status = 0;
1639 gt_iir = intel_uncore_read(&dev_priv->uncore, GTIIR);
1640 pm_iir = intel_uncore_read(&dev_priv->uncore, GEN6_PMIIR);
1641 iir = intel_uncore_read(&dev_priv->uncore, VLV_IIR);
1643 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1649 * Theory on interrupt generation, based on empirical evidence:
1651 * x = ((VLV_IIR & VLV_IER) ||
1652 * (((GT_IIR & GT_IER) || (GEN6_PMIIR & GEN6_PMIER)) &&
1653 * (VLV_MASTER_IER & MASTER_INTERRUPT_ENABLE)));
1655 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1656 * Hence we clear MASTER_INTERRUPT_ENABLE and VLV_IER to
1657 * guarantee the CPU interrupt will be raised again even if we
1658 * don't end up clearing all the VLV_IIR, GT_IIR, GEN6_PMIIR
1659 * bits this time around.
1661 intel_uncore_write(&dev_priv->uncore, VLV_MASTER_IER, 0);
1662 ier = intel_uncore_read(&dev_priv->uncore, VLV_IER);
1663 intel_uncore_write(&dev_priv->uncore, VLV_IER, 0);
1666 intel_uncore_write(&dev_priv->uncore, GTIIR, gt_iir);
1668 intel_uncore_write(&dev_priv->uncore, GEN6_PMIIR, pm_iir);
1670 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1671 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
1673 /* Call regardless, as some status bits might not be
1674 * signalled in iir */
1675 i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats);
1677 if (iir & (I915_LPE_PIPE_A_INTERRUPT |
1678 I915_LPE_PIPE_B_INTERRUPT))
1679 intel_lpe_audio_irq_handler(dev_priv);
1682 * VLV_IIR is single buffered, and reflects the level
1683 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1686 intel_uncore_write(&dev_priv->uncore, VLV_IIR, iir);
1688 intel_uncore_write(&dev_priv->uncore, VLV_IER, ier);
1689 intel_uncore_write(&dev_priv->uncore, VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
1692 gen6_gt_irq_handler(&dev_priv->gt, gt_iir);
1694 gen6_rps_irq_handler(&dev_priv->gt.rps, pm_iir);
1697 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
1699 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
1702 pmu_irq_stats(dev_priv, ret);
1704 enable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
1709 static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1711 struct drm_i915_private *dev_priv = arg;
1712 irqreturn_t ret = IRQ_NONE;
1714 if (!intel_irqs_enabled(dev_priv))
1717 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
1718 disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
1721 u32 master_ctl, iir;
1722 u32 pipe_stats[I915_MAX_PIPES] = {};
1723 u32 hotplug_status = 0;
1726 master_ctl = intel_uncore_read(&dev_priv->uncore, GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1727 iir = intel_uncore_read(&dev_priv->uncore, VLV_IIR);
1729 if (master_ctl == 0 && iir == 0)
1735 * Theory on interrupt generation, based on empirical evidence:
1737 * x = ((VLV_IIR & VLV_IER) ||
1738 * ((GEN8_MASTER_IRQ & ~GEN8_MASTER_IRQ_CONTROL) &&
1739 * (GEN8_MASTER_IRQ & GEN8_MASTER_IRQ_CONTROL)));
1741 * A CPU interrupt will only be raised when 'x' has a 0->1 edge.
1742 * Hence we clear GEN8_MASTER_IRQ_CONTROL and VLV_IER to
1743 * guarantee the CPU interrupt will be raised again even if we
1744 * don't end up clearing all the VLV_IIR and GEN8_MASTER_IRQ_CONTROL
1745 * bits this time around.
1747 intel_uncore_write(&dev_priv->uncore, GEN8_MASTER_IRQ, 0);
1748 ier = intel_uncore_read(&dev_priv->uncore, VLV_IER);
1749 intel_uncore_write(&dev_priv->uncore, VLV_IER, 0);
1751 gen8_gt_irq_handler(&dev_priv->gt, master_ctl);
1753 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1754 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
1756 /* Call regardless, as some status bits might not be
1757 * signalled in iir */
1758 i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats);
1760 if (iir & (I915_LPE_PIPE_A_INTERRUPT |
1761 I915_LPE_PIPE_B_INTERRUPT |
1762 I915_LPE_PIPE_C_INTERRUPT))
1763 intel_lpe_audio_irq_handler(dev_priv);
1766 * VLV_IIR is single buffered, and reflects the level
1767 * from PIPESTAT/PORT_HOTPLUG_STAT, hence clear it last.
1770 intel_uncore_write(&dev_priv->uncore, VLV_IIR, iir);
1772 intel_uncore_write(&dev_priv->uncore, VLV_IER, ier);
1773 intel_uncore_write(&dev_priv->uncore, GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
1776 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
1778 valleyview_pipestat_irq_handler(dev_priv, pipe_stats);
1781 pmu_irq_stats(dev_priv, ret);
1783 enable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
1788 static void ibx_hpd_irq_handler(struct drm_i915_private *dev_priv,
1789 u32 hotplug_trigger)
1791 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
1794 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
1795 * unless we touch the hotplug register, even if hotplug_trigger is
1796 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
1799 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG);
1800 if (!hotplug_trigger) {
1801 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
1802 PORTD_HOTPLUG_STATUS_MASK |
1803 PORTC_HOTPLUG_STATUS_MASK |
1804 PORTB_HOTPLUG_STATUS_MASK;
1805 dig_hotplug_reg &= ~mask;
1808 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG, dig_hotplug_reg);
1809 if (!hotplug_trigger)
1812 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
1813 hotplug_trigger, dig_hotplug_reg,
1814 dev_priv->hotplug.pch_hpd,
1815 pch_port_hotplug_long_detect);
1817 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
1820 static void ibx_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
1823 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
1825 ibx_hpd_irq_handler(dev_priv, hotplug_trigger);
1827 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1828 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1829 SDE_AUDIO_POWER_SHIFT);
1830 drm_dbg(&dev_priv->drm, "PCH audio power change on port %d\n",
1834 if (pch_iir & SDE_AUX_MASK)
1835 dp_aux_irq_handler(dev_priv);
1837 if (pch_iir & SDE_GMBUS)
1838 gmbus_irq_handler(dev_priv);
1840 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1841 drm_dbg(&dev_priv->drm, "PCH HDCP audio interrupt\n");
1843 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1844 drm_dbg(&dev_priv->drm, "PCH transcoder audio interrupt\n");
1846 if (pch_iir & SDE_POISON)
1847 drm_err(&dev_priv->drm, "PCH poison interrupt\n");
1849 if (pch_iir & SDE_FDI_MASK) {
1850 for_each_pipe(dev_priv, pipe)
1851 drm_dbg(&dev_priv->drm, " pipe %c FDI IIR: 0x%08x\n",
1853 intel_uncore_read(&dev_priv->uncore, FDI_RX_IIR(pipe)));
1856 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1857 drm_dbg(&dev_priv->drm, "PCH transcoder CRC done interrupt\n");
1859 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1860 drm_dbg(&dev_priv->drm,
1861 "PCH transcoder CRC error interrupt\n");
1863 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
1864 intel_pch_fifo_underrun_irq_handler(dev_priv, PIPE_A);
1866 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1867 intel_pch_fifo_underrun_irq_handler(dev_priv, PIPE_B);
1870 static void ivb_err_int_handler(struct drm_i915_private *dev_priv)
1872 u32 err_int = intel_uncore_read(&dev_priv->uncore, GEN7_ERR_INT);
1875 if (err_int & ERR_INT_POISON)
1876 drm_err(&dev_priv->drm, "Poison interrupt\n");
1878 for_each_pipe(dev_priv, pipe) {
1879 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
1880 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
1882 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
1883 if (IS_IVYBRIDGE(dev_priv))
1884 ivb_pipe_crc_irq_handler(dev_priv, pipe);
1886 hsw_pipe_crc_irq_handler(dev_priv, pipe);
1890 intel_uncore_write(&dev_priv->uncore, GEN7_ERR_INT, err_int);
1893 static void cpt_serr_int_handler(struct drm_i915_private *dev_priv)
1895 u32 serr_int = intel_uncore_read(&dev_priv->uncore, SERR_INT);
1898 if (serr_int & SERR_INT_POISON)
1899 drm_err(&dev_priv->drm, "PCH poison interrupt\n");
1901 for_each_pipe(dev_priv, pipe)
1902 if (serr_int & SERR_INT_TRANS_FIFO_UNDERRUN(pipe))
1903 intel_pch_fifo_underrun_irq_handler(dev_priv, pipe);
1905 intel_uncore_write(&dev_priv->uncore, SERR_INT, serr_int);
1908 static void cpt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
1911 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
1913 ibx_hpd_irq_handler(dev_priv, hotplug_trigger);
1915 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1916 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1917 SDE_AUDIO_POWER_SHIFT_CPT);
1918 drm_dbg(&dev_priv->drm, "PCH audio power change on port %c\n",
1922 if (pch_iir & SDE_AUX_MASK_CPT)
1923 dp_aux_irq_handler(dev_priv);
1925 if (pch_iir & SDE_GMBUS_CPT)
1926 gmbus_irq_handler(dev_priv);
1928 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1929 drm_dbg(&dev_priv->drm, "Audio CP request interrupt\n");
1931 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1932 drm_dbg(&dev_priv->drm, "Audio CP change interrupt\n");
1934 if (pch_iir & SDE_FDI_MASK_CPT) {
1935 for_each_pipe(dev_priv, pipe)
1936 drm_dbg(&dev_priv->drm, " pipe %c FDI IIR: 0x%08x\n",
1938 intel_uncore_read(&dev_priv->uncore, FDI_RX_IIR(pipe)));
1941 if (pch_iir & SDE_ERROR_CPT)
1942 cpt_serr_int_handler(dev_priv);
1945 static void icp_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
1947 u32 ddi_hotplug_trigger = pch_iir & SDE_DDI_HOTPLUG_MASK_ICP;
1948 u32 tc_hotplug_trigger = pch_iir & SDE_TC_HOTPLUG_MASK_ICP;
1949 u32 pin_mask = 0, long_mask = 0;
1951 if (ddi_hotplug_trigger) {
1952 u32 dig_hotplug_reg;
1954 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, SHOTPLUG_CTL_DDI);
1955 intel_uncore_write(&dev_priv->uncore, SHOTPLUG_CTL_DDI, dig_hotplug_reg);
1957 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
1958 ddi_hotplug_trigger, dig_hotplug_reg,
1959 dev_priv->hotplug.pch_hpd,
1960 icp_ddi_port_hotplug_long_detect);
1963 if (tc_hotplug_trigger) {
1964 u32 dig_hotplug_reg;
1966 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, SHOTPLUG_CTL_TC);
1967 intel_uncore_write(&dev_priv->uncore, SHOTPLUG_CTL_TC, dig_hotplug_reg);
1969 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
1970 tc_hotplug_trigger, dig_hotplug_reg,
1971 dev_priv->hotplug.pch_hpd,
1972 icp_tc_port_hotplug_long_detect);
1976 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
1978 if (pch_iir & SDE_GMBUS_ICP)
1979 gmbus_irq_handler(dev_priv);
1982 static void spt_irq_handler(struct drm_i915_private *dev_priv, u32 pch_iir)
1984 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
1985 ~SDE_PORTE_HOTPLUG_SPT;
1986 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
1987 u32 pin_mask = 0, long_mask = 0;
1989 if (hotplug_trigger) {
1990 u32 dig_hotplug_reg;
1992 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG);
1993 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG, dig_hotplug_reg);
1995 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
1996 hotplug_trigger, dig_hotplug_reg,
1997 dev_priv->hotplug.pch_hpd,
1998 spt_port_hotplug_long_detect);
2001 if (hotplug2_trigger) {
2002 u32 dig_hotplug_reg;
2004 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG2);
2005 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2007 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
2008 hotplug2_trigger, dig_hotplug_reg,
2009 dev_priv->hotplug.pch_hpd,
2010 spt_port_hotplug2_long_detect);
2014 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
2016 if (pch_iir & SDE_GMBUS_CPT)
2017 gmbus_irq_handler(dev_priv);
2020 static void ilk_hpd_irq_handler(struct drm_i915_private *dev_priv,
2021 u32 hotplug_trigger)
2023 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2025 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, DIGITAL_PORT_HOTPLUG_CNTRL);
2026 intel_uncore_write(&dev_priv->uncore, DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2028 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
2029 hotplug_trigger, dig_hotplug_reg,
2030 dev_priv->hotplug.hpd,
2031 ilk_port_hotplug_long_detect);
2033 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
2036 static void ilk_display_irq_handler(struct drm_i915_private *dev_priv,
2040 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2042 if (hotplug_trigger)
2043 ilk_hpd_irq_handler(dev_priv, hotplug_trigger);
2045 if (de_iir & DE_AUX_CHANNEL_A)
2046 dp_aux_irq_handler(dev_priv);
2048 if (de_iir & DE_GSE)
2049 intel_opregion_asle_intr(dev_priv);
2051 if (de_iir & DE_POISON)
2052 drm_err(&dev_priv->drm, "Poison interrupt\n");
2054 for_each_pipe(dev_priv, pipe) {
2055 if (de_iir & DE_PIPE_VBLANK(pipe))
2056 intel_handle_vblank(dev_priv, pipe);
2058 if (de_iir & DE_PLANE_FLIP_DONE(pipe))
2059 flip_done_handler(dev_priv, pipe);
2061 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
2062 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2064 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2065 i9xx_pipe_crc_irq_handler(dev_priv, pipe);
2068 /* check event from PCH */
2069 if (de_iir & DE_PCH_EVENT) {
2070 u32 pch_iir = intel_uncore_read(&dev_priv->uncore, SDEIIR);
2072 if (HAS_PCH_CPT(dev_priv))
2073 cpt_irq_handler(dev_priv, pch_iir);
2075 ibx_irq_handler(dev_priv, pch_iir);
2077 /* should clear PCH hotplug event before clear CPU irq */
2078 intel_uncore_write(&dev_priv->uncore, SDEIIR, pch_iir);
2081 if (IS_GEN(dev_priv, 5) && de_iir & DE_PCU_EVENT)
2082 gen5_rps_irq_handler(&dev_priv->gt.rps);
2085 static void ivb_display_irq_handler(struct drm_i915_private *dev_priv,
2089 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2091 if (hotplug_trigger)
2092 ilk_hpd_irq_handler(dev_priv, hotplug_trigger);
2094 if (de_iir & DE_ERR_INT_IVB)
2095 ivb_err_int_handler(dev_priv);
2097 if (de_iir & DE_EDP_PSR_INT_HSW) {
2098 u32 psr_iir = intel_uncore_read(&dev_priv->uncore, EDP_PSR_IIR);
2100 intel_psr_irq_handler(dev_priv, psr_iir);
2101 intel_uncore_write(&dev_priv->uncore, EDP_PSR_IIR, psr_iir);
2104 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2105 dp_aux_irq_handler(dev_priv);
2107 if (de_iir & DE_GSE_IVB)
2108 intel_opregion_asle_intr(dev_priv);
2110 for_each_pipe(dev_priv, pipe) {
2111 if (de_iir & DE_PIPE_VBLANK_IVB(pipe))
2112 intel_handle_vblank(dev_priv, pipe);
2114 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe))
2115 flip_done_handler(dev_priv, pipe);
2118 /* check event from PCH */
2119 if (!HAS_PCH_NOP(dev_priv) && (de_iir & DE_PCH_EVENT_IVB)) {
2120 u32 pch_iir = intel_uncore_read(&dev_priv->uncore, SDEIIR);
2122 cpt_irq_handler(dev_priv, pch_iir);
2124 /* clear PCH hotplug event before clear CPU irq */
2125 intel_uncore_write(&dev_priv->uncore, SDEIIR, pch_iir);
2130 * To handle irqs with the minimum potential races with fresh interrupts, we:
2131 * 1 - Disable Master Interrupt Control.
2132 * 2 - Find the source(s) of the interrupt.
2133 * 3 - Clear the Interrupt Identity bits (IIR).
2134 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2135 * 5 - Re-enable Master Interrupt Control.
2137 static irqreturn_t ilk_irq_handler(int irq, void *arg)
2139 struct drm_i915_private *i915 = arg;
2140 void __iomem * const regs = i915->uncore.regs;
2141 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
2142 irqreturn_t ret = IRQ_NONE;
2144 if (unlikely(!intel_irqs_enabled(i915)))
2147 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2148 disable_rpm_wakeref_asserts(&i915->runtime_pm);
2150 /* disable master interrupt before clearing iir */
2151 de_ier = raw_reg_read(regs, DEIER);
2152 raw_reg_write(regs, DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
2154 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2155 * interrupts will will be stored on its back queue, and then we'll be
2156 * able to process them after we restore SDEIER (as soon as we restore
2157 * it, we'll get an interrupt if SDEIIR still has something to process
2158 * due to its back queue). */
2159 if (!HAS_PCH_NOP(i915)) {
2160 sde_ier = raw_reg_read(regs, SDEIER);
2161 raw_reg_write(regs, SDEIER, 0);
2164 /* Find, clear, then process each source of interrupt */
2166 gt_iir = raw_reg_read(regs, GTIIR);
2168 raw_reg_write(regs, GTIIR, gt_iir);
2169 if (INTEL_GEN(i915) >= 6)
2170 gen6_gt_irq_handler(&i915->gt, gt_iir);
2172 gen5_gt_irq_handler(&i915->gt, gt_iir);
2176 de_iir = raw_reg_read(regs, DEIIR);
2178 raw_reg_write(regs, DEIIR, de_iir);
2179 if (INTEL_GEN(i915) >= 7)
2180 ivb_display_irq_handler(i915, de_iir);
2182 ilk_display_irq_handler(i915, de_iir);
2186 if (INTEL_GEN(i915) >= 6) {
2187 u32 pm_iir = raw_reg_read(regs, GEN6_PMIIR);
2189 raw_reg_write(regs, GEN6_PMIIR, pm_iir);
2190 gen6_rps_irq_handler(&i915->gt.rps, pm_iir);
2195 raw_reg_write(regs, DEIER, de_ier);
2197 raw_reg_write(regs, SDEIER, sde_ier);
2199 pmu_irq_stats(i915, ret);
2201 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2202 enable_rpm_wakeref_asserts(&i915->runtime_pm);
2207 static void bxt_hpd_irq_handler(struct drm_i915_private *dev_priv,
2208 u32 hotplug_trigger)
2210 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2212 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG);
2213 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG, dig_hotplug_reg);
2215 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
2216 hotplug_trigger, dig_hotplug_reg,
2217 dev_priv->hotplug.hpd,
2218 bxt_port_hotplug_long_detect);
2220 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
2223 static void gen11_hpd_irq_handler(struct drm_i915_private *dev_priv, u32 iir)
2225 u32 pin_mask = 0, long_mask = 0;
2226 u32 trigger_tc = iir & GEN11_DE_TC_HOTPLUG_MASK;
2227 u32 trigger_tbt = iir & GEN11_DE_TBT_HOTPLUG_MASK;
2230 u32 dig_hotplug_reg;
2232 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, GEN11_TC_HOTPLUG_CTL);
2233 intel_uncore_write(&dev_priv->uncore, GEN11_TC_HOTPLUG_CTL, dig_hotplug_reg);
2235 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
2236 trigger_tc, dig_hotplug_reg,
2237 dev_priv->hotplug.hpd,
2238 gen11_port_hotplug_long_detect);
2242 u32 dig_hotplug_reg;
2244 dig_hotplug_reg = intel_uncore_read(&dev_priv->uncore, GEN11_TBT_HOTPLUG_CTL);
2245 intel_uncore_write(&dev_priv->uncore, GEN11_TBT_HOTPLUG_CTL, dig_hotplug_reg);
2247 intel_get_hpd_pins(dev_priv, &pin_mask, &long_mask,
2248 trigger_tbt, dig_hotplug_reg,
2249 dev_priv->hotplug.hpd,
2250 gen11_port_hotplug_long_detect);
2254 intel_hpd_irq_handler(dev_priv, pin_mask, long_mask);
2256 drm_err(&dev_priv->drm,
2257 "Unexpected DE HPD interrupt 0x%08x\n", iir);
2260 static u32 gen8_de_port_aux_mask(struct drm_i915_private *dev_priv)
2264 if (INTEL_GEN(dev_priv) >= 12)
2265 return TGL_DE_PORT_AUX_DDIA |
2266 TGL_DE_PORT_AUX_DDIB |
2267 TGL_DE_PORT_AUX_DDIC |
2268 TGL_DE_PORT_AUX_USBC1 |
2269 TGL_DE_PORT_AUX_USBC2 |
2270 TGL_DE_PORT_AUX_USBC3 |
2271 TGL_DE_PORT_AUX_USBC4 |
2272 TGL_DE_PORT_AUX_USBC5 |
2273 TGL_DE_PORT_AUX_USBC6;
2276 mask = GEN8_AUX_CHANNEL_A;
2277 if (INTEL_GEN(dev_priv) >= 9)
2278 mask |= GEN9_AUX_CHANNEL_B |
2279 GEN9_AUX_CHANNEL_C |
2282 if (IS_CNL_WITH_PORT_F(dev_priv) || IS_GEN(dev_priv, 11))
2283 mask |= CNL_AUX_CHANNEL_F;
2285 if (IS_GEN(dev_priv, 11))
2286 mask |= ICL_AUX_CHANNEL_E;
2291 static u32 gen8_de_pipe_fault_mask(struct drm_i915_private *dev_priv)
2293 if (IS_ROCKETLAKE(dev_priv))
2294 return RKL_DE_PIPE_IRQ_FAULT_ERRORS;
2295 else if (INTEL_GEN(dev_priv) >= 11)
2296 return GEN11_DE_PIPE_IRQ_FAULT_ERRORS;
2297 else if (INTEL_GEN(dev_priv) >= 9)
2298 return GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2300 return GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2304 gen8_de_misc_irq_handler(struct drm_i915_private *dev_priv, u32 iir)
2308 if (iir & GEN8_DE_MISC_GSE) {
2309 intel_opregion_asle_intr(dev_priv);
2313 if (iir & GEN8_DE_EDP_PSR) {
2317 if (INTEL_GEN(dev_priv) >= 12)
2318 iir_reg = TRANS_PSR_IIR(dev_priv->psr.transcoder);
2320 iir_reg = EDP_PSR_IIR;
2322 psr_iir = intel_uncore_read(&dev_priv->uncore, iir_reg);
2323 intel_uncore_write(&dev_priv->uncore, iir_reg, psr_iir);
2328 intel_psr_irq_handler(dev_priv, psr_iir);
2332 drm_err(&dev_priv->drm, "Unexpected DE Misc interrupt\n");
2335 static void gen11_dsi_te_interrupt_handler(struct drm_i915_private *dev_priv,
2338 enum pipe pipe = INVALID_PIPE;
2339 enum transcoder dsi_trans;
2344 * Incase of dual link, TE comes from DSI_1
2345 * this is to check if dual link is enabled
2347 val = intel_uncore_read(&dev_priv->uncore, TRANS_DDI_FUNC_CTL2(TRANSCODER_DSI_0));
2348 val &= PORT_SYNC_MODE_ENABLE;
2351 * if dual link is enabled, then read DSI_0
2352 * transcoder registers
2354 port = ((te_trigger & DSI1_TE && val) || (te_trigger & DSI0_TE)) ?
2356 dsi_trans = (port == PORT_A) ? TRANSCODER_DSI_0 : TRANSCODER_DSI_1;
2358 /* Check if DSI configured in command mode */
2359 val = intel_uncore_read(&dev_priv->uncore, DSI_TRANS_FUNC_CONF(dsi_trans));
2360 val = val & OP_MODE_MASK;
2362 if (val != CMD_MODE_NO_GATE && val != CMD_MODE_TE_GATE) {
2363 drm_err(&dev_priv->drm, "DSI trancoder not configured in command mode\n");
2367 /* Get PIPE for handling VBLANK event */
2368 val = intel_uncore_read(&dev_priv->uncore, TRANS_DDI_FUNC_CTL(dsi_trans));
2369 switch (val & TRANS_DDI_EDP_INPUT_MASK) {
2370 case TRANS_DDI_EDP_INPUT_A_ON:
2373 case TRANS_DDI_EDP_INPUT_B_ONOFF:
2376 case TRANS_DDI_EDP_INPUT_C_ONOFF:
2380 drm_err(&dev_priv->drm, "Invalid PIPE\n");
2384 intel_handle_vblank(dev_priv, pipe);
2386 /* clear TE in dsi IIR */
2387 port = (te_trigger & DSI1_TE) ? PORT_B : PORT_A;
2388 tmp = intel_uncore_read(&dev_priv->uncore, DSI_INTR_IDENT_REG(port));
2389 intel_uncore_write(&dev_priv->uncore, DSI_INTR_IDENT_REG(port), tmp);
2392 static u32 gen8_de_pipe_flip_done_mask(struct drm_i915_private *i915)
2394 if (INTEL_GEN(i915) >= 9)
2395 return GEN9_PIPE_PLANE1_FLIP_DONE;
2397 return GEN8_PIPE_PRIMARY_FLIP_DONE;
2401 gen8_de_irq_handler(struct drm_i915_private *dev_priv, u32 master_ctl)
2403 irqreturn_t ret = IRQ_NONE;
2407 if (master_ctl & GEN8_DE_MISC_IRQ) {
2408 iir = intel_uncore_read(&dev_priv->uncore, GEN8_DE_MISC_IIR);
2410 intel_uncore_write(&dev_priv->uncore, GEN8_DE_MISC_IIR, iir);
2412 gen8_de_misc_irq_handler(dev_priv, iir);
2414 drm_err(&dev_priv->drm,
2415 "The master control interrupt lied (DE MISC)!\n");
2419 if (INTEL_GEN(dev_priv) >= 11 && (master_ctl & GEN11_DE_HPD_IRQ)) {
2420 iir = intel_uncore_read(&dev_priv->uncore, GEN11_DE_HPD_IIR);
2422 intel_uncore_write(&dev_priv->uncore, GEN11_DE_HPD_IIR, iir);
2424 gen11_hpd_irq_handler(dev_priv, iir);
2426 drm_err(&dev_priv->drm,
2427 "The master control interrupt lied, (DE HPD)!\n");
2431 if (master_ctl & GEN8_DE_PORT_IRQ) {
2432 iir = intel_uncore_read(&dev_priv->uncore, GEN8_DE_PORT_IIR);
2436 intel_uncore_write(&dev_priv->uncore, GEN8_DE_PORT_IIR, iir);
2439 if (iir & gen8_de_port_aux_mask(dev_priv)) {
2440 dp_aux_irq_handler(dev_priv);
2444 if (IS_GEN9_LP(dev_priv)) {
2445 u32 hotplug_trigger = iir & BXT_DE_PORT_HOTPLUG_MASK;
2447 if (hotplug_trigger) {
2448 bxt_hpd_irq_handler(dev_priv, hotplug_trigger);
2451 } else if (IS_BROADWELL(dev_priv)) {
2452 u32 hotplug_trigger = iir & BDW_DE_PORT_HOTPLUG_MASK;
2454 if (hotplug_trigger) {
2455 ilk_hpd_irq_handler(dev_priv, hotplug_trigger);
2460 if (IS_GEN9_LP(dev_priv) && (iir & BXT_DE_PORT_GMBUS)) {
2461 gmbus_irq_handler(dev_priv);
2465 if (INTEL_GEN(dev_priv) >= 11) {
2466 u32 te_trigger = iir & (DSI0_TE | DSI1_TE);
2469 gen11_dsi_te_interrupt_handler(dev_priv, te_trigger);
2475 drm_err(&dev_priv->drm,
2476 "Unexpected DE Port interrupt\n");
2479 drm_err(&dev_priv->drm,
2480 "The master control interrupt lied (DE PORT)!\n");
2483 for_each_pipe(dev_priv, pipe) {
2486 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2489 iir = intel_uncore_read(&dev_priv->uncore, GEN8_DE_PIPE_IIR(pipe));
2491 drm_err(&dev_priv->drm,
2492 "The master control interrupt lied (DE PIPE)!\n");
2497 intel_uncore_write(&dev_priv->uncore, GEN8_DE_PIPE_IIR(pipe), iir);
2499 if (iir & GEN8_PIPE_VBLANK)
2500 intel_handle_vblank(dev_priv, pipe);
2502 if (iir & gen8_de_pipe_flip_done_mask(dev_priv))
2503 flip_done_handler(dev_priv, pipe);
2505 if (iir & GEN8_PIPE_CDCLK_CRC_DONE)
2506 hsw_pipe_crc_irq_handler(dev_priv, pipe);
2508 if (iir & GEN8_PIPE_FIFO_UNDERRUN)
2509 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2511 fault_errors = iir & gen8_de_pipe_fault_mask(dev_priv);
2513 drm_err(&dev_priv->drm,
2514 "Fault errors on pipe %c: 0x%08x\n",
2519 if (HAS_PCH_SPLIT(dev_priv) && !HAS_PCH_NOP(dev_priv) &&
2520 master_ctl & GEN8_DE_PCH_IRQ) {
2522 * FIXME(BDW): Assume for now that the new interrupt handling
2523 * scheme also closed the SDE interrupt handling race we've seen
2524 * on older pch-split platforms. But this needs testing.
2526 iir = intel_uncore_read(&dev_priv->uncore, SDEIIR);
2528 intel_uncore_write(&dev_priv->uncore, SDEIIR, iir);
2531 if (INTEL_PCH_TYPE(dev_priv) >= PCH_ICP)
2532 icp_irq_handler(dev_priv, iir);
2533 else if (INTEL_PCH_TYPE(dev_priv) >= PCH_SPT)
2534 spt_irq_handler(dev_priv, iir);
2536 cpt_irq_handler(dev_priv, iir);
2539 * Like on previous PCH there seems to be something
2540 * fishy going on with forwarding PCH interrupts.
2542 drm_dbg(&dev_priv->drm,
2543 "The master control interrupt lied (SDE)!\n");
2550 static inline u32 gen8_master_intr_disable(void __iomem * const regs)
2552 raw_reg_write(regs, GEN8_MASTER_IRQ, 0);
2555 * Now with master disabled, get a sample of level indications
2556 * for this interrupt. Indications will be cleared on related acks.
2557 * New indications can and will light up during processing,
2558 * and will generate new interrupt after enabling master.
2560 return raw_reg_read(regs, GEN8_MASTER_IRQ);
2563 static inline void gen8_master_intr_enable(void __iomem * const regs)
2565 raw_reg_write(regs, GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2568 static irqreturn_t gen8_irq_handler(int irq, void *arg)
2570 struct drm_i915_private *dev_priv = arg;
2571 void __iomem * const regs = dev_priv->uncore.regs;
2574 if (!intel_irqs_enabled(dev_priv))
2577 master_ctl = gen8_master_intr_disable(regs);
2579 gen8_master_intr_enable(regs);
2583 /* Find, queue (onto bottom-halves), then clear each source */
2584 gen8_gt_irq_handler(&dev_priv->gt, master_ctl);
2586 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2587 if (master_ctl & ~GEN8_GT_IRQS) {
2588 disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
2589 gen8_de_irq_handler(dev_priv, master_ctl);
2590 enable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
2593 gen8_master_intr_enable(regs);
2595 pmu_irq_stats(dev_priv, IRQ_HANDLED);
2601 gen11_gu_misc_irq_ack(struct intel_gt *gt, const u32 master_ctl)
2603 void __iomem * const regs = gt->uncore->regs;
2606 if (!(master_ctl & GEN11_GU_MISC_IRQ))
2609 iir = raw_reg_read(regs, GEN11_GU_MISC_IIR);
2611 raw_reg_write(regs, GEN11_GU_MISC_IIR, iir);
2617 gen11_gu_misc_irq_handler(struct intel_gt *gt, const u32 iir)
2619 if (iir & GEN11_GU_MISC_GSE)
2620 intel_opregion_asle_intr(gt->i915);
2623 static inline u32 gen11_master_intr_disable(void __iomem * const regs)
2625 raw_reg_write(regs, GEN11_GFX_MSTR_IRQ, 0);
2628 * Now with master disabled, get a sample of level indications
2629 * for this interrupt. Indications will be cleared on related acks.
2630 * New indications can and will light up during processing,
2631 * and will generate new interrupt after enabling master.
2633 return raw_reg_read(regs, GEN11_GFX_MSTR_IRQ);
2636 static inline void gen11_master_intr_enable(void __iomem * const regs)
2638 raw_reg_write(regs, GEN11_GFX_MSTR_IRQ, GEN11_MASTER_IRQ);
2642 gen11_display_irq_handler(struct drm_i915_private *i915)
2644 void __iomem * const regs = i915->uncore.regs;
2645 const u32 disp_ctl = raw_reg_read(regs, GEN11_DISPLAY_INT_CTL);
2647 disable_rpm_wakeref_asserts(&i915->runtime_pm);
2649 * GEN11_DISPLAY_INT_CTL has same format as GEN8_MASTER_IRQ
2650 * for the display related bits.
2652 raw_reg_write(regs, GEN11_DISPLAY_INT_CTL, 0x0);
2653 gen8_de_irq_handler(i915, disp_ctl);
2654 raw_reg_write(regs, GEN11_DISPLAY_INT_CTL,
2655 GEN11_DISPLAY_IRQ_ENABLE);
2657 enable_rpm_wakeref_asserts(&i915->runtime_pm);
2660 static __always_inline irqreturn_t
2661 __gen11_irq_handler(struct drm_i915_private * const i915,
2662 u32 (*intr_disable)(void __iomem * const regs),
2663 void (*intr_enable)(void __iomem * const regs))
2665 void __iomem * const regs = i915->uncore.regs;
2666 struct intel_gt *gt = &i915->gt;
2670 if (!intel_irqs_enabled(i915))
2673 master_ctl = intr_disable(regs);
2679 /* Find, queue (onto bottom-halves), then clear each source */
2680 gen11_gt_irq_handler(gt, master_ctl);
2682 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
2683 if (master_ctl & GEN11_DISPLAY_IRQ)
2684 gen11_display_irq_handler(i915);
2686 gu_misc_iir = gen11_gu_misc_irq_ack(gt, master_ctl);
2690 gen11_gu_misc_irq_handler(gt, gu_misc_iir);
2692 pmu_irq_stats(i915, IRQ_HANDLED);
2697 static irqreturn_t gen11_irq_handler(int irq, void *arg)
2699 return __gen11_irq_handler(arg,
2700 gen11_master_intr_disable,
2701 gen11_master_intr_enable);
2704 static u32 dg1_master_intr_disable_and_ack(void __iomem * const regs)
2708 /* First disable interrupts */
2709 raw_reg_write(regs, DG1_MSTR_UNIT_INTR, 0);
2711 /* Get the indication levels and ack the master unit */
2712 val = raw_reg_read(regs, DG1_MSTR_UNIT_INTR);
2716 raw_reg_write(regs, DG1_MSTR_UNIT_INTR, val);
2719 * Now with master disabled, get a sample of level indications
2720 * for this interrupt and ack them right away - we keep GEN11_MASTER_IRQ
2721 * out as this bit doesn't exist anymore for DG1
2723 val = raw_reg_read(regs, GEN11_GFX_MSTR_IRQ) & ~GEN11_MASTER_IRQ;
2727 raw_reg_write(regs, GEN11_GFX_MSTR_IRQ, val);
2732 static inline void dg1_master_intr_enable(void __iomem * const regs)
2734 raw_reg_write(regs, DG1_MSTR_UNIT_INTR, DG1_MSTR_IRQ);
2737 static irqreturn_t dg1_irq_handler(int irq, void *arg)
2739 return __gen11_irq_handler(arg,
2740 dg1_master_intr_disable_and_ack,
2741 dg1_master_intr_enable);
2744 /* Called from drm generic code, passed 'crtc' which
2745 * we use as a pipe index
2747 int i8xx_enable_vblank(struct drm_crtc *crtc)
2749 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2750 enum pipe pipe = to_intel_crtc(crtc)->pipe;
2751 unsigned long irqflags;
2753 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2754 i915_enable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2755 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2760 int i915gm_enable_vblank(struct drm_crtc *crtc)
2762 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2765 * Vblank interrupts fail to wake the device up from C2+.
2766 * Disabling render clock gating during C-states avoids
2767 * the problem. There is a small power cost so we do this
2768 * only when vblank interrupts are actually enabled.
2770 if (dev_priv->vblank_enabled++ == 0)
2771 intel_uncore_write(&dev_priv->uncore, SCPD0, _MASKED_BIT_ENABLE(CSTATE_RENDER_CLOCK_GATE_DISABLE));
2773 return i8xx_enable_vblank(crtc);
2776 int i965_enable_vblank(struct drm_crtc *crtc)
2778 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2779 enum pipe pipe = to_intel_crtc(crtc)->pipe;
2780 unsigned long irqflags;
2782 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2783 i915_enable_pipestat(dev_priv, pipe,
2784 PIPE_START_VBLANK_INTERRUPT_STATUS);
2785 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2790 int ilk_enable_vblank(struct drm_crtc *crtc)
2792 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2793 enum pipe pipe = to_intel_crtc(crtc)->pipe;
2794 unsigned long irqflags;
2795 u32 bit = INTEL_GEN(dev_priv) >= 7 ?
2796 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
2798 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2799 ilk_enable_display_irq(dev_priv, bit);
2800 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2802 /* Even though there is no DMC, frame counter can get stuck when
2803 * PSR is active as no frames are generated.
2805 if (HAS_PSR(dev_priv))
2806 drm_crtc_vblank_restore(crtc);
2811 static bool gen11_dsi_configure_te(struct intel_crtc *intel_crtc,
2814 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
2818 if (!(intel_crtc->mode_flags &
2819 (I915_MODE_FLAG_DSI_USE_TE1 | I915_MODE_FLAG_DSI_USE_TE0)))
2822 /* for dual link cases we consider TE from slave */
2823 if (intel_crtc->mode_flags & I915_MODE_FLAG_DSI_USE_TE1)
2828 tmp = intel_uncore_read(&dev_priv->uncore, DSI_INTR_MASK_REG(port));
2830 tmp &= ~DSI_TE_EVENT;
2832 tmp |= DSI_TE_EVENT;
2834 intel_uncore_write(&dev_priv->uncore, DSI_INTR_MASK_REG(port), tmp);
2836 tmp = intel_uncore_read(&dev_priv->uncore, DSI_INTR_IDENT_REG(port));
2837 intel_uncore_write(&dev_priv->uncore, DSI_INTR_IDENT_REG(port), tmp);
2842 int bdw_enable_vblank(struct drm_crtc *crtc)
2844 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2845 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2846 enum pipe pipe = intel_crtc->pipe;
2847 unsigned long irqflags;
2849 if (gen11_dsi_configure_te(intel_crtc, true))
2852 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2853 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
2854 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2856 /* Even if there is no DMC, frame counter can get stuck when
2857 * PSR is active as no frames are generated, so check only for PSR.
2859 if (HAS_PSR(dev_priv))
2860 drm_crtc_vblank_restore(crtc);
2865 /* Called from drm generic code, passed 'crtc' which
2866 * we use as a pipe index
2868 void i8xx_disable_vblank(struct drm_crtc *crtc)
2870 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2871 enum pipe pipe = to_intel_crtc(crtc)->pipe;
2872 unsigned long irqflags;
2874 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2875 i915_disable_pipestat(dev_priv, pipe, PIPE_VBLANK_INTERRUPT_STATUS);
2876 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2879 void i915gm_disable_vblank(struct drm_crtc *crtc)
2881 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2883 i8xx_disable_vblank(crtc);
2885 if (--dev_priv->vblank_enabled == 0)
2886 intel_uncore_write(&dev_priv->uncore, SCPD0, _MASKED_BIT_DISABLE(CSTATE_RENDER_CLOCK_GATE_DISABLE));
2889 void i965_disable_vblank(struct drm_crtc *crtc)
2891 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2892 enum pipe pipe = to_intel_crtc(crtc)->pipe;
2893 unsigned long irqflags;
2895 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2896 i915_disable_pipestat(dev_priv, pipe,
2897 PIPE_START_VBLANK_INTERRUPT_STATUS);
2898 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2901 void ilk_disable_vblank(struct drm_crtc *crtc)
2903 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2904 enum pipe pipe = to_intel_crtc(crtc)->pipe;
2905 unsigned long irqflags;
2906 u32 bit = INTEL_GEN(dev_priv) >= 7 ?
2907 DE_PIPE_VBLANK_IVB(pipe) : DE_PIPE_VBLANK(pipe);
2909 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2910 ilk_disable_display_irq(dev_priv, bit);
2911 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2914 void bdw_disable_vblank(struct drm_crtc *crtc)
2916 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
2917 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
2918 enum pipe pipe = intel_crtc->pipe;
2919 unsigned long irqflags;
2921 if (gen11_dsi_configure_te(intel_crtc, false))
2924 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2925 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
2926 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2929 static void ibx_irq_reset(struct drm_i915_private *dev_priv)
2931 struct intel_uncore *uncore = &dev_priv->uncore;
2933 if (HAS_PCH_NOP(dev_priv))
2936 GEN3_IRQ_RESET(uncore, SDE);
2938 if (HAS_PCH_CPT(dev_priv) || HAS_PCH_LPT(dev_priv))
2939 intel_uncore_write(&dev_priv->uncore, SERR_INT, 0xffffffff);
2942 static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
2944 struct intel_uncore *uncore = &dev_priv->uncore;
2946 if (IS_CHERRYVIEW(dev_priv))
2947 intel_uncore_write(uncore, DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
2949 intel_uncore_write(uncore, DPINVGTT, DPINVGTT_STATUS_MASK);
2951 i915_hotplug_interrupt_update_locked(dev_priv, 0xffffffff, 0);
2952 intel_uncore_write(uncore, PORT_HOTPLUG_STAT, intel_uncore_read(&dev_priv->uncore, PORT_HOTPLUG_STAT));
2954 i9xx_pipestat_irq_reset(dev_priv);
2956 GEN3_IRQ_RESET(uncore, VLV_);
2957 dev_priv->irq_mask = ~0u;
2960 static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
2962 struct intel_uncore *uncore = &dev_priv->uncore;
2968 pipestat_mask = PIPE_CRC_DONE_INTERRUPT_STATUS;
2970 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
2971 for_each_pipe(dev_priv, pipe)
2972 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
2974 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
2975 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2976 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2977 I915_LPE_PIPE_A_INTERRUPT |
2978 I915_LPE_PIPE_B_INTERRUPT;
2980 if (IS_CHERRYVIEW(dev_priv))
2981 enable_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT |
2982 I915_LPE_PIPE_C_INTERRUPT;
2984 drm_WARN_ON(&dev_priv->drm, dev_priv->irq_mask != ~0u);
2986 dev_priv->irq_mask = ~enable_mask;
2988 GEN3_IRQ_INIT(uncore, VLV_, dev_priv->irq_mask, enable_mask);
2993 static void ilk_irq_reset(struct drm_i915_private *dev_priv)
2995 struct intel_uncore *uncore = &dev_priv->uncore;
2997 GEN3_IRQ_RESET(uncore, DE);
2998 dev_priv->irq_mask = ~0u;
3000 if (IS_GEN(dev_priv, 7))
3001 intel_uncore_write(uncore, GEN7_ERR_INT, 0xffffffff);
3003 if (IS_HASWELL(dev_priv)) {
3004 intel_uncore_write(uncore, EDP_PSR_IMR, 0xffffffff);
3005 intel_uncore_write(uncore, EDP_PSR_IIR, 0xffffffff);
3008 gen5_gt_irq_reset(&dev_priv->gt);
3010 ibx_irq_reset(dev_priv);
3013 static void valleyview_irq_reset(struct drm_i915_private *dev_priv)
3015 intel_uncore_write(&dev_priv->uncore, VLV_MASTER_IER, 0);
3016 intel_uncore_posting_read(&dev_priv->uncore, VLV_MASTER_IER);
3018 gen5_gt_irq_reset(&dev_priv->gt);
3020 spin_lock_irq(&dev_priv->irq_lock);
3021 if (dev_priv->display_irqs_enabled)
3022 vlv_display_irq_reset(dev_priv);
3023 spin_unlock_irq(&dev_priv->irq_lock);
3026 static void gen8_irq_reset(struct drm_i915_private *dev_priv)
3028 struct intel_uncore *uncore = &dev_priv->uncore;
3031 gen8_master_intr_disable(dev_priv->uncore.regs);
3033 gen8_gt_irq_reset(&dev_priv->gt);
3035 intel_uncore_write(uncore, EDP_PSR_IMR, 0xffffffff);
3036 intel_uncore_write(uncore, EDP_PSR_IIR, 0xffffffff);
3038 for_each_pipe(dev_priv, pipe)
3039 if (intel_display_power_is_enabled(dev_priv,
3040 POWER_DOMAIN_PIPE(pipe)))
3041 GEN8_IRQ_RESET_NDX(uncore, DE_PIPE, pipe);
3043 GEN3_IRQ_RESET(uncore, GEN8_DE_PORT_);
3044 GEN3_IRQ_RESET(uncore, GEN8_DE_MISC_);
3045 GEN3_IRQ_RESET(uncore, GEN8_PCU_);
3047 if (HAS_PCH_SPLIT(dev_priv))
3048 ibx_irq_reset(dev_priv);
3051 static void gen11_display_irq_reset(struct drm_i915_private *dev_priv)
3053 struct intel_uncore *uncore = &dev_priv->uncore;
3055 u32 trans_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
3056 BIT(TRANSCODER_C) | BIT(TRANSCODER_D);
3058 intel_uncore_write(uncore, GEN11_DISPLAY_INT_CTL, 0);
3060 if (INTEL_GEN(dev_priv) >= 12) {
3061 enum transcoder trans;
3063 for_each_cpu_transcoder_masked(dev_priv, trans, trans_mask) {
3064 enum intel_display_power_domain domain;
3066 domain = POWER_DOMAIN_TRANSCODER(trans);
3067 if (!intel_display_power_is_enabled(dev_priv, domain))
3070 intel_uncore_write(uncore, TRANS_PSR_IMR(trans), 0xffffffff);
3071 intel_uncore_write(uncore, TRANS_PSR_IIR(trans), 0xffffffff);
3074 intel_uncore_write(uncore, EDP_PSR_IMR, 0xffffffff);
3075 intel_uncore_write(uncore, EDP_PSR_IIR, 0xffffffff);
3078 for_each_pipe(dev_priv, pipe)
3079 if (intel_display_power_is_enabled(dev_priv,
3080 POWER_DOMAIN_PIPE(pipe)))
3081 GEN8_IRQ_RESET_NDX(uncore, DE_PIPE, pipe);
3083 GEN3_IRQ_RESET(uncore, GEN8_DE_PORT_);
3084 GEN3_IRQ_RESET(uncore, GEN8_DE_MISC_);
3085 GEN3_IRQ_RESET(uncore, GEN11_DE_HPD_);
3087 if (INTEL_PCH_TYPE(dev_priv) >= PCH_ICP)
3088 GEN3_IRQ_RESET(uncore, SDE);
3090 /* Wa_14010685332:cnp/cmp,tgp,adp */
3091 if (INTEL_PCH_TYPE(dev_priv) == PCH_CNP ||
3092 (INTEL_PCH_TYPE(dev_priv) >= PCH_TGP &&
3093 INTEL_PCH_TYPE(dev_priv) < PCH_DG1)) {
3094 intel_uncore_rmw(uncore, SOUTH_CHICKEN1,
3095 SBCLK_RUN_REFCLK_DIS, SBCLK_RUN_REFCLK_DIS);
3096 intel_uncore_rmw(uncore, SOUTH_CHICKEN1,
3097 SBCLK_RUN_REFCLK_DIS, 0);
3101 static void gen11_irq_reset(struct drm_i915_private *dev_priv)
3103 struct intel_uncore *uncore = &dev_priv->uncore;
3105 if (HAS_MASTER_UNIT_IRQ(dev_priv))
3106 dg1_master_intr_disable_and_ack(dev_priv->uncore.regs);
3108 gen11_master_intr_disable(dev_priv->uncore.regs);
3110 gen11_gt_irq_reset(&dev_priv->gt);
3111 gen11_display_irq_reset(dev_priv);
3113 GEN3_IRQ_RESET(uncore, GEN11_GU_MISC_);
3114 GEN3_IRQ_RESET(uncore, GEN8_PCU_);
3117 void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3120 struct intel_uncore *uncore = &dev_priv->uncore;
3121 u32 extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN |
3122 gen8_de_pipe_flip_done_mask(dev_priv);
3125 spin_lock_irq(&dev_priv->irq_lock);
3127 if (!intel_irqs_enabled(dev_priv)) {
3128 spin_unlock_irq(&dev_priv->irq_lock);
3132 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3133 GEN8_IRQ_INIT_NDX(uncore, DE_PIPE, pipe,
3134 dev_priv->de_irq_mask[pipe],
3135 ~dev_priv->de_irq_mask[pipe] | extra_ier);
3137 spin_unlock_irq(&dev_priv->irq_lock);
3140 void gen8_irq_power_well_pre_disable(struct drm_i915_private *dev_priv,
3143 struct intel_uncore *uncore = &dev_priv->uncore;
3146 spin_lock_irq(&dev_priv->irq_lock);
3148 if (!intel_irqs_enabled(dev_priv)) {
3149 spin_unlock_irq(&dev_priv->irq_lock);
3153 for_each_pipe_masked(dev_priv, pipe, pipe_mask)
3154 GEN8_IRQ_RESET_NDX(uncore, DE_PIPE, pipe);
3156 spin_unlock_irq(&dev_priv->irq_lock);
3158 /* make sure we're done processing display irqs */
3159 intel_synchronize_irq(dev_priv);
3162 static void cherryview_irq_reset(struct drm_i915_private *dev_priv)
3164 struct intel_uncore *uncore = &dev_priv->uncore;
3166 intel_uncore_write(&dev_priv->uncore, GEN8_MASTER_IRQ, 0);
3167 intel_uncore_posting_read(&dev_priv->uncore, GEN8_MASTER_IRQ);
3169 gen8_gt_irq_reset(&dev_priv->gt);
3171 GEN3_IRQ_RESET(uncore, GEN8_PCU_);
3173 spin_lock_irq(&dev_priv->irq_lock);
3174 if (dev_priv->display_irqs_enabled)
3175 vlv_display_irq_reset(dev_priv);
3176 spin_unlock_irq(&dev_priv->irq_lock);
3179 static u32 ibx_hotplug_enables(struct drm_i915_private *i915,
3185 * When CPU and PCH are on the same package, port A
3186 * HPD must be enabled in both north and south.
3188 return HAS_PCH_LPT_LP(i915) ?
3189 PORTA_HOTPLUG_ENABLE : 0;
3191 return PORTB_HOTPLUG_ENABLE |
3192 PORTB_PULSE_DURATION_2ms;
3194 return PORTC_HOTPLUG_ENABLE |
3195 PORTC_PULSE_DURATION_2ms;
3197 return PORTD_HOTPLUG_ENABLE |
3198 PORTD_PULSE_DURATION_2ms;
3204 static void ibx_hpd_detection_setup(struct drm_i915_private *dev_priv)
3209 * Enable digital hotplug on the PCH, and configure the DP short pulse
3210 * duration to 2ms (which is the minimum in the Display Port spec).
3211 * The pulse duration bits are reserved on LPT+.
3213 hotplug = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG);
3214 hotplug &= ~(PORTA_HOTPLUG_ENABLE |
3215 PORTB_HOTPLUG_ENABLE |
3216 PORTC_HOTPLUG_ENABLE |
3217 PORTD_HOTPLUG_ENABLE |
3218 PORTB_PULSE_DURATION_MASK |
3219 PORTC_PULSE_DURATION_MASK |
3220 PORTD_PULSE_DURATION_MASK);
3221 hotplug |= intel_hpd_hotplug_enables(dev_priv, ibx_hotplug_enables);
3222 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG, hotplug);
3225 static void ibx_hpd_irq_setup(struct drm_i915_private *dev_priv)
3227 u32 hotplug_irqs, enabled_irqs;
3229 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, dev_priv->hotplug.pch_hpd);
3230 hotplug_irqs = intel_hpd_hotplug_irqs(dev_priv, dev_priv->hotplug.pch_hpd);
3232 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3234 ibx_hpd_detection_setup(dev_priv);
3237 static u32 icp_ddi_hotplug_enables(struct drm_i915_private *i915,
3245 return SHOTPLUG_CTL_DDI_HPD_ENABLE(pin);
3251 static u32 icp_tc_hotplug_enables(struct drm_i915_private *i915,
3261 return ICP_TC_HPD_ENABLE(pin);
3267 static void icp_ddi_hpd_detection_setup(struct drm_i915_private *dev_priv)
3271 hotplug = intel_uncore_read(&dev_priv->uncore, SHOTPLUG_CTL_DDI);
3272 hotplug &= ~(SHOTPLUG_CTL_DDI_HPD_ENABLE(HPD_PORT_A) |
3273 SHOTPLUG_CTL_DDI_HPD_ENABLE(HPD_PORT_B) |
3274 SHOTPLUG_CTL_DDI_HPD_ENABLE(HPD_PORT_C) |
3275 SHOTPLUG_CTL_DDI_HPD_ENABLE(HPD_PORT_D));
3276 hotplug |= intel_hpd_hotplug_enables(dev_priv, icp_ddi_hotplug_enables);
3277 intel_uncore_write(&dev_priv->uncore, SHOTPLUG_CTL_DDI, hotplug);
3280 static void icp_tc_hpd_detection_setup(struct drm_i915_private *dev_priv)
3284 hotplug = intel_uncore_read(&dev_priv->uncore, SHOTPLUG_CTL_TC);
3285 hotplug &= ~(ICP_TC_HPD_ENABLE(HPD_PORT_TC1) |
3286 ICP_TC_HPD_ENABLE(HPD_PORT_TC2) |
3287 ICP_TC_HPD_ENABLE(HPD_PORT_TC3) |
3288 ICP_TC_HPD_ENABLE(HPD_PORT_TC4) |
3289 ICP_TC_HPD_ENABLE(HPD_PORT_TC5) |
3290 ICP_TC_HPD_ENABLE(HPD_PORT_TC6));
3291 hotplug |= intel_hpd_hotplug_enables(dev_priv, icp_tc_hotplug_enables);
3292 intel_uncore_write(&dev_priv->uncore, SHOTPLUG_CTL_TC, hotplug);
3295 static void icp_hpd_irq_setup(struct drm_i915_private *dev_priv)
3297 u32 hotplug_irqs, enabled_irqs;
3299 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, dev_priv->hotplug.pch_hpd);
3300 hotplug_irqs = intel_hpd_hotplug_irqs(dev_priv, dev_priv->hotplug.pch_hpd);
3302 if (INTEL_PCH_TYPE(dev_priv) <= PCH_TGP)
3303 intel_uncore_write(&dev_priv->uncore, SHPD_FILTER_CNT, SHPD_FILTER_CNT_500_ADJ);
3305 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3307 icp_ddi_hpd_detection_setup(dev_priv);
3308 icp_tc_hpd_detection_setup(dev_priv);
3311 static u32 gen11_hotplug_enables(struct drm_i915_private *i915,
3321 return GEN11_HOTPLUG_CTL_ENABLE(pin);
3327 static void dg1_hpd_irq_setup(struct drm_i915_private *dev_priv)
3331 val = intel_uncore_read(&dev_priv->uncore, SOUTH_CHICKEN1);
3332 val |= (INVERT_DDIA_HPD |
3336 intel_uncore_write(&dev_priv->uncore, SOUTH_CHICKEN1, val);
3338 icp_hpd_irq_setup(dev_priv);
3341 static void gen11_tc_hpd_detection_setup(struct drm_i915_private *dev_priv)
3345 hotplug = intel_uncore_read(&dev_priv->uncore, GEN11_TC_HOTPLUG_CTL);
3346 hotplug &= ~(GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC1) |
3347 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC2) |
3348 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC3) |
3349 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC4) |
3350 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC5) |
3351 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC6));
3352 hotplug |= intel_hpd_hotplug_enables(dev_priv, gen11_hotplug_enables);
3353 intel_uncore_write(&dev_priv->uncore, GEN11_TC_HOTPLUG_CTL, hotplug);
3356 static void gen11_tbt_hpd_detection_setup(struct drm_i915_private *dev_priv)
3360 hotplug = intel_uncore_read(&dev_priv->uncore, GEN11_TBT_HOTPLUG_CTL);
3361 hotplug &= ~(GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC1) |
3362 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC2) |
3363 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC3) |
3364 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC4) |
3365 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC5) |
3366 GEN11_HOTPLUG_CTL_ENABLE(HPD_PORT_TC6));
3367 hotplug |= intel_hpd_hotplug_enables(dev_priv, gen11_hotplug_enables);
3368 intel_uncore_write(&dev_priv->uncore, GEN11_TBT_HOTPLUG_CTL, hotplug);
3371 static void gen11_hpd_irq_setup(struct drm_i915_private *dev_priv)
3373 u32 hotplug_irqs, enabled_irqs;
3376 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, dev_priv->hotplug.hpd);
3377 hotplug_irqs = intel_hpd_hotplug_irqs(dev_priv, dev_priv->hotplug.hpd);
3379 val = intel_uncore_read(&dev_priv->uncore, GEN11_DE_HPD_IMR);
3380 val &= ~hotplug_irqs;
3381 val |= ~enabled_irqs & hotplug_irqs;
3382 intel_uncore_write(&dev_priv->uncore, GEN11_DE_HPD_IMR, val);
3383 intel_uncore_posting_read(&dev_priv->uncore, GEN11_DE_HPD_IMR);
3385 gen11_tc_hpd_detection_setup(dev_priv);
3386 gen11_tbt_hpd_detection_setup(dev_priv);
3388 if (INTEL_PCH_TYPE(dev_priv) >= PCH_ICP)
3389 icp_hpd_irq_setup(dev_priv);
3392 static u32 spt_hotplug_enables(struct drm_i915_private *i915,
3397 return PORTA_HOTPLUG_ENABLE;
3399 return PORTB_HOTPLUG_ENABLE;
3401 return PORTC_HOTPLUG_ENABLE;
3403 return PORTD_HOTPLUG_ENABLE;
3409 static u32 spt_hotplug2_enables(struct drm_i915_private *i915,
3414 return PORTE_HOTPLUG_ENABLE;
3420 static void spt_hpd_detection_setup(struct drm_i915_private *dev_priv)
3424 /* Display WA #1179 WaHardHangonHotPlug: cnp */
3425 if (HAS_PCH_CNP(dev_priv)) {
3426 val = intel_uncore_read(&dev_priv->uncore, SOUTH_CHICKEN1);
3427 val &= ~CHASSIS_CLK_REQ_DURATION_MASK;
3428 val |= CHASSIS_CLK_REQ_DURATION(0xf);
3429 intel_uncore_write(&dev_priv->uncore, SOUTH_CHICKEN1, val);
3432 /* Enable digital hotplug on the PCH */
3433 hotplug = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG);
3434 hotplug &= ~(PORTA_HOTPLUG_ENABLE |
3435 PORTB_HOTPLUG_ENABLE |
3436 PORTC_HOTPLUG_ENABLE |
3437 PORTD_HOTPLUG_ENABLE);
3438 hotplug |= intel_hpd_hotplug_enables(dev_priv, spt_hotplug_enables);
3439 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG, hotplug);
3441 hotplug = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG2);
3442 hotplug &= ~PORTE_HOTPLUG_ENABLE;
3443 hotplug |= intel_hpd_hotplug_enables(dev_priv, spt_hotplug2_enables);
3444 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG2, hotplug);
3447 static void spt_hpd_irq_setup(struct drm_i915_private *dev_priv)
3449 u32 hotplug_irqs, enabled_irqs;
3451 if (INTEL_PCH_TYPE(dev_priv) >= PCH_CNP)
3452 intel_uncore_write(&dev_priv->uncore, SHPD_FILTER_CNT, SHPD_FILTER_CNT_500_ADJ);
3454 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, dev_priv->hotplug.pch_hpd);
3455 hotplug_irqs = intel_hpd_hotplug_irqs(dev_priv, dev_priv->hotplug.pch_hpd);
3457 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3459 spt_hpd_detection_setup(dev_priv);
3462 static u32 ilk_hotplug_enables(struct drm_i915_private *i915,
3467 return DIGITAL_PORTA_HOTPLUG_ENABLE |
3468 DIGITAL_PORTA_PULSE_DURATION_2ms;
3474 static void ilk_hpd_detection_setup(struct drm_i915_private *dev_priv)
3479 * Enable digital hotplug on the CPU, and configure the DP short pulse
3480 * duration to 2ms (which is the minimum in the Display Port spec)
3481 * The pulse duration bits are reserved on HSW+.
3483 hotplug = intel_uncore_read(&dev_priv->uncore, DIGITAL_PORT_HOTPLUG_CNTRL);
3484 hotplug &= ~(DIGITAL_PORTA_HOTPLUG_ENABLE |
3485 DIGITAL_PORTA_PULSE_DURATION_MASK);
3486 hotplug |= intel_hpd_hotplug_enables(dev_priv, ilk_hotplug_enables);
3487 intel_uncore_write(&dev_priv->uncore, DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3490 static void ilk_hpd_irq_setup(struct drm_i915_private *dev_priv)
3492 u32 hotplug_irqs, enabled_irqs;
3494 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, dev_priv->hotplug.hpd);
3495 hotplug_irqs = intel_hpd_hotplug_irqs(dev_priv, dev_priv->hotplug.hpd);
3497 if (INTEL_GEN(dev_priv) >= 8)
3498 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
3500 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3502 ilk_hpd_detection_setup(dev_priv);
3504 ibx_hpd_irq_setup(dev_priv);
3507 static u32 bxt_hotplug_enables(struct drm_i915_private *i915,
3514 hotplug = PORTA_HOTPLUG_ENABLE;
3515 if (intel_bios_is_port_hpd_inverted(i915, PORT_A))
3516 hotplug |= BXT_DDIA_HPD_INVERT;
3519 hotplug = PORTB_HOTPLUG_ENABLE;
3520 if (intel_bios_is_port_hpd_inverted(i915, PORT_B))
3521 hotplug |= BXT_DDIB_HPD_INVERT;
3524 hotplug = PORTC_HOTPLUG_ENABLE;
3525 if (intel_bios_is_port_hpd_inverted(i915, PORT_C))
3526 hotplug |= BXT_DDIC_HPD_INVERT;
3533 static void bxt_hpd_detection_setup(struct drm_i915_private *dev_priv)
3537 hotplug = intel_uncore_read(&dev_priv->uncore, PCH_PORT_HOTPLUG);
3538 hotplug &= ~(PORTA_HOTPLUG_ENABLE |
3539 PORTB_HOTPLUG_ENABLE |
3540 PORTC_HOTPLUG_ENABLE |
3541 BXT_DDIA_HPD_INVERT |
3542 BXT_DDIB_HPD_INVERT |
3543 BXT_DDIC_HPD_INVERT);
3544 hotplug |= intel_hpd_hotplug_enables(dev_priv, bxt_hotplug_enables);
3545 intel_uncore_write(&dev_priv->uncore, PCH_PORT_HOTPLUG, hotplug);
3548 static void bxt_hpd_irq_setup(struct drm_i915_private *dev_priv)
3550 u32 hotplug_irqs, enabled_irqs;
3552 enabled_irqs = intel_hpd_enabled_irqs(dev_priv, dev_priv->hotplug.hpd);
3553 hotplug_irqs = intel_hpd_hotplug_irqs(dev_priv, dev_priv->hotplug.hpd);
3555 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
3557 bxt_hpd_detection_setup(dev_priv);
3561 * SDEIER is also touched by the interrupt handler to work around missed PCH
3562 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3563 * instead we unconditionally enable all PCH interrupt sources here, but then
3564 * only unmask them as needed with SDEIMR.
3566 * Note that we currently do this after installing the interrupt handler,
3567 * but before we enable the master interrupt. That should be sufficient
3568 * to avoid races with the irq handler, assuming we have MSI. Shared legacy
3569 * interrupts could still race.
3571 static void ibx_irq_postinstall(struct drm_i915_private *dev_priv)
3573 struct intel_uncore *uncore = &dev_priv->uncore;
3576 if (HAS_PCH_NOP(dev_priv))
3579 if (HAS_PCH_IBX(dev_priv))
3580 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
3581 else if (HAS_PCH_CPT(dev_priv) || HAS_PCH_LPT(dev_priv))
3582 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
3584 mask = SDE_GMBUS_CPT;
3586 GEN3_IRQ_INIT(uncore, SDE, ~mask, 0xffffffff);
3589 static void ilk_irq_postinstall(struct drm_i915_private *dev_priv)
3591 struct intel_uncore *uncore = &dev_priv->uncore;
3592 u32 display_mask, extra_mask;
3594 if (INTEL_GEN(dev_priv) >= 7) {
3595 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3596 DE_PCH_EVENT_IVB | DE_AUX_CHANNEL_A_IVB);
3597 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
3598 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3599 DE_PLANE_FLIP_DONE_IVB(PLANE_C) |
3600 DE_PLANE_FLIP_DONE_IVB(PLANE_B) |
3601 DE_PLANE_FLIP_DONE_IVB(PLANE_A) |
3602 DE_DP_A_HOTPLUG_IVB);
3604 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3605 DE_AUX_CHANNEL_A | DE_PIPEB_CRC_DONE |
3606 DE_PIPEA_CRC_DONE | DE_POISON);
3607 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK |
3608 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3609 DE_PLANE_FLIP_DONE(PLANE_A) |
3610 DE_PLANE_FLIP_DONE(PLANE_B) |
3614 if (IS_HASWELL(dev_priv)) {
3615 gen3_assert_iir_is_zero(uncore, EDP_PSR_IIR);
3616 display_mask |= DE_EDP_PSR_INT_HSW;
3619 if (IS_IRONLAKE_M(dev_priv))
3620 extra_mask |= DE_PCU_EVENT;
3622 dev_priv->irq_mask = ~display_mask;
3624 ibx_irq_postinstall(dev_priv);
3626 gen5_gt_irq_postinstall(&dev_priv->gt);
3628 GEN3_IRQ_INIT(uncore, DE, dev_priv->irq_mask,
3629 display_mask | extra_mask);
3632 void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3634 lockdep_assert_held(&dev_priv->irq_lock);
3636 if (dev_priv->display_irqs_enabled)
3639 dev_priv->display_irqs_enabled = true;
3641 if (intel_irqs_enabled(dev_priv)) {
3642 vlv_display_irq_reset(dev_priv);
3643 vlv_display_irq_postinstall(dev_priv);
3647 void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3649 lockdep_assert_held(&dev_priv->irq_lock);
3651 if (!dev_priv->display_irqs_enabled)
3654 dev_priv->display_irqs_enabled = false;
3656 if (intel_irqs_enabled(dev_priv))
3657 vlv_display_irq_reset(dev_priv);
3661 static void valleyview_irq_postinstall(struct drm_i915_private *dev_priv)
3663 gen5_gt_irq_postinstall(&dev_priv->gt);
3665 spin_lock_irq(&dev_priv->irq_lock);
3666 if (dev_priv->display_irqs_enabled)
3667 vlv_display_irq_postinstall(dev_priv);
3668 spin_unlock_irq(&dev_priv->irq_lock);
3670 intel_uncore_write(&dev_priv->uncore, VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
3671 intel_uncore_posting_read(&dev_priv->uncore, VLV_MASTER_IER);
3674 static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3676 struct intel_uncore *uncore = &dev_priv->uncore;
3678 u32 de_pipe_masked = gen8_de_pipe_fault_mask(dev_priv) |
3679 GEN8_PIPE_CDCLK_CRC_DONE;
3680 u32 de_pipe_enables;
3681 u32 de_port_masked = gen8_de_port_aux_mask(dev_priv);
3682 u32 de_port_enables;
3683 u32 de_misc_masked = GEN8_DE_EDP_PSR;
3684 u32 trans_mask = BIT(TRANSCODER_A) | BIT(TRANSCODER_B) |
3685 BIT(TRANSCODER_C) | BIT(TRANSCODER_D);
3688 if (INTEL_GEN(dev_priv) <= 10)
3689 de_misc_masked |= GEN8_DE_MISC_GSE;
3691 if (IS_GEN9_LP(dev_priv))
3692 de_port_masked |= BXT_DE_PORT_GMBUS;
3694 if (INTEL_GEN(dev_priv) >= 11) {
3697 if (intel_bios_is_dsi_present(dev_priv, &port))
3698 de_port_masked |= DSI0_TE | DSI1_TE;
3701 de_pipe_enables = de_pipe_masked |
3702 GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN |
3703 gen8_de_pipe_flip_done_mask(dev_priv);
3705 de_port_enables = de_port_masked;
3706 if (IS_GEN9_LP(dev_priv))
3707 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3708 else if (IS_BROADWELL(dev_priv))
3709 de_port_enables |= BDW_DE_PORT_HOTPLUG_MASK;
3711 if (INTEL_GEN(dev_priv) >= 12) {
3712 enum transcoder trans;
3714 for_each_cpu_transcoder_masked(dev_priv, trans, trans_mask) {
3715 enum intel_display_power_domain domain;
3717 domain = POWER_DOMAIN_TRANSCODER(trans);
3718 if (!intel_display_power_is_enabled(dev_priv, domain))
3721 gen3_assert_iir_is_zero(uncore, TRANS_PSR_IIR(trans));
3724 gen3_assert_iir_is_zero(uncore, EDP_PSR_IIR);
3727 for_each_pipe(dev_priv, pipe) {
3728 dev_priv->de_irq_mask[pipe] = ~de_pipe_masked;
3730 if (intel_display_power_is_enabled(dev_priv,
3731 POWER_DOMAIN_PIPE(pipe)))
3732 GEN8_IRQ_INIT_NDX(uncore, DE_PIPE, pipe,
3733 dev_priv->de_irq_mask[pipe],
3737 GEN3_IRQ_INIT(uncore, GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
3738 GEN3_IRQ_INIT(uncore, GEN8_DE_MISC_, ~de_misc_masked, de_misc_masked);
3740 if (INTEL_GEN(dev_priv) >= 11) {
3741 u32 de_hpd_masked = 0;
3742 u32 de_hpd_enables = GEN11_DE_TC_HOTPLUG_MASK |
3743 GEN11_DE_TBT_HOTPLUG_MASK;
3745 GEN3_IRQ_INIT(uncore, GEN11_DE_HPD_, ~de_hpd_masked,
3750 static void gen8_irq_postinstall(struct drm_i915_private *dev_priv)
3752 if (HAS_PCH_SPLIT(dev_priv))
3753 ibx_irq_postinstall(dev_priv);
3755 gen8_gt_irq_postinstall(&dev_priv->gt);
3756 gen8_de_irq_postinstall(dev_priv);
3758 gen8_master_intr_enable(dev_priv->uncore.regs);
3761 static void icp_irq_postinstall(struct drm_i915_private *dev_priv)
3763 struct intel_uncore *uncore = &dev_priv->uncore;
3764 u32 mask = SDE_GMBUS_ICP;
3766 GEN3_IRQ_INIT(uncore, SDE, ~mask, 0xffffffff);
3769 static void gen11_irq_postinstall(struct drm_i915_private *dev_priv)
3771 struct intel_uncore *uncore = &dev_priv->uncore;
3772 u32 gu_misc_masked = GEN11_GU_MISC_GSE;
3774 if (INTEL_PCH_TYPE(dev_priv) >= PCH_ICP)
3775 icp_irq_postinstall(dev_priv);
3777 gen11_gt_irq_postinstall(&dev_priv->gt);
3778 gen8_de_irq_postinstall(dev_priv);
3780 GEN3_IRQ_INIT(uncore, GEN11_GU_MISC_, ~gu_misc_masked, gu_misc_masked);
3782 intel_uncore_write(&dev_priv->uncore, GEN11_DISPLAY_INT_CTL, GEN11_DISPLAY_IRQ_ENABLE);
3784 if (HAS_MASTER_UNIT_IRQ(dev_priv)) {
3785 dg1_master_intr_enable(uncore->regs);
3786 intel_uncore_posting_read(&dev_priv->uncore, DG1_MSTR_UNIT_INTR);
3788 gen11_master_intr_enable(uncore->regs);
3789 intel_uncore_posting_read(&dev_priv->uncore, GEN11_GFX_MSTR_IRQ);
3793 static void cherryview_irq_postinstall(struct drm_i915_private *dev_priv)
3795 gen8_gt_irq_postinstall(&dev_priv->gt);
3797 spin_lock_irq(&dev_priv->irq_lock);
3798 if (dev_priv->display_irqs_enabled)
3799 vlv_display_irq_postinstall(dev_priv);
3800 spin_unlock_irq(&dev_priv->irq_lock);
3802 intel_uncore_write(&dev_priv->uncore, GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
3803 intel_uncore_posting_read(&dev_priv->uncore, GEN8_MASTER_IRQ);
3806 static void i8xx_irq_reset(struct drm_i915_private *dev_priv)
3808 struct intel_uncore *uncore = &dev_priv->uncore;
3810 i9xx_pipestat_irq_reset(dev_priv);
3812 GEN2_IRQ_RESET(uncore);
3813 dev_priv->irq_mask = ~0u;
3816 static void i8xx_irq_postinstall(struct drm_i915_private *dev_priv)
3818 struct intel_uncore *uncore = &dev_priv->uncore;
3821 intel_uncore_write16(uncore,
3823 ~(I915_ERROR_PAGE_TABLE |
3824 I915_ERROR_MEMORY_REFRESH));
3826 /* Unmask the interrupts that we always want on. */
3827 dev_priv->irq_mask =
3828 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3829 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3830 I915_MASTER_ERROR_INTERRUPT);
3833 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3834 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3835 I915_MASTER_ERROR_INTERRUPT |
3836 I915_USER_INTERRUPT;
3838 GEN2_IRQ_INIT(uncore, dev_priv->irq_mask, enable_mask);
3840 /* Interrupt setup is already guaranteed to be single-threaded, this is
3841 * just to make the assert_spin_locked check happy. */
3842 spin_lock_irq(&dev_priv->irq_lock);
3843 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3844 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
3845 spin_unlock_irq(&dev_priv->irq_lock);
3848 static void i8xx_error_irq_ack(struct drm_i915_private *i915,
3849 u16 *eir, u16 *eir_stuck)
3851 struct intel_uncore *uncore = &i915->uncore;
3854 *eir = intel_uncore_read16(uncore, EIR);
3857 intel_uncore_write16(uncore, EIR, *eir);
3859 *eir_stuck = intel_uncore_read16(uncore, EIR);
3860 if (*eir_stuck == 0)
3864 * Toggle all EMR bits to make sure we get an edge
3865 * in the ISR master error bit if we don't clear
3866 * all the EIR bits. Otherwise the edge triggered
3867 * IIR on i965/g4x wouldn't notice that an interrupt
3868 * is still pending. Also some EIR bits can't be
3869 * cleared except by handling the underlying error
3870 * (or by a GPU reset) so we mask any bit that
3873 emr = intel_uncore_read16(uncore, EMR);
3874 intel_uncore_write16(uncore, EMR, 0xffff);
3875 intel_uncore_write16(uncore, EMR, emr | *eir_stuck);
3878 static void i8xx_error_irq_handler(struct drm_i915_private *dev_priv,
3879 u16 eir, u16 eir_stuck)
3881 DRM_DEBUG("Master Error: EIR 0x%04x\n", eir);
3884 drm_dbg(&dev_priv->drm, "EIR stuck: 0x%04x, masked\n",
3888 static void i9xx_error_irq_ack(struct drm_i915_private *dev_priv,
3889 u32 *eir, u32 *eir_stuck)
3893 *eir = intel_uncore_read(&dev_priv->uncore, EIR);
3895 intel_uncore_write(&dev_priv->uncore, EIR, *eir);
3897 *eir_stuck = intel_uncore_read(&dev_priv->uncore, EIR);
3898 if (*eir_stuck == 0)
3902 * Toggle all EMR bits to make sure we get an edge
3903 * in the ISR master error bit if we don't clear
3904 * all the EIR bits. Otherwise the edge triggered
3905 * IIR on i965/g4x wouldn't notice that an interrupt
3906 * is still pending. Also some EIR bits can't be
3907 * cleared except by handling the underlying error
3908 * (or by a GPU reset) so we mask any bit that
3911 emr = intel_uncore_read(&dev_priv->uncore, EMR);
3912 intel_uncore_write(&dev_priv->uncore, EMR, 0xffffffff);
3913 intel_uncore_write(&dev_priv->uncore, EMR, emr | *eir_stuck);
3916 static void i9xx_error_irq_handler(struct drm_i915_private *dev_priv,
3917 u32 eir, u32 eir_stuck)
3919 DRM_DEBUG("Master Error, EIR 0x%08x\n", eir);
3922 drm_dbg(&dev_priv->drm, "EIR stuck: 0x%08x, masked\n",
3926 static irqreturn_t i8xx_irq_handler(int irq, void *arg)
3928 struct drm_i915_private *dev_priv = arg;
3929 irqreturn_t ret = IRQ_NONE;
3931 if (!intel_irqs_enabled(dev_priv))
3934 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
3935 disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
3938 u32 pipe_stats[I915_MAX_PIPES] = {};
3939 u16 eir = 0, eir_stuck = 0;
3942 iir = intel_uncore_read16(&dev_priv->uncore, GEN2_IIR);
3948 /* Call regardless, as some status bits might not be
3949 * signalled in iir */
3950 i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats);
3952 if (iir & I915_MASTER_ERROR_INTERRUPT)
3953 i8xx_error_irq_ack(dev_priv, &eir, &eir_stuck);
3955 intel_uncore_write16(&dev_priv->uncore, GEN2_IIR, iir);
3957 if (iir & I915_USER_INTERRUPT)
3958 intel_engine_signal_breadcrumbs(dev_priv->gt.engine[RCS0]);
3960 if (iir & I915_MASTER_ERROR_INTERRUPT)
3961 i8xx_error_irq_handler(dev_priv, eir, eir_stuck);
3963 i8xx_pipestat_irq_handler(dev_priv, iir, pipe_stats);
3966 pmu_irq_stats(dev_priv, ret);
3968 enable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
3973 static void i915_irq_reset(struct drm_i915_private *dev_priv)
3975 struct intel_uncore *uncore = &dev_priv->uncore;
3977 if (I915_HAS_HOTPLUG(dev_priv)) {
3978 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
3979 intel_uncore_write(&dev_priv->uncore, PORT_HOTPLUG_STAT, intel_uncore_read(&dev_priv->uncore, PORT_HOTPLUG_STAT));
3982 i9xx_pipestat_irq_reset(dev_priv);
3984 GEN3_IRQ_RESET(uncore, GEN2_);
3985 dev_priv->irq_mask = ~0u;
3988 static void i915_irq_postinstall(struct drm_i915_private *dev_priv)
3990 struct intel_uncore *uncore = &dev_priv->uncore;
3993 intel_uncore_write(&dev_priv->uncore, EMR, ~(I915_ERROR_PAGE_TABLE |
3994 I915_ERROR_MEMORY_REFRESH));
3996 /* Unmask the interrupts that we always want on. */
3997 dev_priv->irq_mask =
3998 ~(I915_ASLE_INTERRUPT |
3999 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4000 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4001 I915_MASTER_ERROR_INTERRUPT);
4004 I915_ASLE_INTERRUPT |
4005 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4006 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4007 I915_MASTER_ERROR_INTERRUPT |
4008 I915_USER_INTERRUPT;
4010 if (I915_HAS_HOTPLUG(dev_priv)) {
4011 /* Enable in IER... */
4012 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4013 /* and unmask in IMR */
4014 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4017 GEN3_IRQ_INIT(uncore, GEN2_, dev_priv->irq_mask, enable_mask);
4019 /* Interrupt setup is already guaranteed to be single-threaded, this is
4020 * just to make the assert_spin_locked check happy. */
4021 spin_lock_irq(&dev_priv->irq_lock);
4022 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4023 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
4024 spin_unlock_irq(&dev_priv->irq_lock);
4026 i915_enable_asle_pipestat(dev_priv);
4029 static irqreturn_t i915_irq_handler(int irq, void *arg)
4031 struct drm_i915_private *dev_priv = arg;
4032 irqreturn_t ret = IRQ_NONE;
4034 if (!intel_irqs_enabled(dev_priv))
4037 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4038 disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
4041 u32 pipe_stats[I915_MAX_PIPES] = {};
4042 u32 eir = 0, eir_stuck = 0;
4043 u32 hotplug_status = 0;
4046 iir = intel_uncore_read(&dev_priv->uncore, GEN2_IIR);
4052 if (I915_HAS_HOTPLUG(dev_priv) &&
4053 iir & I915_DISPLAY_PORT_INTERRUPT)
4054 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4056 /* Call regardless, as some status bits might not be
4057 * signalled in iir */
4058 i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats);
4060 if (iir & I915_MASTER_ERROR_INTERRUPT)
4061 i9xx_error_irq_ack(dev_priv, &eir, &eir_stuck);
4063 intel_uncore_write(&dev_priv->uncore, GEN2_IIR, iir);
4065 if (iir & I915_USER_INTERRUPT)
4066 intel_engine_signal_breadcrumbs(dev_priv->gt.engine[RCS0]);
4068 if (iir & I915_MASTER_ERROR_INTERRUPT)
4069 i9xx_error_irq_handler(dev_priv, eir, eir_stuck);
4072 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
4074 i915_pipestat_irq_handler(dev_priv, iir, pipe_stats);
4077 pmu_irq_stats(dev_priv, ret);
4079 enable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
4084 static void i965_irq_reset(struct drm_i915_private *dev_priv)
4086 struct intel_uncore *uncore = &dev_priv->uncore;
4088 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
4089 intel_uncore_write(&dev_priv->uncore, PORT_HOTPLUG_STAT, intel_uncore_read(&dev_priv->uncore, PORT_HOTPLUG_STAT));
4091 i9xx_pipestat_irq_reset(dev_priv);
4093 GEN3_IRQ_RESET(uncore, GEN2_);
4094 dev_priv->irq_mask = ~0u;
4097 static void i965_irq_postinstall(struct drm_i915_private *dev_priv)
4099 struct intel_uncore *uncore = &dev_priv->uncore;
4104 * Enable some error detection, note the instruction error mask
4105 * bit is reserved, so we leave it masked.
4107 if (IS_G4X(dev_priv)) {
4108 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4109 GM45_ERROR_MEM_PRIV |
4110 GM45_ERROR_CP_PRIV |
4111 I915_ERROR_MEMORY_REFRESH);
4113 error_mask = ~(I915_ERROR_PAGE_TABLE |
4114 I915_ERROR_MEMORY_REFRESH);
4116 intel_uncore_write(&dev_priv->uncore, EMR, error_mask);
4118 /* Unmask the interrupts that we always want on. */
4119 dev_priv->irq_mask =
4120 ~(I915_ASLE_INTERRUPT |
4121 I915_DISPLAY_PORT_INTERRUPT |
4122 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4123 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4124 I915_MASTER_ERROR_INTERRUPT);
4127 I915_ASLE_INTERRUPT |
4128 I915_DISPLAY_PORT_INTERRUPT |
4129 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4130 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4131 I915_MASTER_ERROR_INTERRUPT |
4132 I915_USER_INTERRUPT;
4134 if (IS_G4X(dev_priv))
4135 enable_mask |= I915_BSD_USER_INTERRUPT;
4137 GEN3_IRQ_INIT(uncore, GEN2_, dev_priv->irq_mask, enable_mask);
4139 /* Interrupt setup is already guaranteed to be single-threaded, this is
4140 * just to make the assert_spin_locked check happy. */
4141 spin_lock_irq(&dev_priv->irq_lock);
4142 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4143 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4144 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
4145 spin_unlock_irq(&dev_priv->irq_lock);
4147 i915_enable_asle_pipestat(dev_priv);
4150 static void i915_hpd_irq_setup(struct drm_i915_private *dev_priv)
4154 lockdep_assert_held(&dev_priv->irq_lock);
4156 /* Note HDMI and DP share hotplug bits */
4157 /* enable bits are the same for all generations */
4158 hotplug_en = intel_hpd_enabled_irqs(dev_priv, hpd_mask_i915);
4159 /* Programming the CRT detection parameters tends
4160 to generate a spurious hotplug event about three
4161 seconds later. So just do it once.
4163 if (IS_G4X(dev_priv))
4164 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
4165 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
4167 /* Ignore TV since it's buggy */
4168 i915_hotplug_interrupt_update_locked(dev_priv,
4169 HOTPLUG_INT_EN_MASK |
4170 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4171 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4175 static irqreturn_t i965_irq_handler(int irq, void *arg)
4177 struct drm_i915_private *dev_priv = arg;
4178 irqreturn_t ret = IRQ_NONE;
4180 if (!intel_irqs_enabled(dev_priv))
4183 /* IRQs are synced during runtime_suspend, we don't require a wakeref */
4184 disable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
4187 u32 pipe_stats[I915_MAX_PIPES] = {};
4188 u32 eir = 0, eir_stuck = 0;
4189 u32 hotplug_status = 0;
4192 iir = intel_uncore_read(&dev_priv->uncore, GEN2_IIR);
4198 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4199 hotplug_status = i9xx_hpd_irq_ack(dev_priv);
4201 /* Call regardless, as some status bits might not be
4202 * signalled in iir */
4203 i9xx_pipestat_irq_ack(dev_priv, iir, pipe_stats);
4205 if (iir & I915_MASTER_ERROR_INTERRUPT)
4206 i9xx_error_irq_ack(dev_priv, &eir, &eir_stuck);
4208 intel_uncore_write(&dev_priv->uncore, GEN2_IIR, iir);
4210 if (iir & I915_USER_INTERRUPT)
4211 intel_engine_signal_breadcrumbs(dev_priv->gt.engine[RCS0]);
4213 if (iir & I915_BSD_USER_INTERRUPT)
4214 intel_engine_signal_breadcrumbs(dev_priv->gt.engine[VCS0]);
4216 if (iir & I915_MASTER_ERROR_INTERRUPT)
4217 i9xx_error_irq_handler(dev_priv, eir, eir_stuck);
4220 i9xx_hpd_irq_handler(dev_priv, hotplug_status);
4222 i965_pipestat_irq_handler(dev_priv, iir, pipe_stats);
4225 pmu_irq_stats(dev_priv, IRQ_HANDLED);
4227 enable_rpm_wakeref_asserts(&dev_priv->runtime_pm);
4233 * intel_irq_init - initializes irq support
4234 * @dev_priv: i915 device instance
4236 * This function initializes all the irq support including work items, timers
4237 * and all the vtables. It does not setup the interrupt itself though.
4239 void intel_irq_init(struct drm_i915_private *dev_priv)
4241 struct drm_device *dev = &dev_priv->drm;
4244 INIT_WORK(&dev_priv->l3_parity.error_work, ivb_parity_work);
4245 for (i = 0; i < MAX_L3_SLICES; ++i)
4246 dev_priv->l3_parity.remap_info[i] = NULL;
4248 /* pre-gen11 the guc irqs bits are in the upper 16 bits of the pm reg */
4249 if (HAS_GT_UC(dev_priv) && INTEL_GEN(dev_priv) < 11)
4250 dev_priv->gt.pm_guc_events = GUC_INTR_GUC2HOST << 16;
4252 if (!HAS_DISPLAY(dev_priv))
4255 intel_hpd_init_pins(dev_priv);
4257 intel_hpd_init_work(dev_priv);
4259 dev->vblank_disable_immediate = true;
4261 /* Most platforms treat the display irq block as an always-on
4262 * power domain. vlv/chv can disable it at runtime and need
4263 * special care to avoid writing any of the display block registers
4264 * outside of the power domain. We defer setting up the display irqs
4265 * in this case to the runtime pm.
4267 dev_priv->display_irqs_enabled = true;
4268 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
4269 dev_priv->display_irqs_enabled = false;
4271 dev_priv->hotplug.hpd_storm_threshold = HPD_STORM_DEFAULT_THRESHOLD;
4272 /* If we have MST support, we want to avoid doing short HPD IRQ storm
4273 * detection, as short HPD storms will occur as a natural part of
4274 * sideband messaging with MST.
4275 * On older platforms however, IRQ storms can occur with both long and
4276 * short pulses, as seen on some G4x systems.
4278 dev_priv->hotplug.hpd_short_storm_enabled = !HAS_DP_MST(dev_priv);
4280 if (HAS_GMCH(dev_priv)) {
4281 if (I915_HAS_HOTPLUG(dev_priv))
4282 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
4284 if (HAS_PCH_DG1(dev_priv))
4285 dev_priv->display.hpd_irq_setup = dg1_hpd_irq_setup;
4286 else if (INTEL_GEN(dev_priv) >= 11)
4287 dev_priv->display.hpd_irq_setup = gen11_hpd_irq_setup;
4288 else if (IS_GEN9_LP(dev_priv))
4289 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
4290 else if (INTEL_PCH_TYPE(dev_priv) >= PCH_SPT)
4291 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4293 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
4298 * intel_irq_fini - deinitializes IRQ support
4299 * @i915: i915 device instance
4301 * This function deinitializes all the IRQ support.
4303 void intel_irq_fini(struct drm_i915_private *i915)
4307 for (i = 0; i < MAX_L3_SLICES; ++i)
4308 kfree(i915->l3_parity.remap_info[i]);
4311 static irq_handler_t intel_irq_handler(struct drm_i915_private *dev_priv)
4313 if (HAS_GMCH(dev_priv)) {
4314 if (IS_CHERRYVIEW(dev_priv))
4315 return cherryview_irq_handler;
4316 else if (IS_VALLEYVIEW(dev_priv))
4317 return valleyview_irq_handler;
4318 else if (IS_GEN(dev_priv, 4))
4319 return i965_irq_handler;
4320 else if (IS_GEN(dev_priv, 3))
4321 return i915_irq_handler;
4323 return i8xx_irq_handler;
4325 if (HAS_MASTER_UNIT_IRQ(dev_priv))
4326 return dg1_irq_handler;
4327 if (INTEL_GEN(dev_priv) >= 11)
4328 return gen11_irq_handler;
4329 else if (INTEL_GEN(dev_priv) >= 8)
4330 return gen8_irq_handler;
4332 return ilk_irq_handler;
4336 static void intel_irq_reset(struct drm_i915_private *dev_priv)
4338 if (HAS_GMCH(dev_priv)) {
4339 if (IS_CHERRYVIEW(dev_priv))
4340 cherryview_irq_reset(dev_priv);
4341 else if (IS_VALLEYVIEW(dev_priv))
4342 valleyview_irq_reset(dev_priv);
4343 else if (IS_GEN(dev_priv, 4))
4344 i965_irq_reset(dev_priv);
4345 else if (IS_GEN(dev_priv, 3))
4346 i915_irq_reset(dev_priv);
4348 i8xx_irq_reset(dev_priv);
4350 if (INTEL_GEN(dev_priv) >= 11)
4351 gen11_irq_reset(dev_priv);
4352 else if (INTEL_GEN(dev_priv) >= 8)
4353 gen8_irq_reset(dev_priv);
4355 ilk_irq_reset(dev_priv);
4359 static void intel_irq_postinstall(struct drm_i915_private *dev_priv)
4361 if (HAS_GMCH(dev_priv)) {
4362 if (IS_CHERRYVIEW(dev_priv))
4363 cherryview_irq_postinstall(dev_priv);
4364 else if (IS_VALLEYVIEW(dev_priv))
4365 valleyview_irq_postinstall(dev_priv);
4366 else if (IS_GEN(dev_priv, 4))
4367 i965_irq_postinstall(dev_priv);
4368 else if (IS_GEN(dev_priv, 3))
4369 i915_irq_postinstall(dev_priv);
4371 i8xx_irq_postinstall(dev_priv);
4373 if (INTEL_GEN(dev_priv) >= 11)
4374 gen11_irq_postinstall(dev_priv);
4375 else if (INTEL_GEN(dev_priv) >= 8)
4376 gen8_irq_postinstall(dev_priv);
4378 ilk_irq_postinstall(dev_priv);
4383 * intel_irq_install - enables the hardware interrupt
4384 * @dev_priv: i915 device instance
4386 * This function enables the hardware interrupt handling, but leaves the hotplug
4387 * handling still disabled. It is called after intel_irq_init().
4389 * In the driver load and resume code we need working interrupts in a few places
4390 * but don't want to deal with the hassle of concurrent probe and hotplug
4391 * workers. Hence the split into this two-stage approach.
4393 int intel_irq_install(struct drm_i915_private *dev_priv)
4395 int irq = dev_priv->drm.pdev->irq;
4399 * We enable some interrupt sources in our postinstall hooks, so mark
4400 * interrupts as enabled _before_ actually enabling them to avoid
4401 * special cases in our ordering checks.
4403 dev_priv->runtime_pm.irqs_enabled = true;
4405 dev_priv->drm.irq_enabled = true;
4407 intel_irq_reset(dev_priv);
4409 ret = request_irq(irq, intel_irq_handler(dev_priv),
4410 IRQF_SHARED, DRIVER_NAME, dev_priv);
4412 dev_priv->drm.irq_enabled = false;
4416 intel_irq_postinstall(dev_priv);
4422 * intel_irq_uninstall - finilizes all irq handling
4423 * @dev_priv: i915 device instance
4425 * This stops interrupt and hotplug handling and unregisters and frees all
4426 * resources acquired in the init functions.
4428 void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4430 int irq = dev_priv->drm.pdev->irq;
4433 * FIXME we can get called twice during driver probe
4434 * error handling as well as during driver remove due to
4435 * intel_modeset_driver_remove() calling us out of sequence.
4436 * Would be nice if it didn't do that...
4438 if (!dev_priv->drm.irq_enabled)
4441 dev_priv->drm.irq_enabled = false;
4443 intel_irq_reset(dev_priv);
4445 free_irq(irq, dev_priv);
4447 intel_hpd_cancel_work(dev_priv);
4448 dev_priv->runtime_pm.irqs_enabled = false;
4452 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4453 * @dev_priv: i915 device instance
4455 * This function is used to disable interrupts at runtime, both in the runtime
4456 * pm and the system suspend/resume code.
4458 void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
4460 intel_irq_reset(dev_priv);
4461 dev_priv->runtime_pm.irqs_enabled = false;
4462 intel_synchronize_irq(dev_priv);
4466 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4467 * @dev_priv: i915 device instance
4469 * This function is used to enable interrupts at runtime, both in the runtime
4470 * pm and the system suspend/resume code.
4472 void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
4474 dev_priv->runtime_pm.irqs_enabled = true;
4475 intel_irq_reset(dev_priv);
4476 intel_irq_postinstall(dev_priv);
4479 bool intel_irqs_enabled(struct drm_i915_private *dev_priv)
4482 * We only use drm_irq_uninstall() at unload and VT switch, so
4483 * this is the only thing we need to check.
4485 return dev_priv->runtime_pm.irqs_enabled;
4488 void intel_synchronize_irq(struct drm_i915_private *i915)
4490 synchronize_irq(i915->drm.pdev->irq);