drm/i915: Fix kerneldoc indent fails
[deliverable/linux.git] / drivers / gpu / drm / i915 / i915_irq.c
CommitLineData
0d6aa60b 1/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
1da177e4 2 */
0d6aa60b 3/*
1da177e4
LT
4 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
bc54fd1a
DA
6 *
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:
14 *
15 * The above copyright notice and this permission notice (including the
16 * next paragraph) shall be included in all copies or substantial portions
17 * of the Software.
18 *
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.
26 *
0d6aa60b 27 */
1da177e4 28
a70491cc
JP
29#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
63eeaf38 31#include <linux/sysrq.h>
5a0e3ad6 32#include <linux/slab.h>
b2c88f5b 33#include <linux/circ_buf.h>
760285e7
DH
34#include <drm/drmP.h>
35#include <drm/i915_drm.h>
1da177e4 36#include "i915_drv.h"
1c5d22f7 37#include "i915_trace.h"
79e53945 38#include "intel_drv.h"
1da177e4 39
fca52a55
DV
40/**
41 * DOC: interrupt handling
42 *
43 * These functions provide the basic support for enabling and disabling the
44 * interrupt handling support. There's a lot more functionality in i915_irq.c
45 * and related files, but that will be described in separate chapters.
46 */
47
e4ce95aa
VS
48static const u32 hpd_ilk[HPD_NUM_PINS] = {
49 [HPD_PORT_A] = DE_DP_A_HOTPLUG,
50};
51
23bb4cb5
VS
52static const u32 hpd_ivb[HPD_NUM_PINS] = {
53 [HPD_PORT_A] = DE_DP_A_HOTPLUG_IVB,
54};
55
3a3b3c7d
VS
56static const u32 hpd_bdw[HPD_NUM_PINS] = {
57 [HPD_PORT_A] = GEN8_PORT_DP_A_HOTPLUG,
58};
59
7c7e10db 60static const u32 hpd_ibx[HPD_NUM_PINS] = {
e5868a31
EE
61 [HPD_CRT] = SDE_CRT_HOTPLUG,
62 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
63 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
64 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
65 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
66};
67
7c7e10db 68static const u32 hpd_cpt[HPD_NUM_PINS] = {
e5868a31 69 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
73c352a2 70 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
e5868a31
EE
71 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
72 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
73 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
74};
75
26951caf 76static const u32 hpd_spt[HPD_NUM_PINS] = {
74c0b395 77 [HPD_PORT_A] = SDE_PORTA_HOTPLUG_SPT,
26951caf
XZ
78 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
79 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
80 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT,
81 [HPD_PORT_E] = SDE_PORTE_HOTPLUG_SPT
82};
83
7c7e10db 84static const u32 hpd_mask_i915[HPD_NUM_PINS] = {
e5868a31
EE
85 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
86 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
87 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
88 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
89 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
90 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
91};
92
7c7e10db 93static const u32 hpd_status_g4x[HPD_NUM_PINS] = {
e5868a31
EE
94 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
95 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
96 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
97 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
98 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
99 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
100};
101
4bca26d0 102static const u32 hpd_status_i915[HPD_NUM_PINS] = {
e5868a31
EE
103 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
104 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
105 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
106 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
107 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
108 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
109};
110
e0a20ad7
SS
111/* BXT hpd list */
112static const u32 hpd_bxt[HPD_NUM_PINS] = {
7f3561be 113 [HPD_PORT_A] = BXT_DE_PORT_HP_DDIA,
e0a20ad7
SS
114 [HPD_PORT_B] = BXT_DE_PORT_HP_DDIB,
115 [HPD_PORT_C] = BXT_DE_PORT_HP_DDIC
116};
117
5c502442 118/* IIR can theoretically queue up two events. Be paranoid. */
f86f3fb0 119#define GEN8_IRQ_RESET_NDX(type, which) do { \
5c502442
PZ
120 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
121 POSTING_READ(GEN8_##type##_IMR(which)); \
122 I915_WRITE(GEN8_##type##_IER(which), 0); \
123 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
124 POSTING_READ(GEN8_##type##_IIR(which)); \
125 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
126 POSTING_READ(GEN8_##type##_IIR(which)); \
127} while (0)
128
f86f3fb0 129#define GEN5_IRQ_RESET(type) do { \
a9d356a6 130 I915_WRITE(type##IMR, 0xffffffff); \
5c502442 131 POSTING_READ(type##IMR); \
a9d356a6 132 I915_WRITE(type##IER, 0); \
5c502442
PZ
133 I915_WRITE(type##IIR, 0xffffffff); \
134 POSTING_READ(type##IIR); \
135 I915_WRITE(type##IIR, 0xffffffff); \
136 POSTING_READ(type##IIR); \
a9d356a6
PZ
137} while (0)
138
337ba017
PZ
139/*
140 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
141 */
f0f59a00
VS
142static void gen5_assert_iir_is_zero(struct drm_i915_private *dev_priv,
143 i915_reg_t reg)
b51a2842
VS
144{
145 u32 val = I915_READ(reg);
146
147 if (val == 0)
148 return;
149
150 WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n",
f0f59a00 151 i915_mmio_reg_offset(reg), val);
b51a2842
VS
152 I915_WRITE(reg, 0xffffffff);
153 POSTING_READ(reg);
154 I915_WRITE(reg, 0xffffffff);
155 POSTING_READ(reg);
156}
337ba017 157
35079899 158#define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \
b51a2842 159 gen5_assert_iir_is_zero(dev_priv, GEN8_##type##_IIR(which)); \
35079899 160 I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \
7d1bd539
VS
161 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
162 POSTING_READ(GEN8_##type##_IMR(which)); \
35079899
PZ
163} while (0)
164
165#define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \
b51a2842 166 gen5_assert_iir_is_zero(dev_priv, type##IIR); \
35079899 167 I915_WRITE(type##IER, (ier_val)); \
7d1bd539
VS
168 I915_WRITE(type##IMR, (imr_val)); \
169 POSTING_READ(type##IMR); \
35079899
PZ
170} while (0)
171
c9a9a268
ID
172static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir);
173
0706f17c
EE
174/* For display hotplug interrupt */
175static inline void
176i915_hotplug_interrupt_update_locked(struct drm_i915_private *dev_priv,
177 uint32_t mask,
178 uint32_t bits)
179{
180 uint32_t val;
181
182 assert_spin_locked(&dev_priv->irq_lock);
183 WARN_ON(bits & ~mask);
184
185 val = I915_READ(PORT_HOTPLUG_EN);
186 val &= ~mask;
187 val |= bits;
188 I915_WRITE(PORT_HOTPLUG_EN, val);
189}
190
191/**
192 * i915_hotplug_interrupt_update - update hotplug interrupt enable
193 * @dev_priv: driver private
194 * @mask: bits to update
195 * @bits: bits to enable
196 * NOTE: the HPD enable bits are modified both inside and outside
197 * of an interrupt context. To avoid that read-modify-write cycles
198 * interfer, these bits are protected by a spinlock. Since this
199 * function is usually not called from a context where the lock is
200 * held already, this function acquires the lock itself. A non-locking
201 * version is also available.
202 */
203void i915_hotplug_interrupt_update(struct drm_i915_private *dev_priv,
204 uint32_t mask,
205 uint32_t bits)
206{
207 spin_lock_irq(&dev_priv->irq_lock);
208 i915_hotplug_interrupt_update_locked(dev_priv, mask, bits);
209 spin_unlock_irq(&dev_priv->irq_lock);
210}
211
d9dc34f1
VS
212/**
213 * ilk_update_display_irq - update DEIMR
214 * @dev_priv: driver private
215 * @interrupt_mask: mask of interrupt bits to update
216 * @enabled_irq_mask: mask of interrupt bits to enable
217 */
fbdedaea
VS
218void ilk_update_display_irq(struct drm_i915_private *dev_priv,
219 uint32_t interrupt_mask,
220 uint32_t enabled_irq_mask)
036a4a7d 221{
d9dc34f1
VS
222 uint32_t new_val;
223
4bc9d430
DV
224 assert_spin_locked(&dev_priv->irq_lock);
225
d9dc34f1
VS
226 WARN_ON(enabled_irq_mask & ~interrupt_mask);
227
9df7575f 228 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
c67a470b 229 return;
c67a470b 230
d9dc34f1
VS
231 new_val = dev_priv->irq_mask;
232 new_val &= ~interrupt_mask;
233 new_val |= (~enabled_irq_mask & interrupt_mask);
234
235 if (new_val != dev_priv->irq_mask) {
236 dev_priv->irq_mask = new_val;
1ec14ad3 237 I915_WRITE(DEIMR, dev_priv->irq_mask);
3143a2bf 238 POSTING_READ(DEIMR);
036a4a7d
ZW
239 }
240}
241
43eaea13
PZ
242/**
243 * ilk_update_gt_irq - update GTIMR
244 * @dev_priv: driver private
245 * @interrupt_mask: mask of interrupt bits to update
246 * @enabled_irq_mask: mask of interrupt bits to enable
247 */
248static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
249 uint32_t interrupt_mask,
250 uint32_t enabled_irq_mask)
251{
252 assert_spin_locked(&dev_priv->irq_lock);
253
15a17aae
DV
254 WARN_ON(enabled_irq_mask & ~interrupt_mask);
255
9df7575f 256 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
c67a470b 257 return;
c67a470b 258
43eaea13
PZ
259 dev_priv->gt_irq_mask &= ~interrupt_mask;
260 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
261 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
262 POSTING_READ(GTIMR);
263}
264
480c8033 265void gen5_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
43eaea13
PZ
266{
267 ilk_update_gt_irq(dev_priv, mask, mask);
268}
269
480c8033 270void gen5_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
43eaea13
PZ
271{
272 ilk_update_gt_irq(dev_priv, mask, 0);
273}
274
f0f59a00 275static i915_reg_t gen6_pm_iir(struct drm_i915_private *dev_priv)
b900b949
ID
276{
277 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IIR(2) : GEN6_PMIIR;
278}
279
f0f59a00 280static i915_reg_t gen6_pm_imr(struct drm_i915_private *dev_priv)
a72fbc3a
ID
281{
282 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IMR(2) : GEN6_PMIMR;
283}
284
f0f59a00 285static i915_reg_t gen6_pm_ier(struct drm_i915_private *dev_priv)
b900b949
ID
286{
287 return INTEL_INFO(dev_priv)->gen >= 8 ? GEN8_GT_IER(2) : GEN6_PMIER;
288}
289
edbfdb45 290/**
81fd874e
VS
291 * snb_update_pm_irq - update GEN6_PMIMR
292 * @dev_priv: driver private
293 * @interrupt_mask: mask of interrupt bits to update
294 * @enabled_irq_mask: mask of interrupt bits to enable
295 */
edbfdb45
PZ
296static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
297 uint32_t interrupt_mask,
298 uint32_t enabled_irq_mask)
299{
605cd25b 300 uint32_t new_val;
edbfdb45 301
15a17aae
DV
302 WARN_ON(enabled_irq_mask & ~interrupt_mask);
303
edbfdb45
PZ
304 assert_spin_locked(&dev_priv->irq_lock);
305
605cd25b 306 new_val = dev_priv->pm_irq_mask;
f52ecbcf
PZ
307 new_val &= ~interrupt_mask;
308 new_val |= (~enabled_irq_mask & interrupt_mask);
309
605cd25b
PZ
310 if (new_val != dev_priv->pm_irq_mask) {
311 dev_priv->pm_irq_mask = new_val;
a72fbc3a
ID
312 I915_WRITE(gen6_pm_imr(dev_priv), dev_priv->pm_irq_mask);
313 POSTING_READ(gen6_pm_imr(dev_priv));
f52ecbcf 314 }
edbfdb45
PZ
315}
316
480c8033 317void gen6_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
edbfdb45 318{
9939fba2
ID
319 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
320 return;
321
edbfdb45
PZ
322 snb_update_pm_irq(dev_priv, mask, mask);
323}
324
9939fba2
ID
325static void __gen6_disable_pm_irq(struct drm_i915_private *dev_priv,
326 uint32_t mask)
edbfdb45
PZ
327{
328 snb_update_pm_irq(dev_priv, mask, 0);
329}
330
9939fba2
ID
331void gen6_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
332{
333 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
334 return;
335
336 __gen6_disable_pm_irq(dev_priv, mask);
337}
338
3cc134e3
ID
339void gen6_reset_rps_interrupts(struct drm_device *dev)
340{
341 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 342 i915_reg_t reg = gen6_pm_iir(dev_priv);
3cc134e3
ID
343
344 spin_lock_irq(&dev_priv->irq_lock);
345 I915_WRITE(reg, dev_priv->pm_rps_events);
346 I915_WRITE(reg, dev_priv->pm_rps_events);
347 POSTING_READ(reg);
096fad9e 348 dev_priv->rps.pm_iir = 0;
3cc134e3
ID
349 spin_unlock_irq(&dev_priv->irq_lock);
350}
351
b900b949
ID
352void gen6_enable_rps_interrupts(struct drm_device *dev)
353{
354 struct drm_i915_private *dev_priv = dev->dev_private;
355
356 spin_lock_irq(&dev_priv->irq_lock);
78e68d36 357
b900b949 358 WARN_ON(dev_priv->rps.pm_iir);
3cc134e3 359 WARN_ON(I915_READ(gen6_pm_iir(dev_priv)) & dev_priv->pm_rps_events);
d4d70aa5 360 dev_priv->rps.interrupts_enabled = true;
78e68d36
ID
361 I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) |
362 dev_priv->pm_rps_events);
b900b949 363 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
78e68d36 364
b900b949
ID
365 spin_unlock_irq(&dev_priv->irq_lock);
366}
367
59d02a1f
ID
368u32 gen6_sanitize_rps_pm_mask(struct drm_i915_private *dev_priv, u32 mask)
369{
370 /*
f24eeb19 371 * SNB,IVB can while VLV,CHV may hard hang on looping batchbuffer
59d02a1f 372 * if GEN6_PM_UP_EI_EXPIRED is masked.
f24eeb19
ID
373 *
374 * TODO: verify if this can be reproduced on VLV,CHV.
59d02a1f
ID
375 */
376 if (INTEL_INFO(dev_priv)->gen <= 7 && !IS_HASWELL(dev_priv))
377 mask &= ~GEN6_PM_RP_UP_EI_EXPIRED;
378
379 if (INTEL_INFO(dev_priv)->gen >= 8)
380 mask &= ~GEN8_PMINTR_REDIRECT_TO_NON_DISP;
381
382 return mask;
383}
384
b900b949
ID
385void gen6_disable_rps_interrupts(struct drm_device *dev)
386{
387 struct drm_i915_private *dev_priv = dev->dev_private;
388
d4d70aa5
ID
389 spin_lock_irq(&dev_priv->irq_lock);
390 dev_priv->rps.interrupts_enabled = false;
391 spin_unlock_irq(&dev_priv->irq_lock);
392
393 cancel_work_sync(&dev_priv->rps.work);
394
9939fba2
ID
395 spin_lock_irq(&dev_priv->irq_lock);
396
59d02a1f 397 I915_WRITE(GEN6_PMINTRMSK, gen6_sanitize_rps_pm_mask(dev_priv, ~0));
9939fba2
ID
398
399 __gen6_disable_pm_irq(dev_priv, dev_priv->pm_rps_events);
b900b949
ID
400 I915_WRITE(gen6_pm_ier(dev_priv), I915_READ(gen6_pm_ier(dev_priv)) &
401 ~dev_priv->pm_rps_events);
58072ccb
ID
402
403 spin_unlock_irq(&dev_priv->irq_lock);
404
405 synchronize_irq(dev->irq);
b900b949
ID
406}
407
3a3b3c7d 408/**
81fd874e
VS
409 * bdw_update_port_irq - update DE port interrupt
410 * @dev_priv: driver private
411 * @interrupt_mask: mask of interrupt bits to update
412 * @enabled_irq_mask: mask of interrupt bits to enable
413 */
3a3b3c7d
VS
414static void bdw_update_port_irq(struct drm_i915_private *dev_priv,
415 uint32_t interrupt_mask,
416 uint32_t enabled_irq_mask)
417{
418 uint32_t new_val;
419 uint32_t old_val;
420
421 assert_spin_locked(&dev_priv->irq_lock);
422
423 WARN_ON(enabled_irq_mask & ~interrupt_mask);
424
425 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
426 return;
427
428 old_val = I915_READ(GEN8_DE_PORT_IMR);
429
430 new_val = old_val;
431 new_val &= ~interrupt_mask;
432 new_val |= (~enabled_irq_mask & interrupt_mask);
433
434 if (new_val != old_val) {
435 I915_WRITE(GEN8_DE_PORT_IMR, new_val);
436 POSTING_READ(GEN8_DE_PORT_IMR);
437 }
438}
439
013d3752
VS
440/**
441 * bdw_update_pipe_irq - update DE pipe interrupt
442 * @dev_priv: driver private
443 * @pipe: pipe whose interrupt to update
444 * @interrupt_mask: mask of interrupt bits to update
445 * @enabled_irq_mask: mask of interrupt bits to enable
446 */
447void bdw_update_pipe_irq(struct drm_i915_private *dev_priv,
448 enum pipe pipe,
449 uint32_t interrupt_mask,
450 uint32_t enabled_irq_mask)
451{
452 uint32_t new_val;
453
454 assert_spin_locked(&dev_priv->irq_lock);
455
456 WARN_ON(enabled_irq_mask & ~interrupt_mask);
457
458 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
459 return;
460
461 new_val = dev_priv->de_irq_mask[pipe];
462 new_val &= ~interrupt_mask;
463 new_val |= (~enabled_irq_mask & interrupt_mask);
464
465 if (new_val != dev_priv->de_irq_mask[pipe]) {
466 dev_priv->de_irq_mask[pipe] = new_val;
467 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
468 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
469 }
470}
471
fee884ed
DV
472/**
473 * ibx_display_interrupt_update - update SDEIMR
474 * @dev_priv: driver private
475 * @interrupt_mask: mask of interrupt bits to update
476 * @enabled_irq_mask: mask of interrupt bits to enable
477 */
47339cd9
DV
478void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
479 uint32_t interrupt_mask,
480 uint32_t enabled_irq_mask)
fee884ed
DV
481{
482 uint32_t sdeimr = I915_READ(SDEIMR);
483 sdeimr &= ~interrupt_mask;
484 sdeimr |= (~enabled_irq_mask & interrupt_mask);
485
15a17aae
DV
486 WARN_ON(enabled_irq_mask & ~interrupt_mask);
487
fee884ed
DV
488 assert_spin_locked(&dev_priv->irq_lock);
489
9df7575f 490 if (WARN_ON(!intel_irqs_enabled(dev_priv)))
c67a470b 491 return;
c67a470b 492
fee884ed
DV
493 I915_WRITE(SDEIMR, sdeimr);
494 POSTING_READ(SDEIMR);
495}
8664281b 496
b5ea642a 497static void
755e9019
ID
498__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
499 u32 enable_mask, u32 status_mask)
7c463586 500{
f0f59a00 501 i915_reg_t reg = PIPESTAT(pipe);
755e9019 502 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
7c463586 503
b79480ba 504 assert_spin_locked(&dev_priv->irq_lock);
d518ce50 505 WARN_ON(!intel_irqs_enabled(dev_priv));
b79480ba 506
04feced9
VS
507 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
508 status_mask & ~PIPESTAT_INT_STATUS_MASK,
509 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
510 pipe_name(pipe), enable_mask, status_mask))
755e9019
ID
511 return;
512
513 if ((pipestat & enable_mask) == enable_mask)
46c06a30
VS
514 return;
515
91d181dd
ID
516 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
517
46c06a30 518 /* Enable the interrupt, clear any pending status */
755e9019 519 pipestat |= enable_mask | status_mask;
46c06a30
VS
520 I915_WRITE(reg, pipestat);
521 POSTING_READ(reg);
7c463586
KP
522}
523
b5ea642a 524static void
755e9019
ID
525__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
526 u32 enable_mask, u32 status_mask)
7c463586 527{
f0f59a00 528 i915_reg_t reg = PIPESTAT(pipe);
755e9019 529 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
7c463586 530
b79480ba 531 assert_spin_locked(&dev_priv->irq_lock);
d518ce50 532 WARN_ON(!intel_irqs_enabled(dev_priv));
b79480ba 533
04feced9
VS
534 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
535 status_mask & ~PIPESTAT_INT_STATUS_MASK,
536 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
537 pipe_name(pipe), enable_mask, status_mask))
46c06a30
VS
538 return;
539
755e9019
ID
540 if ((pipestat & enable_mask) == 0)
541 return;
542
91d181dd
ID
543 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
544
755e9019 545 pipestat &= ~enable_mask;
46c06a30
VS
546 I915_WRITE(reg, pipestat);
547 POSTING_READ(reg);
7c463586
KP
548}
549
10c59c51
ID
550static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
551{
552 u32 enable_mask = status_mask << 16;
553
554 /*
724a6905
VS
555 * On pipe A we don't support the PSR interrupt yet,
556 * on pipe B and C the same bit MBZ.
10c59c51
ID
557 */
558 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
559 return 0;
724a6905
VS
560 /*
561 * On pipe B and C we don't support the PSR interrupt yet, on pipe
562 * A the same bit is for perf counters which we don't use either.
563 */
564 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
565 return 0;
10c59c51
ID
566
567 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
568 SPRITE0_FLIP_DONE_INT_EN_VLV |
569 SPRITE1_FLIP_DONE_INT_EN_VLV);
570 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
571 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
572 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
573 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
574
575 return enable_mask;
576}
577
755e9019
ID
578void
579i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
580 u32 status_mask)
581{
582 u32 enable_mask;
583
10c59c51
ID
584 if (IS_VALLEYVIEW(dev_priv->dev))
585 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
586 status_mask);
587 else
588 enable_mask = status_mask << 16;
755e9019
ID
589 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
590}
591
592void
593i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
594 u32 status_mask)
595{
596 u32 enable_mask;
597
10c59c51
ID
598 if (IS_VALLEYVIEW(dev_priv->dev))
599 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
600 status_mask);
601 else
602 enable_mask = status_mask << 16;
755e9019
ID
603 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
604}
605
01c66889 606/**
f49e38dd 607 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
468f9d29 608 * @dev: drm device
01c66889 609 */
f49e38dd 610static void i915_enable_asle_pipestat(struct drm_device *dev)
01c66889 611{
2d1013dd 612 struct drm_i915_private *dev_priv = dev->dev_private;
1ec14ad3 613
f49e38dd
JN
614 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
615 return;
616
13321786 617 spin_lock_irq(&dev_priv->irq_lock);
01c66889 618
755e9019 619 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
f898780b 620 if (INTEL_INFO(dev)->gen >= 4)
3b6c42e8 621 i915_enable_pipestat(dev_priv, PIPE_A,
755e9019 622 PIPE_LEGACY_BLC_EVENT_STATUS);
1ec14ad3 623
13321786 624 spin_unlock_irq(&dev_priv->irq_lock);
01c66889
ZY
625}
626
f75f3746
VS
627/*
628 * This timing diagram depicts the video signal in and
629 * around the vertical blanking period.
630 *
631 * Assumptions about the fictitious mode used in this example:
632 * vblank_start >= 3
633 * vsync_start = vblank_start + 1
634 * vsync_end = vblank_start + 2
635 * vtotal = vblank_start + 3
636 *
637 * start of vblank:
638 * latch double buffered registers
639 * increment frame counter (ctg+)
640 * generate start of vblank interrupt (gen4+)
641 * |
642 * | frame start:
643 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
644 * | may be shifted forward 1-3 extra lines via PIPECONF
645 * | |
646 * | | start of vsync:
647 * | | generate vsync interrupt
648 * | | |
649 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
650 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
651 * ----va---> <-----------------vb--------------------> <--------va-------------
652 * | | <----vs-----> |
653 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
654 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
655 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
656 * | | |
657 * last visible pixel first visible pixel
658 * | increment frame counter (gen3/4)
659 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
660 *
661 * x = horizontal active
662 * _ = horizontal blanking
663 * hs = horizontal sync
664 * va = vertical active
665 * vb = vertical blanking
666 * vs = vertical sync
667 * vbs = vblank_start (number)
668 *
669 * Summary:
670 * - most events happen at the start of horizontal sync
671 * - frame start happens at the start of horizontal blank, 1-4 lines
672 * (depending on PIPECONF settings) after the start of vblank
673 * - gen3/4 pixel and frame counter are synchronized with the start
674 * of horizontal active on the first line of vertical active
675 */
676
88e72717 677static u32 i8xx_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
4cdb83ec
VS
678{
679 /* Gen2 doesn't have a hardware frame counter */
680 return 0;
681}
682
42f52ef8
KP
683/* Called from drm generic code, passed a 'crtc', which
684 * we use as a pipe index
685 */
88e72717 686static u32 i915_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
0a3e67a4 687{
2d1013dd 688 struct drm_i915_private *dev_priv = dev->dev_private;
f0f59a00 689 i915_reg_t high_frame, low_frame;
0b2a8e09 690 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
f3a5c3f6
DV
691 struct intel_crtc *intel_crtc =
692 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
fc467a22 693 const struct drm_display_mode *mode = &intel_crtc->base.hwmode;
0a3e67a4 694
f3a5c3f6
DV
695 htotal = mode->crtc_htotal;
696 hsync_start = mode->crtc_hsync_start;
697 vbl_start = mode->crtc_vblank_start;
698 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
699 vbl_start = DIV_ROUND_UP(vbl_start, 2);
391f75e2 700
0b2a8e09
VS
701 /* Convert to pixel count */
702 vbl_start *= htotal;
703
704 /* Start of vblank event occurs at start of hsync */
705 vbl_start -= htotal - hsync_start;
706
9db4a9c7
JB
707 high_frame = PIPEFRAME(pipe);
708 low_frame = PIPEFRAMEPIXEL(pipe);
5eddb70b 709
0a3e67a4
JB
710 /*
711 * High & low register fields aren't synchronized, so make sure
712 * we get a low value that's stable across two reads of the high
713 * register.
714 */
715 do {
5eddb70b 716 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
391f75e2 717 low = I915_READ(low_frame);
5eddb70b 718 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
0a3e67a4
JB
719 } while (high1 != high2);
720
5eddb70b 721 high1 >>= PIPE_FRAME_HIGH_SHIFT;
391f75e2 722 pixel = low & PIPE_PIXEL_MASK;
5eddb70b 723 low >>= PIPE_FRAME_LOW_SHIFT;
391f75e2
VS
724
725 /*
726 * The frame counter increments at beginning of active.
727 * Cook up a vblank counter by also checking the pixel
728 * counter against vblank start.
729 */
edc08d0a 730 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
0a3e67a4
JB
731}
732
974e59ba 733static u32 g4x_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
9880b7a5 734{
2d1013dd 735 struct drm_i915_private *dev_priv = dev->dev_private;
9880b7a5 736
649636ef 737 return I915_READ(PIPE_FRMCOUNT_G4X(pipe));
9880b7a5
JB
738}
739
75aa3f63 740/* I915_READ_FW, only for fast reads of display block, no need for forcewake etc. */
a225f079
VS
741static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
742{
743 struct drm_device *dev = crtc->base.dev;
744 struct drm_i915_private *dev_priv = dev->dev_private;
fc467a22 745 const struct drm_display_mode *mode = &crtc->base.hwmode;
a225f079 746 enum pipe pipe = crtc->pipe;
80715b2f 747 int position, vtotal;
a225f079 748
80715b2f 749 vtotal = mode->crtc_vtotal;
a225f079
VS
750 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
751 vtotal /= 2;
752
753 if (IS_GEN2(dev))
75aa3f63 754 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
a225f079 755 else
75aa3f63 756 position = I915_READ_FW(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
a225f079 757
41b578fb
JB
758 /*
759 * On HSW, the DSL reg (0x70000) appears to return 0 if we
760 * read it just before the start of vblank. So try it again
761 * so we don't accidentally end up spanning a vblank frame
762 * increment, causing the pipe_update_end() code to squak at us.
763 *
764 * The nature of this problem means we can't simply check the ISR
765 * bit and return the vblank start value; nor can we use the scanline
766 * debug register in the transcoder as it appears to have the same
767 * problem. We may need to extend this to include other platforms,
768 * but so far testing only shows the problem on HSW.
769 */
b2916819 770 if (HAS_DDI(dev) && !position) {
41b578fb
JB
771 int i, temp;
772
773 for (i = 0; i < 100; i++) {
774 udelay(1);
775 temp = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) &
776 DSL_LINEMASK_GEN3;
777 if (temp != position) {
778 position = temp;
779 break;
780 }
781 }
782 }
783
a225f079 784 /*
80715b2f
VS
785 * See update_scanline_offset() for the details on the
786 * scanline_offset adjustment.
a225f079 787 */
80715b2f 788 return (position + crtc->scanline_offset) % vtotal;
a225f079
VS
789}
790
88e72717 791static int i915_get_crtc_scanoutpos(struct drm_device *dev, unsigned int pipe,
abca9e45 792 unsigned int flags, int *vpos, int *hpos,
3bb403bf
VS
793 ktime_t *stime, ktime_t *etime,
794 const struct drm_display_mode *mode)
0af7e4df 795{
c2baf4b7
VS
796 struct drm_i915_private *dev_priv = dev->dev_private;
797 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
798 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3aa18df8 799 int position;
78e8fc6b 800 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
0af7e4df
MK
801 bool in_vbl = true;
802 int ret = 0;
ad3543ed 803 unsigned long irqflags;
0af7e4df 804
fc467a22 805 if (WARN_ON(!mode->crtc_clock)) {
0af7e4df 806 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
9db4a9c7 807 "pipe %c\n", pipe_name(pipe));
0af7e4df
MK
808 return 0;
809 }
810
c2baf4b7 811 htotal = mode->crtc_htotal;
78e8fc6b 812 hsync_start = mode->crtc_hsync_start;
c2baf4b7
VS
813 vtotal = mode->crtc_vtotal;
814 vbl_start = mode->crtc_vblank_start;
815 vbl_end = mode->crtc_vblank_end;
0af7e4df 816
d31faf65
VS
817 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
818 vbl_start = DIV_ROUND_UP(vbl_start, 2);
819 vbl_end /= 2;
820 vtotal /= 2;
821 }
822
c2baf4b7
VS
823 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
824
ad3543ed
MK
825 /*
826 * Lock uncore.lock, as we will do multiple timing critical raw
827 * register reads, potentially with preemption disabled, so the
828 * following code must not block on uncore.lock.
829 */
830 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
78e8fc6b 831
ad3543ed
MK
832 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
833
834 /* Get optional system timestamp before query. */
835 if (stime)
836 *stime = ktime_get();
837
7c06b08a 838 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
0af7e4df
MK
839 /* No obvious pixelcount register. Only query vertical
840 * scanout position from Display scan line register.
841 */
a225f079 842 position = __intel_get_crtc_scanline(intel_crtc);
0af7e4df
MK
843 } else {
844 /* Have access to pixelcount since start of frame.
845 * We can split this into vertical and horizontal
846 * scanout position.
847 */
75aa3f63 848 position = (I915_READ_FW(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
0af7e4df 849
3aa18df8
VS
850 /* convert to pixel counts */
851 vbl_start *= htotal;
852 vbl_end *= htotal;
853 vtotal *= htotal;
78e8fc6b 854
7e78f1cb
VS
855 /*
856 * In interlaced modes, the pixel counter counts all pixels,
857 * so one field will have htotal more pixels. In order to avoid
858 * the reported position from jumping backwards when the pixel
859 * counter is beyond the length of the shorter field, just
860 * clamp the position the length of the shorter field. This
861 * matches how the scanline counter based position works since
862 * the scanline counter doesn't count the two half lines.
863 */
864 if (position >= vtotal)
865 position = vtotal - 1;
866
78e8fc6b
VS
867 /*
868 * Start of vblank interrupt is triggered at start of hsync,
869 * just prior to the first active line of vblank. However we
870 * consider lines to start at the leading edge of horizontal
871 * active. So, should we get here before we've crossed into
872 * the horizontal active of the first line in vblank, we would
873 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
874 * always add htotal-hsync_start to the current pixel position.
875 */
876 position = (position + htotal - hsync_start) % vtotal;
0af7e4df
MK
877 }
878
ad3543ed
MK
879 /* Get optional system timestamp after query. */
880 if (etime)
881 *etime = ktime_get();
882
883 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
884
885 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
886
3aa18df8
VS
887 in_vbl = position >= vbl_start && position < vbl_end;
888
889 /*
890 * While in vblank, position will be negative
891 * counting up towards 0 at vbl_end. And outside
892 * vblank, position will be positive counting
893 * up since vbl_end.
894 */
895 if (position >= vbl_start)
896 position -= vbl_end;
897 else
898 position += vtotal - vbl_end;
0af7e4df 899
7c06b08a 900 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
3aa18df8
VS
901 *vpos = position;
902 *hpos = 0;
903 } else {
904 *vpos = position / htotal;
905 *hpos = position - (*vpos * htotal);
906 }
0af7e4df 907
0af7e4df
MK
908 /* In vblank? */
909 if (in_vbl)
3d3cbd84 910 ret |= DRM_SCANOUTPOS_IN_VBLANK;
0af7e4df
MK
911
912 return ret;
913}
914
a225f079
VS
915int intel_get_crtc_scanline(struct intel_crtc *crtc)
916{
917 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
918 unsigned long irqflags;
919 int position;
920
921 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
922 position = __intel_get_crtc_scanline(crtc);
923 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
924
925 return position;
926}
927
88e72717 928static int i915_get_vblank_timestamp(struct drm_device *dev, unsigned int pipe,
0af7e4df
MK
929 int *max_error,
930 struct timeval *vblank_time,
931 unsigned flags)
932{
4041b853 933 struct drm_crtc *crtc;
0af7e4df 934
88e72717
TR
935 if (pipe >= INTEL_INFO(dev)->num_pipes) {
936 DRM_ERROR("Invalid crtc %u\n", pipe);
0af7e4df
MK
937 return -EINVAL;
938 }
939
940 /* Get drm_crtc to timestamp: */
4041b853
CW
941 crtc = intel_get_crtc_for_pipe(dev, pipe);
942 if (crtc == NULL) {
88e72717 943 DRM_ERROR("Invalid crtc %u\n", pipe);
4041b853
CW
944 return -EINVAL;
945 }
946
fc467a22 947 if (!crtc->hwmode.crtc_clock) {
88e72717 948 DRM_DEBUG_KMS("crtc %u is disabled\n", pipe);
4041b853
CW
949 return -EBUSY;
950 }
0af7e4df
MK
951
952 /* Helper routine in DRM core does all the work: */
4041b853
CW
953 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
954 vblank_time, flags,
fc467a22 955 &crtc->hwmode);
0af7e4df
MK
956}
957
d0ecd7e2 958static void ironlake_rps_change_irq_handler(struct drm_device *dev)
f97108d1 959{
2d1013dd 960 struct drm_i915_private *dev_priv = dev->dev_private;
b5b72e89 961 u32 busy_up, busy_down, max_avg, min_avg;
9270388e 962 u8 new_delay;
9270388e 963
d0ecd7e2 964 spin_lock(&mchdev_lock);
f97108d1 965
73edd18f
DV
966 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
967
20e4d407 968 new_delay = dev_priv->ips.cur_delay;
9270388e 969
7648fa99 970 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
b5b72e89
MG
971 busy_up = I915_READ(RCPREVBSYTUPAVG);
972 busy_down = I915_READ(RCPREVBSYTDNAVG);
f97108d1
JB
973 max_avg = I915_READ(RCBMAXAVG);
974 min_avg = I915_READ(RCBMINAVG);
975
976 /* Handle RCS change request from hw */
b5b72e89 977 if (busy_up > max_avg) {
20e4d407
DV
978 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
979 new_delay = dev_priv->ips.cur_delay - 1;
980 if (new_delay < dev_priv->ips.max_delay)
981 new_delay = dev_priv->ips.max_delay;
b5b72e89 982 } else if (busy_down < min_avg) {
20e4d407
DV
983 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
984 new_delay = dev_priv->ips.cur_delay + 1;
985 if (new_delay > dev_priv->ips.min_delay)
986 new_delay = dev_priv->ips.min_delay;
f97108d1
JB
987 }
988
7648fa99 989 if (ironlake_set_drps(dev, new_delay))
20e4d407 990 dev_priv->ips.cur_delay = new_delay;
f97108d1 991
d0ecd7e2 992 spin_unlock(&mchdev_lock);
9270388e 993
f97108d1
JB
994 return;
995}
996
74cdb337 997static void notify_ring(struct intel_engine_cs *ring)
549f7365 998{
93b0a4e0 999 if (!intel_ring_initialized(ring))
475553de
CW
1000 return;
1001
bcfcc8ba 1002 trace_i915_gem_request_notify(ring);
9862e600 1003
549f7365 1004 wake_up_all(&ring->irq_queue);
549f7365
CW
1005}
1006
43cf3bf0
CW
1007static void vlv_c0_read(struct drm_i915_private *dev_priv,
1008 struct intel_rps_ei *ei)
31685c25 1009{
43cf3bf0
CW
1010 ei->cz_clock = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1011 ei->render_c0 = I915_READ(VLV_RENDER_C0_COUNT);
1012 ei->media_c0 = I915_READ(VLV_MEDIA_C0_COUNT);
1013}
31685c25 1014
43cf3bf0
CW
1015static bool vlv_c0_above(struct drm_i915_private *dev_priv,
1016 const struct intel_rps_ei *old,
1017 const struct intel_rps_ei *now,
1018 int threshold)
1019{
1020 u64 time, c0;
7bad74d5 1021 unsigned int mul = 100;
31685c25 1022
43cf3bf0
CW
1023 if (old->cz_clock == 0)
1024 return false;
31685c25 1025
7bad74d5
VS
1026 if (I915_READ(VLV_COUNTER_CONTROL) & VLV_COUNT_RANGE_HIGH)
1027 mul <<= 8;
1028
43cf3bf0 1029 time = now->cz_clock - old->cz_clock;
7bad74d5 1030 time *= threshold * dev_priv->czclk_freq;
31685c25 1031
43cf3bf0
CW
1032 /* Workload can be split between render + media, e.g. SwapBuffers
1033 * being blitted in X after being rendered in mesa. To account for
1034 * this we need to combine both engines into our activity counter.
31685c25 1035 */
43cf3bf0
CW
1036 c0 = now->render_c0 - old->render_c0;
1037 c0 += now->media_c0 - old->media_c0;
7bad74d5 1038 c0 *= mul * VLV_CZ_CLOCK_TO_MILLI_SEC;
31685c25 1039
43cf3bf0 1040 return c0 >= time;
31685c25
D
1041}
1042
43cf3bf0 1043void gen6_rps_reset_ei(struct drm_i915_private *dev_priv)
31685c25 1044{
43cf3bf0
CW
1045 vlv_c0_read(dev_priv, &dev_priv->rps.down_ei);
1046 dev_priv->rps.up_ei = dev_priv->rps.down_ei;
43cf3bf0 1047}
31685c25 1048
43cf3bf0
CW
1049static u32 vlv_wa_c0_ei(struct drm_i915_private *dev_priv, u32 pm_iir)
1050{
1051 struct intel_rps_ei now;
1052 u32 events = 0;
31685c25 1053
6f4b12f8 1054 if ((pm_iir & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED)) == 0)
43cf3bf0 1055 return 0;
31685c25 1056
43cf3bf0
CW
1057 vlv_c0_read(dev_priv, &now);
1058 if (now.cz_clock == 0)
1059 return 0;
31685c25 1060
43cf3bf0
CW
1061 if (pm_iir & GEN6_PM_RP_DOWN_EI_EXPIRED) {
1062 if (!vlv_c0_above(dev_priv,
1063 &dev_priv->rps.down_ei, &now,
8fb55197 1064 dev_priv->rps.down_threshold))
43cf3bf0
CW
1065 events |= GEN6_PM_RP_DOWN_THRESHOLD;
1066 dev_priv->rps.down_ei = now;
1067 }
31685c25 1068
43cf3bf0
CW
1069 if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1070 if (vlv_c0_above(dev_priv,
1071 &dev_priv->rps.up_ei, &now,
8fb55197 1072 dev_priv->rps.up_threshold))
43cf3bf0
CW
1073 events |= GEN6_PM_RP_UP_THRESHOLD;
1074 dev_priv->rps.up_ei = now;
31685c25
D
1075 }
1076
43cf3bf0 1077 return events;
31685c25
D
1078}
1079
f5a4c67d
CW
1080static bool any_waiters(struct drm_i915_private *dev_priv)
1081{
1082 struct intel_engine_cs *ring;
1083 int i;
1084
1085 for_each_ring(ring, dev_priv, i)
1086 if (ring->irq_refcount)
1087 return true;
1088
1089 return false;
1090}
1091
4912d041 1092static void gen6_pm_rps_work(struct work_struct *work)
3b8d8d91 1093{
2d1013dd
JN
1094 struct drm_i915_private *dev_priv =
1095 container_of(work, struct drm_i915_private, rps.work);
8d3afd7d
CW
1096 bool client_boost;
1097 int new_delay, adj, min, max;
edbfdb45 1098 u32 pm_iir;
4912d041 1099
59cdb63d 1100 spin_lock_irq(&dev_priv->irq_lock);
d4d70aa5
ID
1101 /* Speed up work cancelation during disabling rps interrupts. */
1102 if (!dev_priv->rps.interrupts_enabled) {
1103 spin_unlock_irq(&dev_priv->irq_lock);
1104 return;
1105 }
c6a828d3
DV
1106 pm_iir = dev_priv->rps.pm_iir;
1107 dev_priv->rps.pm_iir = 0;
a72fbc3a
ID
1108 /* Make sure not to corrupt PMIMR state used by ringbuffer on GEN6 */
1109 gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
8d3afd7d
CW
1110 client_boost = dev_priv->rps.client_boost;
1111 dev_priv->rps.client_boost = false;
59cdb63d 1112 spin_unlock_irq(&dev_priv->irq_lock);
3b8d8d91 1113
60611c13 1114 /* Make sure we didn't queue anything we're not going to process. */
a6706b45 1115 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
60611c13 1116
8d3afd7d 1117 if ((pm_iir & dev_priv->pm_rps_events) == 0 && !client_boost)
3b8d8d91
JB
1118 return;
1119
4fc688ce 1120 mutex_lock(&dev_priv->rps.hw_lock);
7b9e0ae6 1121
43cf3bf0
CW
1122 pm_iir |= vlv_wa_c0_ei(dev_priv, pm_iir);
1123
dd75fdc8 1124 adj = dev_priv->rps.last_adj;
edcf284b 1125 new_delay = dev_priv->rps.cur_freq;
8d3afd7d
CW
1126 min = dev_priv->rps.min_freq_softlimit;
1127 max = dev_priv->rps.max_freq_softlimit;
1128
1129 if (client_boost) {
1130 new_delay = dev_priv->rps.max_freq_softlimit;
1131 adj = 0;
1132 } else if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
dd75fdc8
CW
1133 if (adj > 0)
1134 adj *= 2;
edcf284b
CW
1135 else /* CHV needs even encode values */
1136 adj = IS_CHERRYVIEW(dev_priv) ? 2 : 1;
7425034a
VS
1137 /*
1138 * For better performance, jump directly
1139 * to RPe if we're below it.
1140 */
edcf284b 1141 if (new_delay < dev_priv->rps.efficient_freq - adj) {
b39fb297 1142 new_delay = dev_priv->rps.efficient_freq;
edcf284b
CW
1143 adj = 0;
1144 }
f5a4c67d
CW
1145 } else if (any_waiters(dev_priv)) {
1146 adj = 0;
dd75fdc8 1147 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
b39fb297
BW
1148 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1149 new_delay = dev_priv->rps.efficient_freq;
dd75fdc8 1150 else
b39fb297 1151 new_delay = dev_priv->rps.min_freq_softlimit;
dd75fdc8
CW
1152 adj = 0;
1153 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1154 if (adj < 0)
1155 adj *= 2;
edcf284b
CW
1156 else /* CHV needs even encode values */
1157 adj = IS_CHERRYVIEW(dev_priv) ? -2 : -1;
dd75fdc8 1158 } else { /* unknown event */
edcf284b 1159 adj = 0;
dd75fdc8 1160 }
3b8d8d91 1161
edcf284b
CW
1162 dev_priv->rps.last_adj = adj;
1163
79249636
BW
1164 /* sysfs frequency interfaces may have snuck in while servicing the
1165 * interrupt
1166 */
edcf284b 1167 new_delay += adj;
8d3afd7d 1168 new_delay = clamp_t(int, new_delay, min, max);
27544369 1169
ffe02b40 1170 intel_set_rps(dev_priv->dev, new_delay);
3b8d8d91 1171
4fc688ce 1172 mutex_unlock(&dev_priv->rps.hw_lock);
3b8d8d91
JB
1173}
1174
e3689190
BW
1175
1176/**
1177 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1178 * occurred.
1179 * @work: workqueue struct
1180 *
1181 * Doesn't actually do anything except notify userspace. As a consequence of
1182 * this event, userspace should try to remap the bad rows since statistically
1183 * it is likely the same row is more likely to go bad again.
1184 */
1185static void ivybridge_parity_work(struct work_struct *work)
1186{
2d1013dd
JN
1187 struct drm_i915_private *dev_priv =
1188 container_of(work, struct drm_i915_private, l3_parity.error_work);
e3689190 1189 u32 error_status, row, bank, subbank;
35a85ac6 1190 char *parity_event[6];
e3689190 1191 uint32_t misccpctl;
35a85ac6 1192 uint8_t slice = 0;
e3689190
BW
1193
1194 /* We must turn off DOP level clock gating to access the L3 registers.
1195 * In order to prevent a get/put style interface, acquire struct mutex
1196 * any time we access those registers.
1197 */
1198 mutex_lock(&dev_priv->dev->struct_mutex);
1199
35a85ac6
BW
1200 /* If we've screwed up tracking, just let the interrupt fire again */
1201 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1202 goto out;
1203
e3689190
BW
1204 misccpctl = I915_READ(GEN7_MISCCPCTL);
1205 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1206 POSTING_READ(GEN7_MISCCPCTL);
1207
35a85ac6 1208 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
f0f59a00 1209 i915_reg_t reg;
e3689190 1210
35a85ac6
BW
1211 slice--;
1212 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1213 break;
e3689190 1214
35a85ac6 1215 dev_priv->l3_parity.which_slice &= ~(1<<slice);
e3689190 1216
6fa1c5f1 1217 reg = GEN7_L3CDERRST1(slice);
e3689190 1218
35a85ac6
BW
1219 error_status = I915_READ(reg);
1220 row = GEN7_PARITY_ERROR_ROW(error_status);
1221 bank = GEN7_PARITY_ERROR_BANK(error_status);
1222 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1223
1224 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1225 POSTING_READ(reg);
1226
1227 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1228 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1229 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1230 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1231 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1232 parity_event[5] = NULL;
1233
5bdebb18 1234 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
35a85ac6 1235 KOBJ_CHANGE, parity_event);
e3689190 1236
35a85ac6
BW
1237 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1238 slice, row, bank, subbank);
e3689190 1239
35a85ac6
BW
1240 kfree(parity_event[4]);
1241 kfree(parity_event[3]);
1242 kfree(parity_event[2]);
1243 kfree(parity_event[1]);
1244 }
e3689190 1245
35a85ac6 1246 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
e3689190 1247
35a85ac6
BW
1248out:
1249 WARN_ON(dev_priv->l3_parity.which_slice);
4cb21832 1250 spin_lock_irq(&dev_priv->irq_lock);
480c8033 1251 gen5_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
4cb21832 1252 spin_unlock_irq(&dev_priv->irq_lock);
35a85ac6
BW
1253
1254 mutex_unlock(&dev_priv->dev->struct_mutex);
e3689190
BW
1255}
1256
35a85ac6 1257static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
e3689190 1258{
2d1013dd 1259 struct drm_i915_private *dev_priv = dev->dev_private;
e3689190 1260
040d2baa 1261 if (!HAS_L3_DPF(dev))
e3689190
BW
1262 return;
1263
d0ecd7e2 1264 spin_lock(&dev_priv->irq_lock);
480c8033 1265 gen5_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
d0ecd7e2 1266 spin_unlock(&dev_priv->irq_lock);
e3689190 1267
35a85ac6
BW
1268 iir &= GT_PARITY_ERROR(dev);
1269 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1270 dev_priv->l3_parity.which_slice |= 1 << 1;
1271
1272 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1273 dev_priv->l3_parity.which_slice |= 1 << 0;
1274
a4da4fa4 1275 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
e3689190
BW
1276}
1277
f1af8fc1
PZ
1278static void ilk_gt_irq_handler(struct drm_device *dev,
1279 struct drm_i915_private *dev_priv,
1280 u32 gt_iir)
1281{
1282 if (gt_iir &
1283 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
74cdb337 1284 notify_ring(&dev_priv->ring[RCS]);
f1af8fc1 1285 if (gt_iir & ILK_BSD_USER_INTERRUPT)
74cdb337 1286 notify_ring(&dev_priv->ring[VCS]);
f1af8fc1
PZ
1287}
1288
e7b4c6b1
DV
1289static void snb_gt_irq_handler(struct drm_device *dev,
1290 struct drm_i915_private *dev_priv,
1291 u32 gt_iir)
1292{
1293
cc609d5d
BW
1294 if (gt_iir &
1295 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
74cdb337 1296 notify_ring(&dev_priv->ring[RCS]);
cc609d5d 1297 if (gt_iir & GT_BSD_USER_INTERRUPT)
74cdb337 1298 notify_ring(&dev_priv->ring[VCS]);
cc609d5d 1299 if (gt_iir & GT_BLT_USER_INTERRUPT)
74cdb337 1300 notify_ring(&dev_priv->ring[BCS]);
e7b4c6b1 1301
cc609d5d
BW
1302 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1303 GT_BSD_CS_ERROR_INTERRUPT |
aaecdf61
DV
1304 GT_RENDER_CS_MASTER_ERROR_INTERRUPT))
1305 DRM_DEBUG("Command parser error, gt_iir 0x%08x\n", gt_iir);
e3689190 1306
35a85ac6
BW
1307 if (gt_iir & GT_PARITY_ERROR(dev))
1308 ivybridge_parity_error_irq_handler(dev, gt_iir);
e7b4c6b1
DV
1309}
1310
fbcc1a0c 1311static __always_inline void
e4ba99b9 1312gen8_cs_irq_handler(struct intel_engine_cs *ring, u32 iir, int test_shift)
fbcc1a0c
NH
1313{
1314 if (iir & (GT_RENDER_USER_INTERRUPT << test_shift))
1315 notify_ring(ring);
1316 if (iir & (GT_CONTEXT_SWITCH_INTERRUPT << test_shift))
1317 intel_lrc_irq_handler(ring);
1318}
1319
74cdb337 1320static irqreturn_t gen8_gt_irq_handler(struct drm_i915_private *dev_priv,
abd58f01
BW
1321 u32 master_ctl)
1322{
abd58f01
BW
1323 irqreturn_t ret = IRQ_NONE;
1324
1325 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
5dd280b0
NH
1326 u32 iir = I915_READ_FW(GEN8_GT_IIR(0));
1327 if (iir) {
1328 I915_WRITE_FW(GEN8_GT_IIR(0), iir);
abd58f01 1329 ret = IRQ_HANDLED;
e981e7b1 1330
fbcc1a0c
NH
1331 gen8_cs_irq_handler(&dev_priv->ring[RCS],
1332 iir, GEN8_RCS_IRQ_SHIFT);
74cdb337 1333
fbcc1a0c
NH
1334 gen8_cs_irq_handler(&dev_priv->ring[BCS],
1335 iir, GEN8_BCS_IRQ_SHIFT);
abd58f01
BW
1336 } else
1337 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1338 }
1339
85f9b5f9 1340 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
5dd280b0
NH
1341 u32 iir = I915_READ_FW(GEN8_GT_IIR(1));
1342 if (iir) {
1343 I915_WRITE_FW(GEN8_GT_IIR(1), iir);
abd58f01 1344 ret = IRQ_HANDLED;
e981e7b1 1345
fbcc1a0c
NH
1346 gen8_cs_irq_handler(&dev_priv->ring[VCS],
1347 iir, GEN8_VCS1_IRQ_SHIFT);
abd58f01 1348
fbcc1a0c
NH
1349 gen8_cs_irq_handler(&dev_priv->ring[VCS2],
1350 iir, GEN8_VCS2_IRQ_SHIFT);
0961021a 1351 } else
abd58f01 1352 DRM_ERROR("The master control interrupt lied (GT1)!\n");
0961021a
BW
1353 }
1354
abd58f01 1355 if (master_ctl & GEN8_GT_VECS_IRQ) {
5dd280b0
NH
1356 u32 iir = I915_READ_FW(GEN8_GT_IIR(3));
1357 if (iir) {
1358 I915_WRITE_FW(GEN8_GT_IIR(3), iir);
abd58f01 1359 ret = IRQ_HANDLED;
e981e7b1 1360
fbcc1a0c
NH
1361 gen8_cs_irq_handler(&dev_priv->ring[VECS],
1362 iir, GEN8_VECS_IRQ_SHIFT);
abd58f01
BW
1363 } else
1364 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1365 }
1366
0961021a 1367 if (master_ctl & GEN8_GT_PM_IRQ) {
5dd280b0
NH
1368 u32 iir = I915_READ_FW(GEN8_GT_IIR(2));
1369 if (iir & dev_priv->pm_rps_events) {
cb0d205e 1370 I915_WRITE_FW(GEN8_GT_IIR(2),
5dd280b0 1371 iir & dev_priv->pm_rps_events);
38cc46d7 1372 ret = IRQ_HANDLED;
5dd280b0 1373 gen6_rps_irq_handler(dev_priv, iir);
0961021a
BW
1374 } else
1375 DRM_ERROR("The master control interrupt lied (PM)!\n");
1376 }
1377
abd58f01
BW
1378 return ret;
1379}
1380
63c88d22
ID
1381static bool bxt_port_hotplug_long_detect(enum port port, u32 val)
1382{
1383 switch (port) {
1384 case PORT_A:
195baa06 1385 return val & PORTA_HOTPLUG_LONG_DETECT;
63c88d22
ID
1386 case PORT_B:
1387 return val & PORTB_HOTPLUG_LONG_DETECT;
1388 case PORT_C:
1389 return val & PORTC_HOTPLUG_LONG_DETECT;
63c88d22
ID
1390 default:
1391 return false;
1392 }
1393}
1394
6dbf30ce
VS
1395static bool spt_port_hotplug2_long_detect(enum port port, u32 val)
1396{
1397 switch (port) {
1398 case PORT_E:
1399 return val & PORTE_HOTPLUG_LONG_DETECT;
1400 default:
1401 return false;
1402 }
1403}
1404
74c0b395
VS
1405static bool spt_port_hotplug_long_detect(enum port port, u32 val)
1406{
1407 switch (port) {
1408 case PORT_A:
1409 return val & PORTA_HOTPLUG_LONG_DETECT;
1410 case PORT_B:
1411 return val & PORTB_HOTPLUG_LONG_DETECT;
1412 case PORT_C:
1413 return val & PORTC_HOTPLUG_LONG_DETECT;
1414 case PORT_D:
1415 return val & PORTD_HOTPLUG_LONG_DETECT;
1416 default:
1417 return false;
1418 }
1419}
1420
e4ce95aa
VS
1421static bool ilk_port_hotplug_long_detect(enum port port, u32 val)
1422{
1423 switch (port) {
1424 case PORT_A:
1425 return val & DIGITAL_PORTA_HOTPLUG_LONG_DETECT;
1426 default:
1427 return false;
1428 }
1429}
1430
676574df 1431static bool pch_port_hotplug_long_detect(enum port port, u32 val)
13cf5504
DA
1432{
1433 switch (port) {
13cf5504 1434 case PORT_B:
676574df 1435 return val & PORTB_HOTPLUG_LONG_DETECT;
13cf5504 1436 case PORT_C:
676574df 1437 return val & PORTC_HOTPLUG_LONG_DETECT;
13cf5504 1438 case PORT_D:
676574df
JN
1439 return val & PORTD_HOTPLUG_LONG_DETECT;
1440 default:
1441 return false;
13cf5504
DA
1442 }
1443}
1444
676574df 1445static bool i9xx_port_hotplug_long_detect(enum port port, u32 val)
13cf5504
DA
1446{
1447 switch (port) {
13cf5504 1448 case PORT_B:
676574df 1449 return val & PORTB_HOTPLUG_INT_LONG_PULSE;
13cf5504 1450 case PORT_C:
676574df 1451 return val & PORTC_HOTPLUG_INT_LONG_PULSE;
13cf5504 1452 case PORT_D:
676574df
JN
1453 return val & PORTD_HOTPLUG_INT_LONG_PULSE;
1454 default:
1455 return false;
13cf5504
DA
1456 }
1457}
1458
42db67d6
VS
1459/*
1460 * Get a bit mask of pins that have triggered, and which ones may be long.
1461 * This can be called multiple times with the same masks to accumulate
1462 * hotplug detection results from several registers.
1463 *
1464 * Note that the caller is expected to zero out the masks initially.
1465 */
fd63e2a9 1466static void intel_get_hpd_pins(u32 *pin_mask, u32 *long_mask,
8c841e57 1467 u32 hotplug_trigger, u32 dig_hotplug_reg,
fd63e2a9
ID
1468 const u32 hpd[HPD_NUM_PINS],
1469 bool long_pulse_detect(enum port port, u32 val))
676574df 1470{
8c841e57 1471 enum port port;
676574df
JN
1472 int i;
1473
676574df 1474 for_each_hpd_pin(i) {
8c841e57
JN
1475 if ((hpd[i] & hotplug_trigger) == 0)
1476 continue;
676574df 1477
8c841e57
JN
1478 *pin_mask |= BIT(i);
1479
cc24fcdc
ID
1480 if (!intel_hpd_pin_to_port(i, &port))
1481 continue;
1482
fd63e2a9 1483 if (long_pulse_detect(port, dig_hotplug_reg))
8c841e57 1484 *long_mask |= BIT(i);
676574df
JN
1485 }
1486
1487 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x, pins 0x%08x\n",
1488 hotplug_trigger, dig_hotplug_reg, *pin_mask);
1489
1490}
1491
515ac2bb
DV
1492static void gmbus_irq_handler(struct drm_device *dev)
1493{
2d1013dd 1494 struct drm_i915_private *dev_priv = dev->dev_private;
28c70f16 1495
28c70f16 1496 wake_up_all(&dev_priv->gmbus_wait_queue);
515ac2bb
DV
1497}
1498
ce99c256
DV
1499static void dp_aux_irq_handler(struct drm_device *dev)
1500{
2d1013dd 1501 struct drm_i915_private *dev_priv = dev->dev_private;
9ee32fea 1502
9ee32fea 1503 wake_up_all(&dev_priv->gmbus_wait_queue);
ce99c256
DV
1504}
1505
8bf1e9f1 1506#if defined(CONFIG_DEBUG_FS)
277de95e
DV
1507static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1508 uint32_t crc0, uint32_t crc1,
1509 uint32_t crc2, uint32_t crc3,
1510 uint32_t crc4)
8bf1e9f1
SH
1511{
1512 struct drm_i915_private *dev_priv = dev->dev_private;
1513 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1514 struct intel_pipe_crc_entry *entry;
ac2300d4 1515 int head, tail;
b2c88f5b 1516
d538bbdf
DL
1517 spin_lock(&pipe_crc->lock);
1518
0c912c79 1519 if (!pipe_crc->entries) {
d538bbdf 1520 spin_unlock(&pipe_crc->lock);
34273620 1521 DRM_DEBUG_KMS("spurious interrupt\n");
0c912c79
DL
1522 return;
1523 }
1524
d538bbdf
DL
1525 head = pipe_crc->head;
1526 tail = pipe_crc->tail;
b2c88f5b
DL
1527
1528 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
d538bbdf 1529 spin_unlock(&pipe_crc->lock);
b2c88f5b
DL
1530 DRM_ERROR("CRC buffer overflowing\n");
1531 return;
1532 }
1533
1534 entry = &pipe_crc->entries[head];
8bf1e9f1 1535
8bc5e955 1536 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
eba94eb9
DV
1537 entry->crc[0] = crc0;
1538 entry->crc[1] = crc1;
1539 entry->crc[2] = crc2;
1540 entry->crc[3] = crc3;
1541 entry->crc[4] = crc4;
b2c88f5b
DL
1542
1543 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
d538bbdf
DL
1544 pipe_crc->head = head;
1545
1546 spin_unlock(&pipe_crc->lock);
07144428
DL
1547
1548 wake_up_interruptible(&pipe_crc->wq);
8bf1e9f1 1549}
277de95e
DV
1550#else
1551static inline void
1552display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1553 uint32_t crc0, uint32_t crc1,
1554 uint32_t crc2, uint32_t crc3,
1555 uint32_t crc4) {}
1556#endif
1557
eba94eb9 1558
277de95e 1559static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
5a69b89f
DV
1560{
1561 struct drm_i915_private *dev_priv = dev->dev_private;
1562
277de95e
DV
1563 display_pipe_crc_irq_handler(dev, pipe,
1564 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1565 0, 0, 0, 0);
5a69b89f
DV
1566}
1567
277de95e 1568static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
eba94eb9
DV
1569{
1570 struct drm_i915_private *dev_priv = dev->dev_private;
1571
277de95e
DV
1572 display_pipe_crc_irq_handler(dev, pipe,
1573 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1574 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1575 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1576 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1577 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
eba94eb9 1578}
5b3a856b 1579
277de95e 1580static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
5b3a856b
DV
1581{
1582 struct drm_i915_private *dev_priv = dev->dev_private;
0b5c5ed0
DV
1583 uint32_t res1, res2;
1584
1585 if (INTEL_INFO(dev)->gen >= 3)
1586 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1587 else
1588 res1 = 0;
1589
1590 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1591 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1592 else
1593 res2 = 0;
5b3a856b 1594
277de95e
DV
1595 display_pipe_crc_irq_handler(dev, pipe,
1596 I915_READ(PIPE_CRC_RES_RED(pipe)),
1597 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1598 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1599 res1, res2);
5b3a856b 1600}
8bf1e9f1 1601
1403c0d4
PZ
1602/* The RPS events need forcewake, so we add them to a work queue and mask their
1603 * IMR bits until the work is done. Other interrupts can be processed without
1604 * the work queue. */
1605static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
baf02a1f 1606{
a6706b45 1607 if (pm_iir & dev_priv->pm_rps_events) {
59cdb63d 1608 spin_lock(&dev_priv->irq_lock);
480c8033 1609 gen6_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
d4d70aa5
ID
1610 if (dev_priv->rps.interrupts_enabled) {
1611 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
1612 queue_work(dev_priv->wq, &dev_priv->rps.work);
1613 }
59cdb63d 1614 spin_unlock(&dev_priv->irq_lock);
baf02a1f 1615 }
baf02a1f 1616
c9a9a268
ID
1617 if (INTEL_INFO(dev_priv)->gen >= 8)
1618 return;
1619
1403c0d4
PZ
1620 if (HAS_VEBOX(dev_priv->dev)) {
1621 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
74cdb337 1622 notify_ring(&dev_priv->ring[VECS]);
12638c57 1623
aaecdf61
DV
1624 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT)
1625 DRM_DEBUG("Command parser error, pm_iir 0x%08x\n", pm_iir);
12638c57 1626 }
baf02a1f
BW
1627}
1628
8d7849db
VS
1629static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
1630{
8d7849db
VS
1631 if (!drm_handle_vblank(dev, pipe))
1632 return false;
1633
8d7849db
VS
1634 return true;
1635}
1636
c1874ed7
ID
1637static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
1638{
1639 struct drm_i915_private *dev_priv = dev->dev_private;
91d181dd 1640 u32 pipe_stats[I915_MAX_PIPES] = { };
c1874ed7
ID
1641 int pipe;
1642
58ead0d7 1643 spin_lock(&dev_priv->irq_lock);
055e393f 1644 for_each_pipe(dev_priv, pipe) {
f0f59a00 1645 i915_reg_t reg;
bbb5eebf 1646 u32 mask, iir_bit = 0;
91d181dd 1647
bbb5eebf
DV
1648 /*
1649 * PIPESTAT bits get signalled even when the interrupt is
1650 * disabled with the mask bits, and some of the status bits do
1651 * not generate interrupts at all (like the underrun bit). Hence
1652 * we need to be careful that we only handle what we want to
1653 * handle.
1654 */
0f239f4c
DV
1655
1656 /* fifo underruns are filterered in the underrun handler. */
1657 mask = PIPE_FIFO_UNDERRUN_STATUS;
bbb5eebf
DV
1658
1659 switch (pipe) {
1660 case PIPE_A:
1661 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1662 break;
1663 case PIPE_B:
1664 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1665 break;
3278f67f
VS
1666 case PIPE_C:
1667 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1668 break;
bbb5eebf
DV
1669 }
1670 if (iir & iir_bit)
1671 mask |= dev_priv->pipestat_irq_mask[pipe];
1672
1673 if (!mask)
91d181dd
ID
1674 continue;
1675
1676 reg = PIPESTAT(pipe);
bbb5eebf
DV
1677 mask |= PIPESTAT_INT_ENABLE_MASK;
1678 pipe_stats[pipe] = I915_READ(reg) & mask;
c1874ed7
ID
1679
1680 /*
1681 * Clear the PIPE*STAT regs before the IIR
1682 */
91d181dd
ID
1683 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1684 PIPESTAT_INT_STATUS_MASK))
c1874ed7
ID
1685 I915_WRITE(reg, pipe_stats[pipe]);
1686 }
58ead0d7 1687 spin_unlock(&dev_priv->irq_lock);
c1874ed7 1688
055e393f 1689 for_each_pipe(dev_priv, pipe) {
d6bbafa1
CW
1690 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
1691 intel_pipe_handle_vblank(dev, pipe))
1692 intel_check_page_flip(dev, pipe);
c1874ed7 1693
579a9b0e 1694 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
c1874ed7
ID
1695 intel_prepare_page_flip(dev, pipe);
1696 intel_finish_page_flip(dev, pipe);
1697 }
1698
1699 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1700 i9xx_pipe_crc_irq_handler(dev, pipe);
1701
1f7247c0
DV
1702 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1703 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
c1874ed7
ID
1704 }
1705
1706 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1707 gmbus_irq_handler(dev);
1708}
1709
16c6c56b
VS
1710static void i9xx_hpd_irq_handler(struct drm_device *dev)
1711{
1712 struct drm_i915_private *dev_priv = dev->dev_private;
1713 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
42db67d6 1714 u32 pin_mask = 0, long_mask = 0;
16c6c56b 1715
0d2e4297
JN
1716 if (!hotplug_status)
1717 return;
16c6c56b 1718
0d2e4297
JN
1719 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1720 /*
1721 * Make sure hotplug status is cleared before we clear IIR, or else we
1722 * may miss hotplug events.
1723 */
1724 POSTING_READ(PORT_HOTPLUG_STAT);
16c6c56b 1725
0d2e4297
JN
1726 if (IS_G4X(dev) || IS_VALLEYVIEW(dev)) {
1727 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
16c6c56b 1728
58f2cf24
VS
1729 if (hotplug_trigger) {
1730 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1731 hotplug_trigger, hpd_status_g4x,
1732 i9xx_port_hotplug_long_detect);
1733
1734 intel_hpd_irq_handler(dev, pin_mask, long_mask);
1735 }
369712e8
JN
1736
1737 if (hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
1738 dp_aux_irq_handler(dev);
0d2e4297
JN
1739 } else {
1740 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
16c6c56b 1741
58f2cf24
VS
1742 if (hotplug_trigger) {
1743 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
44cc6c08 1744 hotplug_trigger, hpd_status_i915,
58f2cf24 1745 i9xx_port_hotplug_long_detect);
58f2cf24
VS
1746 intel_hpd_irq_handler(dev, pin_mask, long_mask);
1747 }
3ff60f89 1748 }
16c6c56b
VS
1749}
1750
ff1f525e 1751static irqreturn_t valleyview_irq_handler(int irq, void *arg)
7e231dbe 1752{
45a83f84 1753 struct drm_device *dev = arg;
2d1013dd 1754 struct drm_i915_private *dev_priv = dev->dev_private;
7e231dbe
JB
1755 u32 iir, gt_iir, pm_iir;
1756 irqreturn_t ret = IRQ_NONE;
7e231dbe 1757
2dd2a883
ID
1758 if (!intel_irqs_enabled(dev_priv))
1759 return IRQ_NONE;
1760
7e231dbe 1761 while (true) {
3ff60f89
OM
1762 /* Find, clear, then process each source of interrupt */
1763
7e231dbe 1764 gt_iir = I915_READ(GTIIR);
3ff60f89
OM
1765 if (gt_iir)
1766 I915_WRITE(GTIIR, gt_iir);
1767
7e231dbe 1768 pm_iir = I915_READ(GEN6_PMIIR);
3ff60f89
OM
1769 if (pm_iir)
1770 I915_WRITE(GEN6_PMIIR, pm_iir);
1771
1772 iir = I915_READ(VLV_IIR);
1773 if (iir) {
1774 /* Consume port before clearing IIR or we'll miss events */
1775 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1776 i9xx_hpd_irq_handler(dev);
1777 I915_WRITE(VLV_IIR, iir);
1778 }
7e231dbe
JB
1779
1780 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1781 goto out;
1782
1783 ret = IRQ_HANDLED;
1784
3ff60f89
OM
1785 if (gt_iir)
1786 snb_gt_irq_handler(dev, dev_priv, gt_iir);
60611c13 1787 if (pm_iir)
d0ecd7e2 1788 gen6_rps_irq_handler(dev_priv, pm_iir);
3ff60f89
OM
1789 /* Call regardless, as some status bits might not be
1790 * signalled in iir */
1791 valleyview_pipestat_irq_handler(dev, iir);
7e231dbe
JB
1792 }
1793
1794out:
1795 return ret;
1796}
1797
43f328d7
VS
1798static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1799{
45a83f84 1800 struct drm_device *dev = arg;
43f328d7
VS
1801 struct drm_i915_private *dev_priv = dev->dev_private;
1802 u32 master_ctl, iir;
1803 irqreturn_t ret = IRQ_NONE;
43f328d7 1804
2dd2a883
ID
1805 if (!intel_irqs_enabled(dev_priv))
1806 return IRQ_NONE;
1807
8e5fd599
VS
1808 for (;;) {
1809 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1810 iir = I915_READ(VLV_IIR);
43f328d7 1811
8e5fd599
VS
1812 if (master_ctl == 0 && iir == 0)
1813 break;
43f328d7 1814
27b6c122
OM
1815 ret = IRQ_HANDLED;
1816
8e5fd599 1817 I915_WRITE(GEN8_MASTER_IRQ, 0);
43f328d7 1818
27b6c122 1819 /* Find, clear, then process each source of interrupt */
43f328d7 1820
27b6c122
OM
1821 if (iir) {
1822 /* Consume port before clearing IIR or we'll miss events */
1823 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1824 i9xx_hpd_irq_handler(dev);
1825 I915_WRITE(VLV_IIR, iir);
1826 }
43f328d7 1827
74cdb337 1828 gen8_gt_irq_handler(dev_priv, master_ctl);
43f328d7 1829
27b6c122
OM
1830 /* Call regardless, as some status bits might not be
1831 * signalled in iir */
1832 valleyview_pipestat_irq_handler(dev, iir);
43f328d7 1833
8e5fd599
VS
1834 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
1835 POSTING_READ(GEN8_MASTER_IRQ);
8e5fd599 1836 }
3278f67f 1837
43f328d7
VS
1838 return ret;
1839}
1840
40e56410
VS
1841static void ibx_hpd_irq_handler(struct drm_device *dev, u32 hotplug_trigger,
1842 const u32 hpd[HPD_NUM_PINS])
1843{
1844 struct drm_i915_private *dev_priv = to_i915(dev);
1845 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
1846
6a39d7c9
JN
1847 /*
1848 * Somehow the PCH doesn't seem to really ack the interrupt to the CPU
1849 * unless we touch the hotplug register, even if hotplug_trigger is
1850 * zero. Not acking leads to "The master control interrupt lied (SDE)!"
1851 * errors.
1852 */
40e56410 1853 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
6a39d7c9
JN
1854 if (!hotplug_trigger) {
1855 u32 mask = PORTA_HOTPLUG_STATUS_MASK |
1856 PORTD_HOTPLUG_STATUS_MASK |
1857 PORTC_HOTPLUG_STATUS_MASK |
1858 PORTB_HOTPLUG_STATUS_MASK;
1859 dig_hotplug_reg &= ~mask;
1860 }
1861
40e56410 1862 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
6a39d7c9
JN
1863 if (!hotplug_trigger)
1864 return;
40e56410
VS
1865
1866 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
1867 dig_hotplug_reg, hpd,
1868 pch_port_hotplug_long_detect);
1869
1870 intel_hpd_irq_handler(dev, pin_mask, long_mask);
1871}
1872
23e81d69 1873static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
776ad806 1874{
2d1013dd 1875 struct drm_i915_private *dev_priv = dev->dev_private;
9db4a9c7 1876 int pipe;
b543fb04 1877 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
13cf5504 1878
6a39d7c9 1879 ibx_hpd_irq_handler(dev, hotplug_trigger, hpd_ibx);
91d131d2 1880
cfc33bf7
VS
1881 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1882 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1883 SDE_AUDIO_POWER_SHIFT);
776ad806 1884 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
cfc33bf7
VS
1885 port_name(port));
1886 }
776ad806 1887
ce99c256
DV
1888 if (pch_iir & SDE_AUX_MASK)
1889 dp_aux_irq_handler(dev);
1890
776ad806 1891 if (pch_iir & SDE_GMBUS)
515ac2bb 1892 gmbus_irq_handler(dev);
776ad806
JB
1893
1894 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1895 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1896
1897 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1898 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1899
1900 if (pch_iir & SDE_POISON)
1901 DRM_ERROR("PCH poison interrupt\n");
1902
9db4a9c7 1903 if (pch_iir & SDE_FDI_MASK)
055e393f 1904 for_each_pipe(dev_priv, pipe)
9db4a9c7
JB
1905 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1906 pipe_name(pipe),
1907 I915_READ(FDI_RX_IIR(pipe)));
776ad806
JB
1908
1909 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1910 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1911
1912 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1913 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1914
776ad806 1915 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
1f7247c0 1916 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
8664281b
PZ
1917
1918 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1f7247c0 1919 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
8664281b
PZ
1920}
1921
1922static void ivb_err_int_handler(struct drm_device *dev)
1923{
1924 struct drm_i915_private *dev_priv = dev->dev_private;
1925 u32 err_int = I915_READ(GEN7_ERR_INT);
5a69b89f 1926 enum pipe pipe;
8664281b 1927
de032bf4
PZ
1928 if (err_int & ERR_INT_POISON)
1929 DRM_ERROR("Poison interrupt\n");
1930
055e393f 1931 for_each_pipe(dev_priv, pipe) {
1f7247c0
DV
1932 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe))
1933 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
8bf1e9f1 1934
5a69b89f
DV
1935 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
1936 if (IS_IVYBRIDGE(dev))
277de95e 1937 ivb_pipe_crc_irq_handler(dev, pipe);
5a69b89f 1938 else
277de95e 1939 hsw_pipe_crc_irq_handler(dev, pipe);
5a69b89f
DV
1940 }
1941 }
8bf1e9f1 1942
8664281b
PZ
1943 I915_WRITE(GEN7_ERR_INT, err_int);
1944}
1945
1946static void cpt_serr_int_handler(struct drm_device *dev)
1947{
1948 struct drm_i915_private *dev_priv = dev->dev_private;
1949 u32 serr_int = I915_READ(SERR_INT);
1950
de032bf4
PZ
1951 if (serr_int & SERR_INT_POISON)
1952 DRM_ERROR("PCH poison interrupt\n");
1953
8664281b 1954 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1f7247c0 1955 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_A);
8664281b
PZ
1956
1957 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1f7247c0 1958 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_B);
8664281b
PZ
1959
1960 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1f7247c0 1961 intel_pch_fifo_underrun_irq_handler(dev_priv, TRANSCODER_C);
8664281b
PZ
1962
1963 I915_WRITE(SERR_INT, serr_int);
776ad806
JB
1964}
1965
23e81d69
AJ
1966static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1967{
2d1013dd 1968 struct drm_i915_private *dev_priv = dev->dev_private;
23e81d69 1969 int pipe;
6dbf30ce 1970 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
13cf5504 1971
6a39d7c9 1972 ibx_hpd_irq_handler(dev, hotplug_trigger, hpd_cpt);
91d131d2 1973
cfc33bf7
VS
1974 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1975 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1976 SDE_AUDIO_POWER_SHIFT_CPT);
1977 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1978 port_name(port));
1979 }
23e81d69
AJ
1980
1981 if (pch_iir & SDE_AUX_MASK_CPT)
ce99c256 1982 dp_aux_irq_handler(dev);
23e81d69
AJ
1983
1984 if (pch_iir & SDE_GMBUS_CPT)
515ac2bb 1985 gmbus_irq_handler(dev);
23e81d69
AJ
1986
1987 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1988 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1989
1990 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1991 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1992
1993 if (pch_iir & SDE_FDI_MASK_CPT)
055e393f 1994 for_each_pipe(dev_priv, pipe)
23e81d69
AJ
1995 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1996 pipe_name(pipe),
1997 I915_READ(FDI_RX_IIR(pipe)));
8664281b
PZ
1998
1999 if (pch_iir & SDE_ERROR_CPT)
2000 cpt_serr_int_handler(dev);
23e81d69
AJ
2001}
2002
6dbf30ce
VS
2003static void spt_irq_handler(struct drm_device *dev, u32 pch_iir)
2004{
2005 struct drm_i915_private *dev_priv = dev->dev_private;
2006 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_SPT &
2007 ~SDE_PORTE_HOTPLUG_SPT;
2008 u32 hotplug2_trigger = pch_iir & SDE_PORTE_HOTPLUG_SPT;
2009 u32 pin_mask = 0, long_mask = 0;
2010
2011 if (hotplug_trigger) {
2012 u32 dig_hotplug_reg;
2013
2014 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2015 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2016
2017 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2018 dig_hotplug_reg, hpd_spt,
74c0b395 2019 spt_port_hotplug_long_detect);
6dbf30ce
VS
2020 }
2021
2022 if (hotplug2_trigger) {
2023 u32 dig_hotplug_reg;
2024
2025 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG2);
2026 I915_WRITE(PCH_PORT_HOTPLUG2, dig_hotplug_reg);
2027
2028 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug2_trigger,
2029 dig_hotplug_reg, hpd_spt,
2030 spt_port_hotplug2_long_detect);
2031 }
2032
2033 if (pin_mask)
2034 intel_hpd_irq_handler(dev, pin_mask, long_mask);
2035
2036 if (pch_iir & SDE_GMBUS_CPT)
2037 gmbus_irq_handler(dev);
2038}
2039
40e56410
VS
2040static void ilk_hpd_irq_handler(struct drm_device *dev, u32 hotplug_trigger,
2041 const u32 hpd[HPD_NUM_PINS])
2042{
2043 struct drm_i915_private *dev_priv = to_i915(dev);
2044 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
2045
2046 dig_hotplug_reg = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
2047 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, dig_hotplug_reg);
2048
2049 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
2050 dig_hotplug_reg, hpd,
2051 ilk_port_hotplug_long_detect);
2052
2053 intel_hpd_irq_handler(dev, pin_mask, long_mask);
2054}
2055
c008bc6e
PZ
2056static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2057{
2058 struct drm_i915_private *dev_priv = dev->dev_private;
40da17c2 2059 enum pipe pipe;
e4ce95aa
VS
2060 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG;
2061
40e56410
VS
2062 if (hotplug_trigger)
2063 ilk_hpd_irq_handler(dev, hotplug_trigger, hpd_ilk);
c008bc6e
PZ
2064
2065 if (de_iir & DE_AUX_CHANNEL_A)
2066 dp_aux_irq_handler(dev);
2067
2068 if (de_iir & DE_GSE)
2069 intel_opregion_asle_intr(dev);
2070
c008bc6e
PZ
2071 if (de_iir & DE_POISON)
2072 DRM_ERROR("Poison interrupt\n");
2073
055e393f 2074 for_each_pipe(dev_priv, pipe) {
d6bbafa1
CW
2075 if (de_iir & DE_PIPE_VBLANK(pipe) &&
2076 intel_pipe_handle_vblank(dev, pipe))
2077 intel_check_page_flip(dev, pipe);
5b3a856b 2078
40da17c2 2079 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
1f7247c0 2080 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
5b3a856b 2081
40da17c2
DV
2082 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2083 i9xx_pipe_crc_irq_handler(dev, pipe);
c008bc6e 2084
40da17c2
DV
2085 /* plane/pipes map 1:1 on ilk+ */
2086 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2087 intel_prepare_page_flip(dev, pipe);
2088 intel_finish_page_flip_plane(dev, pipe);
2089 }
c008bc6e
PZ
2090 }
2091
2092 /* check event from PCH */
2093 if (de_iir & DE_PCH_EVENT) {
2094 u32 pch_iir = I915_READ(SDEIIR);
2095
2096 if (HAS_PCH_CPT(dev))
2097 cpt_irq_handler(dev, pch_iir);
2098 else
2099 ibx_irq_handler(dev, pch_iir);
2100
2101 /* should clear PCH hotplug event before clear CPU irq */
2102 I915_WRITE(SDEIIR, pch_iir);
2103 }
2104
2105 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2106 ironlake_rps_change_irq_handler(dev);
2107}
2108
9719fb98
PZ
2109static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2110{
2111 struct drm_i915_private *dev_priv = dev->dev_private;
07d27e20 2112 enum pipe pipe;
23bb4cb5
VS
2113 u32 hotplug_trigger = de_iir & DE_DP_A_HOTPLUG_IVB;
2114
40e56410
VS
2115 if (hotplug_trigger)
2116 ilk_hpd_irq_handler(dev, hotplug_trigger, hpd_ivb);
9719fb98
PZ
2117
2118 if (de_iir & DE_ERR_INT_IVB)
2119 ivb_err_int_handler(dev);
2120
2121 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2122 dp_aux_irq_handler(dev);
2123
2124 if (de_iir & DE_GSE_IVB)
2125 intel_opregion_asle_intr(dev);
2126
055e393f 2127 for_each_pipe(dev_priv, pipe) {
d6bbafa1
CW
2128 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)) &&
2129 intel_pipe_handle_vblank(dev, pipe))
2130 intel_check_page_flip(dev, pipe);
40da17c2
DV
2131
2132 /* plane/pipes map 1:1 on ilk+ */
07d27e20
DL
2133 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2134 intel_prepare_page_flip(dev, pipe);
2135 intel_finish_page_flip_plane(dev, pipe);
9719fb98
PZ
2136 }
2137 }
2138
2139 /* check event from PCH */
2140 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2141 u32 pch_iir = I915_READ(SDEIIR);
2142
2143 cpt_irq_handler(dev, pch_iir);
2144
2145 /* clear PCH hotplug event before clear CPU irq */
2146 I915_WRITE(SDEIIR, pch_iir);
2147 }
2148}
2149
72c90f62
OM
2150/*
2151 * To handle irqs with the minimum potential races with fresh interrupts, we:
2152 * 1 - Disable Master Interrupt Control.
2153 * 2 - Find the source(s) of the interrupt.
2154 * 3 - Clear the Interrupt Identity bits (IIR).
2155 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2156 * 5 - Re-enable Master Interrupt Control.
2157 */
f1af8fc1 2158static irqreturn_t ironlake_irq_handler(int irq, void *arg)
b1f14ad0 2159{
45a83f84 2160 struct drm_device *dev = arg;
2d1013dd 2161 struct drm_i915_private *dev_priv = dev->dev_private;
f1af8fc1 2162 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
0e43406b 2163 irqreturn_t ret = IRQ_NONE;
b1f14ad0 2164
2dd2a883
ID
2165 if (!intel_irqs_enabled(dev_priv))
2166 return IRQ_NONE;
2167
8664281b
PZ
2168 /* We get interrupts on unclaimed registers, so check for this before we
2169 * do any I915_{READ,WRITE}. */
907b28c5 2170 intel_uncore_check_errors(dev);
8664281b 2171
b1f14ad0
JB
2172 /* disable master interrupt before clearing iir */
2173 de_ier = I915_READ(DEIER);
2174 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
23a78516 2175 POSTING_READ(DEIER);
b1f14ad0 2176
44498aea
PZ
2177 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2178 * interrupts will will be stored on its back queue, and then we'll be
2179 * able to process them after we restore SDEIER (as soon as we restore
2180 * it, we'll get an interrupt if SDEIIR still has something to process
2181 * due to its back queue). */
ab5c608b
BW
2182 if (!HAS_PCH_NOP(dev)) {
2183 sde_ier = I915_READ(SDEIER);
2184 I915_WRITE(SDEIER, 0);
2185 POSTING_READ(SDEIER);
2186 }
44498aea 2187
72c90f62
OM
2188 /* Find, clear, then process each source of interrupt */
2189
b1f14ad0 2190 gt_iir = I915_READ(GTIIR);
0e43406b 2191 if (gt_iir) {
72c90f62
OM
2192 I915_WRITE(GTIIR, gt_iir);
2193 ret = IRQ_HANDLED;
d8fc8a47 2194 if (INTEL_INFO(dev)->gen >= 6)
f1af8fc1 2195 snb_gt_irq_handler(dev, dev_priv, gt_iir);
d8fc8a47
PZ
2196 else
2197 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
b1f14ad0
JB
2198 }
2199
0e43406b
CW
2200 de_iir = I915_READ(DEIIR);
2201 if (de_iir) {
72c90f62
OM
2202 I915_WRITE(DEIIR, de_iir);
2203 ret = IRQ_HANDLED;
f1af8fc1
PZ
2204 if (INTEL_INFO(dev)->gen >= 7)
2205 ivb_display_irq_handler(dev, de_iir);
2206 else
2207 ilk_display_irq_handler(dev, de_iir);
b1f14ad0
JB
2208 }
2209
f1af8fc1
PZ
2210 if (INTEL_INFO(dev)->gen >= 6) {
2211 u32 pm_iir = I915_READ(GEN6_PMIIR);
2212 if (pm_iir) {
f1af8fc1
PZ
2213 I915_WRITE(GEN6_PMIIR, pm_iir);
2214 ret = IRQ_HANDLED;
72c90f62 2215 gen6_rps_irq_handler(dev_priv, pm_iir);
f1af8fc1 2216 }
0e43406b 2217 }
b1f14ad0 2218
b1f14ad0
JB
2219 I915_WRITE(DEIER, de_ier);
2220 POSTING_READ(DEIER);
ab5c608b
BW
2221 if (!HAS_PCH_NOP(dev)) {
2222 I915_WRITE(SDEIER, sde_ier);
2223 POSTING_READ(SDEIER);
2224 }
b1f14ad0
JB
2225
2226 return ret;
2227}
2228
40e56410
VS
2229static void bxt_hpd_irq_handler(struct drm_device *dev, u32 hotplug_trigger,
2230 const u32 hpd[HPD_NUM_PINS])
d04a492d 2231{
cebd87a0
VS
2232 struct drm_i915_private *dev_priv = to_i915(dev);
2233 u32 dig_hotplug_reg, pin_mask = 0, long_mask = 0;
d04a492d 2234
a52bb15b
VS
2235 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2236 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
d04a492d 2237
cebd87a0 2238 intel_get_hpd_pins(&pin_mask, &long_mask, hotplug_trigger,
40e56410 2239 dig_hotplug_reg, hpd,
cebd87a0 2240 bxt_port_hotplug_long_detect);
40e56410 2241
676574df 2242 intel_hpd_irq_handler(dev, pin_mask, long_mask);
d04a492d
SS
2243}
2244
abd58f01
BW
2245static irqreturn_t gen8_irq_handler(int irq, void *arg)
2246{
2247 struct drm_device *dev = arg;
2248 struct drm_i915_private *dev_priv = dev->dev_private;
2249 u32 master_ctl;
2250 irqreturn_t ret = IRQ_NONE;
2251 uint32_t tmp = 0;
c42664cc 2252 enum pipe pipe;
88e04703
JB
2253 u32 aux_mask = GEN8_AUX_CHANNEL_A;
2254
2dd2a883
ID
2255 if (!intel_irqs_enabled(dev_priv))
2256 return IRQ_NONE;
2257
b4834a50 2258 if (INTEL_INFO(dev_priv)->gen >= 9)
88e04703
JB
2259 aux_mask |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
2260 GEN9_AUX_CHANNEL_D;
abd58f01 2261
cb0d205e 2262 master_ctl = I915_READ_FW(GEN8_MASTER_IRQ);
abd58f01
BW
2263 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2264 if (!master_ctl)
2265 return IRQ_NONE;
2266
cb0d205e 2267 I915_WRITE_FW(GEN8_MASTER_IRQ, 0);
abd58f01 2268
38cc46d7
OM
2269 /* Find, clear, then process each source of interrupt */
2270
74cdb337 2271 ret = gen8_gt_irq_handler(dev_priv, master_ctl);
abd58f01
BW
2272
2273 if (master_ctl & GEN8_DE_MISC_IRQ) {
2274 tmp = I915_READ(GEN8_DE_MISC_IIR);
abd58f01
BW
2275 if (tmp) {
2276 I915_WRITE(GEN8_DE_MISC_IIR, tmp);
2277 ret = IRQ_HANDLED;
38cc46d7
OM
2278 if (tmp & GEN8_DE_MISC_GSE)
2279 intel_opregion_asle_intr(dev);
2280 else
2281 DRM_ERROR("Unexpected DE Misc interrupt\n");
abd58f01 2282 }
38cc46d7
OM
2283 else
2284 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
abd58f01
BW
2285 }
2286
6d766f02
DV
2287 if (master_ctl & GEN8_DE_PORT_IRQ) {
2288 tmp = I915_READ(GEN8_DE_PORT_IIR);
6d766f02 2289 if (tmp) {
d04a492d 2290 bool found = false;
cebd87a0
VS
2291 u32 hotplug_trigger = 0;
2292
2293 if (IS_BROXTON(dev_priv))
2294 hotplug_trigger = tmp & BXT_DE_PORT_HOTPLUG_MASK;
2295 else if (IS_BROADWELL(dev_priv))
2296 hotplug_trigger = tmp & GEN8_PORT_DP_A_HOTPLUG;
d04a492d 2297
6d766f02
DV
2298 I915_WRITE(GEN8_DE_PORT_IIR, tmp);
2299 ret = IRQ_HANDLED;
88e04703 2300
d04a492d 2301 if (tmp & aux_mask) {
38cc46d7 2302 dp_aux_irq_handler(dev);
d04a492d
SS
2303 found = true;
2304 }
2305
40e56410
VS
2306 if (hotplug_trigger) {
2307 if (IS_BROXTON(dev))
2308 bxt_hpd_irq_handler(dev, hotplug_trigger, hpd_bxt);
2309 else
2310 ilk_hpd_irq_handler(dev, hotplug_trigger, hpd_bdw);
d04a492d
SS
2311 found = true;
2312 }
2313
9e63743e
SS
2314 if (IS_BROXTON(dev) && (tmp & BXT_DE_PORT_GMBUS)) {
2315 gmbus_irq_handler(dev);
2316 found = true;
2317 }
2318
d04a492d 2319 if (!found)
38cc46d7 2320 DRM_ERROR("Unexpected DE Port interrupt\n");
6d766f02 2321 }
38cc46d7
OM
2322 else
2323 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
6d766f02
DV
2324 }
2325
055e393f 2326 for_each_pipe(dev_priv, pipe) {
770de83d 2327 uint32_t pipe_iir, flip_done = 0, fault_errors = 0;
abd58f01 2328
c42664cc
DV
2329 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2330 continue;
abd58f01 2331
c42664cc 2332 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
c42664cc
DV
2333 if (pipe_iir) {
2334 ret = IRQ_HANDLED;
2335 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
770de83d 2336
d6bbafa1
CW
2337 if (pipe_iir & GEN8_PIPE_VBLANK &&
2338 intel_pipe_handle_vblank(dev, pipe))
2339 intel_check_page_flip(dev, pipe);
38cc46d7 2340
b4834a50 2341 if (INTEL_INFO(dev_priv)->gen >= 9)
770de83d
DL
2342 flip_done = pipe_iir & GEN9_PIPE_PLANE1_FLIP_DONE;
2343 else
2344 flip_done = pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE;
2345
2346 if (flip_done) {
38cc46d7
OM
2347 intel_prepare_page_flip(dev, pipe);
2348 intel_finish_page_flip_plane(dev, pipe);
2349 }
2350
2351 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2352 hsw_pipe_crc_irq_handler(dev, pipe);
2353
1f7247c0
DV
2354 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN)
2355 intel_cpu_fifo_underrun_irq_handler(dev_priv,
2356 pipe);
38cc46d7 2357
770de83d 2358
b4834a50 2359 if (INTEL_INFO(dev_priv)->gen >= 9)
770de83d
DL
2360 fault_errors = pipe_iir & GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
2361 else
2362 fault_errors = pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
2363
2364 if (fault_errors)
38cc46d7
OM
2365 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2366 pipe_name(pipe),
2367 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
c42664cc 2368 } else
abd58f01
BW
2369 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2370 }
2371
266ea3d9
SS
2372 if (HAS_PCH_SPLIT(dev) && !HAS_PCH_NOP(dev) &&
2373 master_ctl & GEN8_DE_PCH_IRQ) {
92d03a80
DV
2374 /*
2375 * FIXME(BDW): Assume for now that the new interrupt handling
2376 * scheme also closed the SDE interrupt handling race we've seen
2377 * on older pch-split platforms. But this needs testing.
2378 */
2379 u32 pch_iir = I915_READ(SDEIIR);
92d03a80
DV
2380 if (pch_iir) {
2381 I915_WRITE(SDEIIR, pch_iir);
2382 ret = IRQ_HANDLED;
6dbf30ce
VS
2383
2384 if (HAS_PCH_SPT(dev_priv))
2385 spt_irq_handler(dev, pch_iir);
2386 else
2387 cpt_irq_handler(dev, pch_iir);
820da7ae
JN
2388 } else
2389 DRM_ERROR("The master control interrupt lied (SDE)!\n");
2390
92d03a80
DV
2391 }
2392
cb0d205e
CW
2393 I915_WRITE_FW(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2394 POSTING_READ_FW(GEN8_MASTER_IRQ);
abd58f01
BW
2395
2396 return ret;
2397}
2398
17e1df07
DV
2399static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2400 bool reset_completed)
2401{
a4872ba6 2402 struct intel_engine_cs *ring;
17e1df07
DV
2403 int i;
2404
2405 /*
2406 * Notify all waiters for GPU completion events that reset state has
2407 * been changed, and that they need to restart their wait after
2408 * checking for potential errors (and bail out to drop locks if there is
2409 * a gpu reset pending so that i915_error_work_func can acquire them).
2410 */
2411
2412 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2413 for_each_ring(ring, dev_priv, i)
2414 wake_up_all(&ring->irq_queue);
2415
2416 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2417 wake_up_all(&dev_priv->pending_flip_queue);
2418
2419 /*
2420 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2421 * reset state is cleared.
2422 */
2423 if (reset_completed)
2424 wake_up_all(&dev_priv->gpu_error.reset_queue);
2425}
2426
8a905236 2427/**
b8d24a06 2428 * i915_reset_and_wakeup - do process context error handling work
468f9d29 2429 * @dev: drm device
8a905236
JB
2430 *
2431 * Fire an error uevent so userspace can see that a hang or error
2432 * was detected.
2433 */
b8d24a06 2434static void i915_reset_and_wakeup(struct drm_device *dev)
8a905236 2435{
b8d24a06
MK
2436 struct drm_i915_private *dev_priv = to_i915(dev);
2437 struct i915_gpu_error *error = &dev_priv->gpu_error;
cce723ed
BW
2438 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2439 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2440 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
17e1df07 2441 int ret;
8a905236 2442
5bdebb18 2443 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
f316a42c 2444
7db0ba24
DV
2445 /*
2446 * Note that there's only one work item which does gpu resets, so we
2447 * need not worry about concurrent gpu resets potentially incrementing
2448 * error->reset_counter twice. We only need to take care of another
2449 * racing irq/hangcheck declaring the gpu dead for a second time. A
2450 * quick check for that is good enough: schedule_work ensures the
2451 * correct ordering between hang detection and this work item, and since
2452 * the reset in-progress bit is only ever set by code outside of this
2453 * work we don't need to worry about any other races.
2454 */
2455 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
f803aa55 2456 DRM_DEBUG_DRIVER("resetting chip\n");
5bdebb18 2457 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
7db0ba24 2458 reset_event);
1f83fee0 2459
f454c694
ID
2460 /*
2461 * In most cases it's guaranteed that we get here with an RPM
2462 * reference held, for example because there is a pending GPU
2463 * request that won't finish until the reset is done. This
2464 * isn't the case at least when we get here by doing a
2465 * simulated reset via debugs, so get an RPM reference.
2466 */
2467 intel_runtime_pm_get(dev_priv);
7514747d
VS
2468
2469 intel_prepare_reset(dev);
2470
17e1df07
DV
2471 /*
2472 * All state reset _must_ be completed before we update the
2473 * reset counter, for otherwise waiters might miss the reset
2474 * pending state and not properly drop locks, resulting in
2475 * deadlocks with the reset work.
2476 */
f69061be
DV
2477 ret = i915_reset(dev);
2478
7514747d 2479 intel_finish_reset(dev);
17e1df07 2480
f454c694
ID
2481 intel_runtime_pm_put(dev_priv);
2482
f69061be
DV
2483 if (ret == 0) {
2484 /*
2485 * After all the gem state is reset, increment the reset
2486 * counter and wake up everyone waiting for the reset to
2487 * complete.
2488 *
2489 * Since unlock operations are a one-sided barrier only,
2490 * we need to insert a barrier here to order any seqno
2491 * updates before
2492 * the counter increment.
2493 */
4e857c58 2494 smp_mb__before_atomic();
f69061be
DV
2495 atomic_inc(&dev_priv->gpu_error.reset_counter);
2496
5bdebb18 2497 kobject_uevent_env(&dev->primary->kdev->kobj,
f69061be 2498 KOBJ_CHANGE, reset_done_event);
1f83fee0 2499 } else {
805de8f4 2500 atomic_or(I915_WEDGED, &error->reset_counter);
f316a42c 2501 }
1f83fee0 2502
17e1df07
DV
2503 /*
2504 * Note: The wake_up also serves as a memory barrier so that
2505 * waiters see the update value of the reset counter atomic_t.
2506 */
2507 i915_error_wake_up(dev_priv, true);
f316a42c 2508 }
8a905236
JB
2509}
2510
35aed2e6 2511static void i915_report_and_clear_eir(struct drm_device *dev)
8a905236
JB
2512{
2513 struct drm_i915_private *dev_priv = dev->dev_private;
bd9854f9 2514 uint32_t instdone[I915_NUM_INSTDONE_REG];
8a905236 2515 u32 eir = I915_READ(EIR);
050ee91f 2516 int pipe, i;
8a905236 2517
35aed2e6
CW
2518 if (!eir)
2519 return;
8a905236 2520
a70491cc 2521 pr_err("render error detected, EIR: 0x%08x\n", eir);
8a905236 2522
bd9854f9
BW
2523 i915_get_extra_instdone(dev, instdone);
2524
8a905236
JB
2525 if (IS_G4X(dev)) {
2526 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2527 u32 ipeir = I915_READ(IPEIR_I965);
2528
a70491cc
JP
2529 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2530 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
050ee91f
BW
2531 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2532 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
a70491cc 2533 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
a70491cc 2534 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
8a905236 2535 I915_WRITE(IPEIR_I965, ipeir);
3143a2bf 2536 POSTING_READ(IPEIR_I965);
8a905236
JB
2537 }
2538 if (eir & GM45_ERROR_PAGE_TABLE) {
2539 u32 pgtbl_err = I915_READ(PGTBL_ER);
a70491cc
JP
2540 pr_err("page table error\n");
2541 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
8a905236 2542 I915_WRITE(PGTBL_ER, pgtbl_err);
3143a2bf 2543 POSTING_READ(PGTBL_ER);
8a905236
JB
2544 }
2545 }
2546
a6c45cf0 2547 if (!IS_GEN2(dev)) {
8a905236
JB
2548 if (eir & I915_ERROR_PAGE_TABLE) {
2549 u32 pgtbl_err = I915_READ(PGTBL_ER);
a70491cc
JP
2550 pr_err("page table error\n");
2551 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
8a905236 2552 I915_WRITE(PGTBL_ER, pgtbl_err);
3143a2bf 2553 POSTING_READ(PGTBL_ER);
8a905236
JB
2554 }
2555 }
2556
2557 if (eir & I915_ERROR_MEMORY_REFRESH) {
a70491cc 2558 pr_err("memory refresh error:\n");
055e393f 2559 for_each_pipe(dev_priv, pipe)
a70491cc 2560 pr_err("pipe %c stat: 0x%08x\n",
9db4a9c7 2561 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
8a905236
JB
2562 /* pipestat has already been acked */
2563 }
2564 if (eir & I915_ERROR_INSTRUCTION) {
a70491cc
JP
2565 pr_err("instruction error\n");
2566 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
050ee91f
BW
2567 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2568 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
a6c45cf0 2569 if (INTEL_INFO(dev)->gen < 4) {
8a905236
JB
2570 u32 ipeir = I915_READ(IPEIR);
2571
a70491cc
JP
2572 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2573 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
a70491cc 2574 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
8a905236 2575 I915_WRITE(IPEIR, ipeir);
3143a2bf 2576 POSTING_READ(IPEIR);
8a905236
JB
2577 } else {
2578 u32 ipeir = I915_READ(IPEIR_I965);
2579
a70491cc
JP
2580 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2581 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
a70491cc 2582 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
a70491cc 2583 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
8a905236 2584 I915_WRITE(IPEIR_I965, ipeir);
3143a2bf 2585 POSTING_READ(IPEIR_I965);
8a905236
JB
2586 }
2587 }
2588
2589 I915_WRITE(EIR, eir);
3143a2bf 2590 POSTING_READ(EIR);
8a905236
JB
2591 eir = I915_READ(EIR);
2592 if (eir) {
2593 /*
2594 * some errors might have become stuck,
2595 * mask them.
2596 */
2597 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2598 I915_WRITE(EMR, I915_READ(EMR) | eir);
2599 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2600 }
35aed2e6
CW
2601}
2602
2603/**
b8d24a06 2604 * i915_handle_error - handle a gpu error
35aed2e6
CW
2605 * @dev: drm device
2606 *
aafd8581 2607 * Do some basic checking of register state at error time and
35aed2e6
CW
2608 * dump it to the syslog. Also call i915_capture_error_state() to make
2609 * sure we get a record and make it available in debugfs. Fire a uevent
2610 * so userspace knows something bad happened (should trigger collection
2611 * of a ring dump etc.).
2612 */
58174462
MK
2613void i915_handle_error(struct drm_device *dev, bool wedged,
2614 const char *fmt, ...)
35aed2e6
CW
2615{
2616 struct drm_i915_private *dev_priv = dev->dev_private;
58174462
MK
2617 va_list args;
2618 char error_msg[80];
35aed2e6 2619
58174462
MK
2620 va_start(args, fmt);
2621 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2622 va_end(args);
2623
2624 i915_capture_error_state(dev, wedged, error_msg);
35aed2e6 2625 i915_report_and_clear_eir(dev);
8a905236 2626
ba1234d1 2627 if (wedged) {
805de8f4 2628 atomic_or(I915_RESET_IN_PROGRESS_FLAG,
f69061be 2629 &dev_priv->gpu_error.reset_counter);
ba1234d1 2630
11ed50ec 2631 /*
b8d24a06
MK
2632 * Wakeup waiting processes so that the reset function
2633 * i915_reset_and_wakeup doesn't deadlock trying to grab
2634 * various locks. By bumping the reset counter first, the woken
17e1df07
DV
2635 * processes will see a reset in progress and back off,
2636 * releasing their locks and then wait for the reset completion.
2637 * We must do this for _all_ gpu waiters that might hold locks
2638 * that the reset work needs to acquire.
2639 *
2640 * Note: The wake_up serves as the required memory barrier to
2641 * ensure that the waiters see the updated value of the reset
2642 * counter atomic_t.
11ed50ec 2643 */
17e1df07 2644 i915_error_wake_up(dev_priv, false);
11ed50ec
BG
2645 }
2646
b8d24a06 2647 i915_reset_and_wakeup(dev);
8a905236
JB
2648}
2649
42f52ef8
KP
2650/* Called from drm generic code, passed 'crtc' which
2651 * we use as a pipe index
2652 */
88e72717 2653static int i915_enable_vblank(struct drm_device *dev, unsigned int pipe)
0a3e67a4 2654{
2d1013dd 2655 struct drm_i915_private *dev_priv = dev->dev_private;
e9d21d7f 2656 unsigned long irqflags;
71e0ffa5 2657
1ec14ad3 2658 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
f796cf8f 2659 if (INTEL_INFO(dev)->gen >= 4)
7c463586 2660 i915_enable_pipestat(dev_priv, pipe,
755e9019 2661 PIPE_START_VBLANK_INTERRUPT_STATUS);
e9d21d7f 2662 else
7c463586 2663 i915_enable_pipestat(dev_priv, pipe,
755e9019 2664 PIPE_VBLANK_INTERRUPT_STATUS);
1ec14ad3 2665 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
8692d00e 2666
0a3e67a4
JB
2667 return 0;
2668}
2669
88e72717 2670static int ironlake_enable_vblank(struct drm_device *dev, unsigned int pipe)
f796cf8f 2671{
2d1013dd 2672 struct drm_i915_private *dev_priv = dev->dev_private;
f796cf8f 2673 unsigned long irqflags;
b518421f 2674 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
40da17c2 2675 DE_PIPE_VBLANK(pipe);
f796cf8f 2676
f796cf8f 2677 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
fbdedaea 2678 ilk_enable_display_irq(dev_priv, bit);
b1f14ad0
JB
2679 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2680
2681 return 0;
2682}
2683
88e72717 2684static int valleyview_enable_vblank(struct drm_device *dev, unsigned int pipe)
7e231dbe 2685{
2d1013dd 2686 struct drm_i915_private *dev_priv = dev->dev_private;
7e231dbe 2687 unsigned long irqflags;
7e231dbe 2688
7e231dbe 2689 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
31acc7f5 2690 i915_enable_pipestat(dev_priv, pipe,
755e9019 2691 PIPE_START_VBLANK_INTERRUPT_STATUS);
7e231dbe
JB
2692 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2693
2694 return 0;
2695}
2696
88e72717 2697static int gen8_enable_vblank(struct drm_device *dev, unsigned int pipe)
abd58f01
BW
2698{
2699 struct drm_i915_private *dev_priv = dev->dev_private;
2700 unsigned long irqflags;
abd58f01 2701
abd58f01 2702 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
013d3752 2703 bdw_enable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
abd58f01 2704 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
013d3752 2705
abd58f01
BW
2706 return 0;
2707}
2708
42f52ef8
KP
2709/* Called from drm generic code, passed 'crtc' which
2710 * we use as a pipe index
2711 */
88e72717 2712static void i915_disable_vblank(struct drm_device *dev, unsigned int pipe)
0a3e67a4 2713{
2d1013dd 2714 struct drm_i915_private *dev_priv = dev->dev_private;
e9d21d7f 2715 unsigned long irqflags;
0a3e67a4 2716
1ec14ad3 2717 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
f796cf8f 2718 i915_disable_pipestat(dev_priv, pipe,
755e9019
ID
2719 PIPE_VBLANK_INTERRUPT_STATUS |
2720 PIPE_START_VBLANK_INTERRUPT_STATUS);
f796cf8f
JB
2721 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2722}
2723
88e72717 2724static void ironlake_disable_vblank(struct drm_device *dev, unsigned int pipe)
f796cf8f 2725{
2d1013dd 2726 struct drm_i915_private *dev_priv = dev->dev_private;
f796cf8f 2727 unsigned long irqflags;
b518421f 2728 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
40da17c2 2729 DE_PIPE_VBLANK(pipe);
f796cf8f
JB
2730
2731 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
fbdedaea 2732 ilk_disable_display_irq(dev_priv, bit);
b1f14ad0
JB
2733 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2734}
2735
88e72717 2736static void valleyview_disable_vblank(struct drm_device *dev, unsigned int pipe)
7e231dbe 2737{
2d1013dd 2738 struct drm_i915_private *dev_priv = dev->dev_private;
7e231dbe 2739 unsigned long irqflags;
7e231dbe
JB
2740
2741 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
31acc7f5 2742 i915_disable_pipestat(dev_priv, pipe,
755e9019 2743 PIPE_START_VBLANK_INTERRUPT_STATUS);
7e231dbe
JB
2744 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2745}
2746
88e72717 2747static void gen8_disable_vblank(struct drm_device *dev, unsigned int pipe)
abd58f01
BW
2748{
2749 struct drm_i915_private *dev_priv = dev->dev_private;
2750 unsigned long irqflags;
abd58f01 2751
abd58f01 2752 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
013d3752 2753 bdw_disable_pipe_irq(dev_priv, pipe, GEN8_PIPE_VBLANK);
abd58f01
BW
2754 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2755}
2756
9107e9d2 2757static bool
94f7bbe1 2758ring_idle(struct intel_engine_cs *ring, u32 seqno)
9107e9d2
CW
2759{
2760 return (list_empty(&ring->request_list) ||
94f7bbe1 2761 i915_seqno_passed(seqno, ring->last_submitted_seqno));
f65d9421
BG
2762}
2763
a028c4b0
DV
2764static bool
2765ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
2766{
2767 if (INTEL_INFO(dev)->gen >= 8) {
a6cdb93a 2768 return (ipehr >> 23) == 0x1c;
a028c4b0
DV
2769 } else {
2770 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2771 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2772 MI_SEMAPHORE_REGISTER);
2773 }
2774}
2775
a4872ba6 2776static struct intel_engine_cs *
a6cdb93a 2777semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
921d42ea
DV
2778{
2779 struct drm_i915_private *dev_priv = ring->dev->dev_private;
a4872ba6 2780 struct intel_engine_cs *signaller;
921d42ea
DV
2781 int i;
2782
2783 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
a6cdb93a
RV
2784 for_each_ring(signaller, dev_priv, i) {
2785 if (ring == signaller)
2786 continue;
2787
2788 if (offset == signaller->semaphore.signal_ggtt[ring->id])
2789 return signaller;
2790 }
921d42ea
DV
2791 } else {
2792 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2793
2794 for_each_ring(signaller, dev_priv, i) {
2795 if(ring == signaller)
2796 continue;
2797
ebc348b2 2798 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
921d42ea
DV
2799 return signaller;
2800 }
2801 }
2802
a6cdb93a
RV
2803 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
2804 ring->id, ipehr, offset);
921d42ea
DV
2805
2806 return NULL;
2807}
2808
a4872ba6
OM
2809static struct intel_engine_cs *
2810semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
a24a11e6
CW
2811{
2812 struct drm_i915_private *dev_priv = ring->dev->dev_private;
88fe429d 2813 u32 cmd, ipehr, head;
a6cdb93a
RV
2814 u64 offset = 0;
2815 int i, backwards;
a24a11e6 2816
381e8ae3
TE
2817 /*
2818 * This function does not support execlist mode - any attempt to
2819 * proceed further into this function will result in a kernel panic
2820 * when dereferencing ring->buffer, which is not set up in execlist
2821 * mode.
2822 *
2823 * The correct way of doing it would be to derive the currently
2824 * executing ring buffer from the current context, which is derived
2825 * from the currently running request. Unfortunately, to get the
2826 * current request we would have to grab the struct_mutex before doing
2827 * anything else, which would be ill-advised since some other thread
2828 * might have grabbed it already and managed to hang itself, causing
2829 * the hang checker to deadlock.
2830 *
2831 * Therefore, this function does not support execlist mode in its
2832 * current form. Just return NULL and move on.
2833 */
2834 if (ring->buffer == NULL)
2835 return NULL;
2836
a24a11e6 2837 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
a028c4b0 2838 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
6274f212 2839 return NULL;
a24a11e6 2840
88fe429d
DV
2841 /*
2842 * HEAD is likely pointing to the dword after the actual command,
2843 * so scan backwards until we find the MBOX. But limit it to just 3
a6cdb93a
RV
2844 * or 4 dwords depending on the semaphore wait command size.
2845 * Note that we don't care about ACTHD here since that might
88fe429d
DV
2846 * point at at batch, and semaphores are always emitted into the
2847 * ringbuffer itself.
a24a11e6 2848 */
88fe429d 2849 head = I915_READ_HEAD(ring) & HEAD_ADDR;
a6cdb93a 2850 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
88fe429d 2851
a6cdb93a 2852 for (i = backwards; i; --i) {
88fe429d
DV
2853 /*
2854 * Be paranoid and presume the hw has gone off into the wild -
2855 * our ring is smaller than what the hardware (and hence
2856 * HEAD_ADDR) allows. Also handles wrap-around.
2857 */
ee1b1e5e 2858 head &= ring->buffer->size - 1;
88fe429d
DV
2859
2860 /* This here seems to blow up */
ee1b1e5e 2861 cmd = ioread32(ring->buffer->virtual_start + head);
a24a11e6
CW
2862 if (cmd == ipehr)
2863 break;
2864
88fe429d
DV
2865 head -= 4;
2866 }
a24a11e6 2867
88fe429d
DV
2868 if (!i)
2869 return NULL;
a24a11e6 2870
ee1b1e5e 2871 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
a6cdb93a
RV
2872 if (INTEL_INFO(ring->dev)->gen >= 8) {
2873 offset = ioread32(ring->buffer->virtual_start + head + 12);
2874 offset <<= 32;
2875 offset = ioread32(ring->buffer->virtual_start + head + 8);
2876 }
2877 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
a24a11e6
CW
2878}
2879
a4872ba6 2880static int semaphore_passed(struct intel_engine_cs *ring)
6274f212
CW
2881{
2882 struct drm_i915_private *dev_priv = ring->dev->dev_private;
a4872ba6 2883 struct intel_engine_cs *signaller;
a0d036b0 2884 u32 seqno;
6274f212 2885
4be17381 2886 ring->hangcheck.deadlock++;
6274f212
CW
2887
2888 signaller = semaphore_waits_for(ring, &seqno);
4be17381
CW
2889 if (signaller == NULL)
2890 return -1;
2891
2892 /* Prevent pathological recursion due to driver bugs */
2893 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
6274f212
CW
2894 return -1;
2895
4be17381
CW
2896 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
2897 return 1;
2898
a0d036b0
CW
2899 /* cursory check for an unkickable deadlock */
2900 if (I915_READ_CTL(signaller) & RING_WAIT_SEMAPHORE &&
2901 semaphore_passed(signaller) < 0)
4be17381
CW
2902 return -1;
2903
2904 return 0;
6274f212
CW
2905}
2906
2907static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2908{
a4872ba6 2909 struct intel_engine_cs *ring;
6274f212
CW
2910 int i;
2911
2912 for_each_ring(ring, dev_priv, i)
4be17381 2913 ring->hangcheck.deadlock = 0;
6274f212
CW
2914}
2915
ad8beaea 2916static enum intel_ring_hangcheck_action
a4872ba6 2917ring_stuck(struct intel_engine_cs *ring, u64 acthd)
1ec14ad3
CW
2918{
2919 struct drm_device *dev = ring->dev;
2920 struct drm_i915_private *dev_priv = dev->dev_private;
9107e9d2
CW
2921 u32 tmp;
2922
f260fe7b
MK
2923 if (acthd != ring->hangcheck.acthd) {
2924 if (acthd > ring->hangcheck.max_acthd) {
2925 ring->hangcheck.max_acthd = acthd;
2926 return HANGCHECK_ACTIVE;
2927 }
2928
2929 return HANGCHECK_ACTIVE_LOOP;
2930 }
6274f212 2931
9107e9d2 2932 if (IS_GEN2(dev))
f2f4d82f 2933 return HANGCHECK_HUNG;
9107e9d2
CW
2934
2935 /* Is the chip hanging on a WAIT_FOR_EVENT?
2936 * If so we can simply poke the RB_WAIT bit
2937 * and break the hang. This should work on
2938 * all but the second generation chipsets.
2939 */
2940 tmp = I915_READ_CTL(ring);
1ec14ad3 2941 if (tmp & RING_WAIT) {
58174462
MK
2942 i915_handle_error(dev, false,
2943 "Kicking stuck wait on %s",
2944 ring->name);
1ec14ad3 2945 I915_WRITE_CTL(ring, tmp);
f2f4d82f 2946 return HANGCHECK_KICK;
6274f212
CW
2947 }
2948
2949 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2950 switch (semaphore_passed(ring)) {
2951 default:
f2f4d82f 2952 return HANGCHECK_HUNG;
6274f212 2953 case 1:
58174462
MK
2954 i915_handle_error(dev, false,
2955 "Kicking stuck semaphore on %s",
2956 ring->name);
6274f212 2957 I915_WRITE_CTL(ring, tmp);
f2f4d82f 2958 return HANGCHECK_KICK;
6274f212 2959 case 0:
f2f4d82f 2960 return HANGCHECK_WAIT;
6274f212 2961 }
9107e9d2 2962 }
ed5cbb03 2963
f2f4d82f 2964 return HANGCHECK_HUNG;
ed5cbb03
MK
2965}
2966
737b1506 2967/*
f65d9421 2968 * This is called when the chip hasn't reported back with completed
05407ff8
MK
2969 * batchbuffers in a long time. We keep track per ring seqno progress and
2970 * if there are no progress, hangcheck score for that ring is increased.
2971 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2972 * we kick the ring. If we see no progress on three subsequent calls
2973 * we assume chip is wedged and try to fix it by resetting the chip.
f65d9421 2974 */
737b1506 2975static void i915_hangcheck_elapsed(struct work_struct *work)
f65d9421 2976{
737b1506
CW
2977 struct drm_i915_private *dev_priv =
2978 container_of(work, typeof(*dev_priv),
2979 gpu_error.hangcheck_work.work);
2980 struct drm_device *dev = dev_priv->dev;
a4872ba6 2981 struct intel_engine_cs *ring;
b4519513 2982 int i;
05407ff8 2983 int busy_count = 0, rings_hung = 0;
9107e9d2
CW
2984 bool stuck[I915_NUM_RINGS] = { 0 };
2985#define BUSY 1
2986#define KICK 5
2987#define HUNG 20
893eead0 2988
d330a953 2989 if (!i915.enable_hangcheck)
3e0dc6b0
BW
2990 return;
2991
b4519513 2992 for_each_ring(ring, dev_priv, i) {
50877445
CW
2993 u64 acthd;
2994 u32 seqno;
9107e9d2 2995 bool busy = true;
05407ff8 2996
6274f212
CW
2997 semaphore_clear_deadlocks(dev_priv);
2998
05407ff8
MK
2999 seqno = ring->get_seqno(ring, false);
3000 acthd = intel_ring_get_active_head(ring);
b4519513 3001
9107e9d2 3002 if (ring->hangcheck.seqno == seqno) {
94f7bbe1 3003 if (ring_idle(ring, seqno)) {
da661464
MK
3004 ring->hangcheck.action = HANGCHECK_IDLE;
3005
9107e9d2
CW
3006 if (waitqueue_active(&ring->irq_queue)) {
3007 /* Issue a wake-up to catch stuck h/w. */
094f9a54 3008 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
f4adcd24
DV
3009 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
3010 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
3011 ring->name);
3012 else
3013 DRM_INFO("Fake missed irq on %s\n",
3014 ring->name);
094f9a54
CW
3015 wake_up_all(&ring->irq_queue);
3016 }
3017 /* Safeguard against driver failure */
3018 ring->hangcheck.score += BUSY;
9107e9d2
CW
3019 } else
3020 busy = false;
05407ff8 3021 } else {
6274f212
CW
3022 /* We always increment the hangcheck score
3023 * if the ring is busy and still processing
3024 * the same request, so that no single request
3025 * can run indefinitely (such as a chain of
3026 * batches). The only time we do not increment
3027 * the hangcheck score on this ring, if this
3028 * ring is in a legitimate wait for another
3029 * ring. In that case the waiting ring is a
3030 * victim and we want to be sure we catch the
3031 * right culprit. Then every time we do kick
3032 * the ring, add a small increment to the
3033 * score so that we can catch a batch that is
3034 * being repeatedly kicked and so responsible
3035 * for stalling the machine.
3036 */
ad8beaea
MK
3037 ring->hangcheck.action = ring_stuck(ring,
3038 acthd);
3039
3040 switch (ring->hangcheck.action) {
da661464 3041 case HANGCHECK_IDLE:
f2f4d82f 3042 case HANGCHECK_WAIT:
f2f4d82f 3043 case HANGCHECK_ACTIVE:
f260fe7b
MK
3044 break;
3045 case HANGCHECK_ACTIVE_LOOP:
ea04cb31 3046 ring->hangcheck.score += BUSY;
6274f212 3047 break;
f2f4d82f 3048 case HANGCHECK_KICK:
ea04cb31 3049 ring->hangcheck.score += KICK;
6274f212 3050 break;
f2f4d82f 3051 case HANGCHECK_HUNG:
ea04cb31 3052 ring->hangcheck.score += HUNG;
6274f212
CW
3053 stuck[i] = true;
3054 break;
3055 }
05407ff8 3056 }
9107e9d2 3057 } else {
da661464
MK
3058 ring->hangcheck.action = HANGCHECK_ACTIVE;
3059
9107e9d2
CW
3060 /* Gradually reduce the count so that we catch DoS
3061 * attempts across multiple batches.
3062 */
3063 if (ring->hangcheck.score > 0)
3064 ring->hangcheck.score--;
f260fe7b
MK
3065
3066 ring->hangcheck.acthd = ring->hangcheck.max_acthd = 0;
d1e61e7f
CW
3067 }
3068
05407ff8
MK
3069 ring->hangcheck.seqno = seqno;
3070 ring->hangcheck.acthd = acthd;
9107e9d2 3071 busy_count += busy;
893eead0 3072 }
b9201c14 3073
92cab734 3074 for_each_ring(ring, dev_priv, i) {
b6b0fac0 3075 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
b8d88d1d
DV
3076 DRM_INFO("%s on %s\n",
3077 stuck[i] ? "stuck" : "no progress",
3078 ring->name);
a43adf07 3079 rings_hung++;
92cab734
MK
3080 }
3081 }
3082
05407ff8 3083 if (rings_hung)
58174462 3084 return i915_handle_error(dev, true, "Ring hung");
f65d9421 3085
05407ff8
MK
3086 if (busy_count)
3087 /* Reset timer case chip hangs without another request
3088 * being added */
10cd45b6
MK
3089 i915_queue_hangcheck(dev);
3090}
3091
3092void i915_queue_hangcheck(struct drm_device *dev)
3093{
737b1506 3094 struct i915_gpu_error *e = &to_i915(dev)->gpu_error;
672e7b7c 3095
d330a953 3096 if (!i915.enable_hangcheck)
10cd45b6
MK
3097 return;
3098
737b1506
CW
3099 /* Don't continually defer the hangcheck so that it is always run at
3100 * least once after work has been scheduled on any ring. Otherwise,
3101 * we will ignore a hung ring if a second ring is kept busy.
3102 */
3103
3104 queue_delayed_work(e->hangcheck_wq, &e->hangcheck_work,
3105 round_jiffies_up_relative(DRM_I915_HANGCHECK_JIFFIES));
f65d9421
BG
3106}
3107
1c69eb42 3108static void ibx_irq_reset(struct drm_device *dev)
91738a95
PZ
3109{
3110 struct drm_i915_private *dev_priv = dev->dev_private;
3111
3112 if (HAS_PCH_NOP(dev))
3113 return;
3114
f86f3fb0 3115 GEN5_IRQ_RESET(SDE);
105b122e
PZ
3116
3117 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3118 I915_WRITE(SERR_INT, 0xffffffff);
622364b6 3119}
105b122e 3120
622364b6
PZ
3121/*
3122 * SDEIER is also touched by the interrupt handler to work around missed PCH
3123 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3124 * instead we unconditionally enable all PCH interrupt sources here, but then
3125 * only unmask them as needed with SDEIMR.
3126 *
3127 * This function needs to be called before interrupts are enabled.
3128 */
3129static void ibx_irq_pre_postinstall(struct drm_device *dev)
3130{
3131 struct drm_i915_private *dev_priv = dev->dev_private;
3132
3133 if (HAS_PCH_NOP(dev))
3134 return;
3135
3136 WARN_ON(I915_READ(SDEIER) != 0);
91738a95
PZ
3137 I915_WRITE(SDEIER, 0xffffffff);
3138 POSTING_READ(SDEIER);
3139}
3140
7c4d664e 3141static void gen5_gt_irq_reset(struct drm_device *dev)
d18ea1b5
DV
3142{
3143 struct drm_i915_private *dev_priv = dev->dev_private;
3144
f86f3fb0 3145 GEN5_IRQ_RESET(GT);
a9d356a6 3146 if (INTEL_INFO(dev)->gen >= 6)
f86f3fb0 3147 GEN5_IRQ_RESET(GEN6_PM);
d18ea1b5
DV
3148}
3149
1da177e4
LT
3150/* drm_dma.h hooks
3151*/
be30b29f 3152static void ironlake_irq_reset(struct drm_device *dev)
036a4a7d 3153{
2d1013dd 3154 struct drm_i915_private *dev_priv = dev->dev_private;
036a4a7d 3155
0c841212 3156 I915_WRITE(HWSTAM, 0xffffffff);
bdfcdb63 3157
f86f3fb0 3158 GEN5_IRQ_RESET(DE);
c6d954c1
PZ
3159 if (IS_GEN7(dev))
3160 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
036a4a7d 3161
7c4d664e 3162 gen5_gt_irq_reset(dev);
c650156a 3163
1c69eb42 3164 ibx_irq_reset(dev);
7d99163d 3165}
c650156a 3166
70591a41
VS
3167static void vlv_display_irq_reset(struct drm_i915_private *dev_priv)
3168{
3169 enum pipe pipe;
3170
0706f17c 3171 i915_hotplug_interrupt_update(dev_priv, 0xFFFFFFFF, 0);
70591a41
VS
3172 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3173
3174 for_each_pipe(dev_priv, pipe)
3175 I915_WRITE(PIPESTAT(pipe), 0xffff);
3176
3177 GEN5_IRQ_RESET(VLV_);
3178}
3179
7e231dbe
JB
3180static void valleyview_irq_preinstall(struct drm_device *dev)
3181{
2d1013dd 3182 struct drm_i915_private *dev_priv = dev->dev_private;
7e231dbe 3183
7e231dbe
JB
3184 /* VLV magic */
3185 I915_WRITE(VLV_IMR, 0);
3186 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3187 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3188 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3189
7c4d664e 3190 gen5_gt_irq_reset(dev);
7e231dbe 3191
7c4cde39 3192 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
7e231dbe 3193
70591a41 3194 vlv_display_irq_reset(dev_priv);
7e231dbe
JB
3195}
3196
d6e3cca3
DV
3197static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3198{
3199 GEN8_IRQ_RESET_NDX(GT, 0);
3200 GEN8_IRQ_RESET_NDX(GT, 1);
3201 GEN8_IRQ_RESET_NDX(GT, 2);
3202 GEN8_IRQ_RESET_NDX(GT, 3);
3203}
3204
823f6b38 3205static void gen8_irq_reset(struct drm_device *dev)
abd58f01
BW
3206{
3207 struct drm_i915_private *dev_priv = dev->dev_private;
3208 int pipe;
3209
abd58f01
BW
3210 I915_WRITE(GEN8_MASTER_IRQ, 0);
3211 POSTING_READ(GEN8_MASTER_IRQ);
3212
d6e3cca3 3213 gen8_gt_irq_reset(dev_priv);
abd58f01 3214
055e393f 3215 for_each_pipe(dev_priv, pipe)
f458ebbc
DV
3216 if (intel_display_power_is_enabled(dev_priv,
3217 POWER_DOMAIN_PIPE(pipe)))
813bde43 3218 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
abd58f01 3219
f86f3fb0
PZ
3220 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3221 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3222 GEN5_IRQ_RESET(GEN8_PCU_);
abd58f01 3223
266ea3d9
SS
3224 if (HAS_PCH_SPLIT(dev))
3225 ibx_irq_reset(dev);
abd58f01 3226}
09f2344d 3227
4c6c03be
DL
3228void gen8_irq_power_well_post_enable(struct drm_i915_private *dev_priv,
3229 unsigned int pipe_mask)
d49bdb0e 3230{
1180e206 3231 uint32_t extra_ier = GEN8_PIPE_VBLANK | GEN8_PIPE_FIFO_UNDERRUN;
d49bdb0e 3232
13321786 3233 spin_lock_irq(&dev_priv->irq_lock);
d14c0343
DL
3234 if (pipe_mask & 1 << PIPE_A)
3235 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_A,
3236 dev_priv->de_irq_mask[PIPE_A],
3237 ~dev_priv->de_irq_mask[PIPE_A] | extra_ier);
4c6c03be
DL
3238 if (pipe_mask & 1 << PIPE_B)
3239 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_B,
3240 dev_priv->de_irq_mask[PIPE_B],
3241 ~dev_priv->de_irq_mask[PIPE_B] | extra_ier);
3242 if (pipe_mask & 1 << PIPE_C)
3243 GEN8_IRQ_INIT_NDX(DE_PIPE, PIPE_C,
3244 dev_priv->de_irq_mask[PIPE_C],
3245 ~dev_priv->de_irq_mask[PIPE_C] | extra_ier);
13321786 3246 spin_unlock_irq(&dev_priv->irq_lock);
d49bdb0e
PZ
3247}
3248
43f328d7
VS
3249static void cherryview_irq_preinstall(struct drm_device *dev)
3250{
3251 struct drm_i915_private *dev_priv = dev->dev_private;
43f328d7
VS
3252
3253 I915_WRITE(GEN8_MASTER_IRQ, 0);
3254 POSTING_READ(GEN8_MASTER_IRQ);
3255
d6e3cca3 3256 gen8_gt_irq_reset(dev_priv);
43f328d7
VS
3257
3258 GEN5_IRQ_RESET(GEN8_PCU_);
3259
43f328d7
VS
3260 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3261
70591a41 3262 vlv_display_irq_reset(dev_priv);
43f328d7
VS
3263}
3264
87a02106
VS
3265static u32 intel_hpd_enabled_irqs(struct drm_device *dev,
3266 const u32 hpd[HPD_NUM_PINS])
3267{
3268 struct drm_i915_private *dev_priv = to_i915(dev);
3269 struct intel_encoder *encoder;
3270 u32 enabled_irqs = 0;
3271
3272 for_each_intel_encoder(dev, encoder)
3273 if (dev_priv->hotplug.stats[encoder->hpd_pin].state == HPD_ENABLED)
3274 enabled_irqs |= hpd[encoder->hpd_pin];
3275
3276 return enabled_irqs;
3277}
3278
82a28bcf 3279static void ibx_hpd_irq_setup(struct drm_device *dev)
7fe0b973 3280{
2d1013dd 3281 struct drm_i915_private *dev_priv = dev->dev_private;
87a02106 3282 u32 hotplug_irqs, hotplug, enabled_irqs;
82a28bcf
DV
3283
3284 if (HAS_PCH_IBX(dev)) {
fee884ed 3285 hotplug_irqs = SDE_HOTPLUG_MASK;
87a02106 3286 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ibx);
82a28bcf 3287 } else {
fee884ed 3288 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
87a02106 3289 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_cpt);
82a28bcf 3290 }
7fe0b973 3291
fee884ed 3292 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
82a28bcf
DV
3293
3294 /*
3295 * Enable digital hotplug on the PCH, and configure the DP short pulse
6dbf30ce
VS
3296 * duration to 2ms (which is the minimum in the Display Port spec).
3297 * The pulse duration bits are reserved on LPT+.
82a28bcf 3298 */
7fe0b973
KP
3299 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3300 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3301 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3302 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3303 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
0b2eb33e
VS
3304 /*
3305 * When CPU and PCH are on the same package, port A
3306 * HPD must be enabled in both north and south.
3307 */
3308 if (HAS_PCH_LPT_LP(dev))
3309 hotplug |= PORTA_HOTPLUG_ENABLE;
7fe0b973 3310 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
6dbf30ce 3311}
26951caf 3312
6dbf30ce
VS
3313static void spt_hpd_irq_setup(struct drm_device *dev)
3314{
3315 struct drm_i915_private *dev_priv = dev->dev_private;
3316 u32 hotplug_irqs, hotplug, enabled_irqs;
3317
3318 hotplug_irqs = SDE_HOTPLUG_MASK_SPT;
3319 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_spt);
3320
3321 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
3322
3323 /* Enable digital hotplug on the PCH */
3324 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3325 hotplug |= PORTD_HOTPLUG_ENABLE | PORTC_HOTPLUG_ENABLE |
74c0b395 3326 PORTB_HOTPLUG_ENABLE | PORTA_HOTPLUG_ENABLE;
6dbf30ce
VS
3327 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3328
3329 hotplug = I915_READ(PCH_PORT_HOTPLUG2);
3330 hotplug |= PORTE_HOTPLUG_ENABLE;
3331 I915_WRITE(PCH_PORT_HOTPLUG2, hotplug);
7fe0b973
KP
3332}
3333
e4ce95aa
VS
3334static void ilk_hpd_irq_setup(struct drm_device *dev)
3335{
3336 struct drm_i915_private *dev_priv = dev->dev_private;
3337 u32 hotplug_irqs, hotplug, enabled_irqs;
3338
3a3b3c7d
VS
3339 if (INTEL_INFO(dev)->gen >= 8) {
3340 hotplug_irqs = GEN8_PORT_DP_A_HOTPLUG;
3341 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_bdw);
3342
3343 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
3344 } else if (INTEL_INFO(dev)->gen >= 7) {
23bb4cb5
VS
3345 hotplug_irqs = DE_DP_A_HOTPLUG_IVB;
3346 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ivb);
3a3b3c7d
VS
3347
3348 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
23bb4cb5
VS
3349 } else {
3350 hotplug_irqs = DE_DP_A_HOTPLUG;
3351 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_ilk);
e4ce95aa 3352
3a3b3c7d
VS
3353 ilk_update_display_irq(dev_priv, hotplug_irqs, enabled_irqs);
3354 }
e4ce95aa
VS
3355
3356 /*
3357 * Enable digital hotplug on the CPU, and configure the DP short pulse
3358 * duration to 2ms (which is the minimum in the Display Port spec)
23bb4cb5 3359 * The pulse duration bits are reserved on HSW+.
e4ce95aa
VS
3360 */
3361 hotplug = I915_READ(DIGITAL_PORT_HOTPLUG_CNTRL);
3362 hotplug &= ~DIGITAL_PORTA_PULSE_DURATION_MASK;
3363 hotplug |= DIGITAL_PORTA_HOTPLUG_ENABLE | DIGITAL_PORTA_PULSE_DURATION_2ms;
3364 I915_WRITE(DIGITAL_PORT_HOTPLUG_CNTRL, hotplug);
3365
3366 ibx_hpd_irq_setup(dev);
3367}
3368
e0a20ad7
SS
3369static void bxt_hpd_irq_setup(struct drm_device *dev)
3370{
3371 struct drm_i915_private *dev_priv = dev->dev_private;
a52bb15b 3372 u32 hotplug_irqs, hotplug, enabled_irqs;
e0a20ad7 3373
a52bb15b
VS
3374 enabled_irqs = intel_hpd_enabled_irqs(dev, hpd_bxt);
3375 hotplug_irqs = BXT_DE_PORT_HOTPLUG_MASK;
e0a20ad7 3376
a52bb15b 3377 bdw_update_port_irq(dev_priv, hotplug_irqs, enabled_irqs);
e0a20ad7 3378
a52bb15b
VS
3379 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3380 hotplug |= PORTC_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE |
3381 PORTA_HOTPLUG_ENABLE;
3382 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
e0a20ad7
SS
3383}
3384
d46da437
PZ
3385static void ibx_irq_postinstall(struct drm_device *dev)
3386{
2d1013dd 3387 struct drm_i915_private *dev_priv = dev->dev_private;
82a28bcf 3388 u32 mask;
e5868a31 3389
692a04cf
DV
3390 if (HAS_PCH_NOP(dev))
3391 return;
3392
105b122e 3393 if (HAS_PCH_IBX(dev))
5c673b60 3394 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
105b122e 3395 else
5c673b60 3396 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
8664281b 3397
b51a2842 3398 gen5_assert_iir_is_zero(dev_priv, SDEIIR);
d46da437 3399 I915_WRITE(SDEIMR, ~mask);
d46da437
PZ
3400}
3401
0a9a8c91
DV
3402static void gen5_gt_irq_postinstall(struct drm_device *dev)
3403{
3404 struct drm_i915_private *dev_priv = dev->dev_private;
3405 u32 pm_irqs, gt_irqs;
3406
3407 pm_irqs = gt_irqs = 0;
3408
3409 dev_priv->gt_irq_mask = ~0;
040d2baa 3410 if (HAS_L3_DPF(dev)) {
0a9a8c91 3411 /* L3 parity interrupt is always unmasked. */
35a85ac6
BW
3412 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3413 gt_irqs |= GT_PARITY_ERROR(dev);
0a9a8c91
DV
3414 }
3415
3416 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3417 if (IS_GEN5(dev)) {
3418 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3419 ILK_BSD_USER_INTERRUPT;
3420 } else {
3421 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3422 }
3423
35079899 3424 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
0a9a8c91
DV
3425
3426 if (INTEL_INFO(dev)->gen >= 6) {
78e68d36
ID
3427 /*
3428 * RPS interrupts will get enabled/disabled on demand when RPS
3429 * itself is enabled/disabled.
3430 */
0a9a8c91
DV
3431 if (HAS_VEBOX(dev))
3432 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3433
605cd25b 3434 dev_priv->pm_irq_mask = 0xffffffff;
35079899 3435 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
0a9a8c91
DV
3436 }
3437}
3438
f71d4af4 3439static int ironlake_irq_postinstall(struct drm_device *dev)
036a4a7d 3440{
2d1013dd 3441 struct drm_i915_private *dev_priv = dev->dev_private;
8e76f8dc
PZ
3442 u32 display_mask, extra_mask;
3443
3444 if (INTEL_INFO(dev)->gen >= 7) {
3445 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3446 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3447 DE_PLANEB_FLIP_DONE_IVB |
5c673b60 3448 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
8e76f8dc 3449 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
23bb4cb5
VS
3450 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB |
3451 DE_DP_A_HOTPLUG_IVB);
8e76f8dc
PZ
3452 } else {
3453 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3454 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
5b3a856b 3455 DE_AUX_CHANNEL_A |
5b3a856b
DV
3456 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3457 DE_POISON);
e4ce95aa
VS
3458 extra_mask = (DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3459 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
3460 DE_DP_A_HOTPLUG);
8e76f8dc 3461 }
036a4a7d 3462
1ec14ad3 3463 dev_priv->irq_mask = ~display_mask;
036a4a7d 3464
0c841212
PZ
3465 I915_WRITE(HWSTAM, 0xeffe);
3466
622364b6
PZ
3467 ibx_irq_pre_postinstall(dev);
3468
35079899 3469 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
036a4a7d 3470
0a9a8c91 3471 gen5_gt_irq_postinstall(dev);
036a4a7d 3472
d46da437 3473 ibx_irq_postinstall(dev);
7fe0b973 3474
f97108d1 3475 if (IS_IRONLAKE_M(dev)) {
6005ce42
DV
3476 /* Enable PCU event interrupts
3477 *
3478 * spinlocking not required here for correctness since interrupt
4bc9d430
DV
3479 * setup is guaranteed to run in single-threaded context. But we
3480 * need it to make the assert_spin_locked happy. */
d6207435 3481 spin_lock_irq(&dev_priv->irq_lock);
fbdedaea 3482 ilk_enable_display_irq(dev_priv, DE_PCU_EVENT);
d6207435 3483 spin_unlock_irq(&dev_priv->irq_lock);
f97108d1
JB
3484 }
3485
036a4a7d
ZW
3486 return 0;
3487}
3488
f8b79e58
ID
3489static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3490{
3491 u32 pipestat_mask;
3492 u32 iir_mask;
120dda4f 3493 enum pipe pipe;
f8b79e58
ID
3494
3495 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3496 PIPE_FIFO_UNDERRUN_STATUS;
3497
120dda4f
VS
3498 for_each_pipe(dev_priv, pipe)
3499 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
f8b79e58
ID
3500 POSTING_READ(PIPESTAT(PIPE_A));
3501
3502 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3503 PIPE_CRC_DONE_INTERRUPT_STATUS;
3504
120dda4f
VS
3505 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3506 for_each_pipe(dev_priv, pipe)
3507 i915_enable_pipestat(dev_priv, pipe, pipestat_mask);
f8b79e58
ID
3508
3509 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3510 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3511 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
120dda4f
VS
3512 if (IS_CHERRYVIEW(dev_priv))
3513 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
f8b79e58
ID
3514 dev_priv->irq_mask &= ~iir_mask;
3515
3516 I915_WRITE(VLV_IIR, iir_mask);
3517 I915_WRITE(VLV_IIR, iir_mask);
f8b79e58 3518 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
76e41860
VS
3519 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3520 POSTING_READ(VLV_IMR);
f8b79e58
ID
3521}
3522
3523static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3524{
3525 u32 pipestat_mask;
3526 u32 iir_mask;
120dda4f 3527 enum pipe pipe;
f8b79e58
ID
3528
3529 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3530 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
6c7fba04 3531 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
120dda4f
VS
3532 if (IS_CHERRYVIEW(dev_priv))
3533 iir_mask |= I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
f8b79e58
ID
3534
3535 dev_priv->irq_mask |= iir_mask;
f8b79e58 3536 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
76e41860 3537 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
f8b79e58
ID
3538 I915_WRITE(VLV_IIR, iir_mask);
3539 I915_WRITE(VLV_IIR, iir_mask);
3540 POSTING_READ(VLV_IIR);
3541
3542 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3543 PIPE_CRC_DONE_INTERRUPT_STATUS;
3544
120dda4f
VS
3545 i915_disable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
3546 for_each_pipe(dev_priv, pipe)
3547 i915_disable_pipestat(dev_priv, pipe, pipestat_mask);
f8b79e58
ID
3548
3549 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3550 PIPE_FIFO_UNDERRUN_STATUS;
120dda4f
VS
3551
3552 for_each_pipe(dev_priv, pipe)
3553 I915_WRITE(PIPESTAT(pipe), pipestat_mask);
f8b79e58
ID
3554 POSTING_READ(PIPESTAT(PIPE_A));
3555}
3556
3557void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3558{
3559 assert_spin_locked(&dev_priv->irq_lock);
3560
3561 if (dev_priv->display_irqs_enabled)
3562 return;
3563
3564 dev_priv->display_irqs_enabled = true;
3565
950eabaf 3566 if (intel_irqs_enabled(dev_priv))
f8b79e58
ID
3567 valleyview_display_irqs_install(dev_priv);
3568}
3569
3570void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3571{
3572 assert_spin_locked(&dev_priv->irq_lock);
3573
3574 if (!dev_priv->display_irqs_enabled)
3575 return;
3576
3577 dev_priv->display_irqs_enabled = false;
3578
950eabaf 3579 if (intel_irqs_enabled(dev_priv))
f8b79e58
ID
3580 valleyview_display_irqs_uninstall(dev_priv);
3581}
3582
0e6c9a9e 3583static void vlv_display_irq_postinstall(struct drm_i915_private *dev_priv)
7e231dbe 3584{
f8b79e58 3585 dev_priv->irq_mask = ~0;
7e231dbe 3586
0706f17c 3587 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
20afbda2
DV
3588 POSTING_READ(PORT_HOTPLUG_EN);
3589
7e231dbe 3590 I915_WRITE(VLV_IIR, 0xffffffff);
76e41860
VS
3591 I915_WRITE(VLV_IIR, 0xffffffff);
3592 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3593 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3594 POSTING_READ(VLV_IMR);
7e231dbe 3595
b79480ba
DV
3596 /* Interrupt setup is already guaranteed to be single-threaded, this is
3597 * just to make the assert_spin_locked check happy. */
d6207435 3598 spin_lock_irq(&dev_priv->irq_lock);
f8b79e58
ID
3599 if (dev_priv->display_irqs_enabled)
3600 valleyview_display_irqs_install(dev_priv);
d6207435 3601 spin_unlock_irq(&dev_priv->irq_lock);
0e6c9a9e
VS
3602}
3603
3604static int valleyview_irq_postinstall(struct drm_device *dev)
3605{
3606 struct drm_i915_private *dev_priv = dev->dev_private;
3607
3608 vlv_display_irq_postinstall(dev_priv);
7e231dbe 3609
0a9a8c91 3610 gen5_gt_irq_postinstall(dev);
7e231dbe
JB
3611
3612 /* ack & enable invalid PTE error interrupts */
3613#if 0 /* FIXME: add support to irq handler for checking these bits */
3614 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3615 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3616#endif
3617
3618 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
20afbda2
DV
3619
3620 return 0;
3621}
3622
abd58f01
BW
3623static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3624{
abd58f01
BW
3625 /* These are interrupts we'll toggle with the ring mask register */
3626 uint32_t gt_interrupts[] = {
3627 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
73d477f6 3628 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
abd58f01 3629 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
73d477f6
OM
3630 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT |
3631 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
abd58f01 3632 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
73d477f6
OM
3633 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3634 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT |
3635 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
abd58f01 3636 0,
73d477f6
OM
3637 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT |
3638 GT_CONTEXT_SWITCH_INTERRUPT << GEN8_VECS_IRQ_SHIFT
abd58f01
BW
3639 };
3640
0961021a 3641 dev_priv->pm_irq_mask = 0xffffffff;
9a2d2d87
D
3642 GEN8_IRQ_INIT_NDX(GT, 0, ~gt_interrupts[0], gt_interrupts[0]);
3643 GEN8_IRQ_INIT_NDX(GT, 1, ~gt_interrupts[1], gt_interrupts[1]);
78e68d36
ID
3644 /*
3645 * RPS interrupts will get enabled/disabled on demand when RPS itself
3646 * is enabled/disabled.
3647 */
3648 GEN8_IRQ_INIT_NDX(GT, 2, dev_priv->pm_irq_mask, 0);
9a2d2d87 3649 GEN8_IRQ_INIT_NDX(GT, 3, ~gt_interrupts[3], gt_interrupts[3]);
abd58f01
BW
3650}
3651
3652static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3653{
770de83d
DL
3654 uint32_t de_pipe_masked = GEN8_PIPE_CDCLK_CRC_DONE;
3655 uint32_t de_pipe_enables;
3a3b3c7d
VS
3656 u32 de_port_masked = GEN8_AUX_CHANNEL_A;
3657 u32 de_port_enables;
3658 enum pipe pipe;
770de83d 3659
b4834a50 3660 if (INTEL_INFO(dev_priv)->gen >= 9) {
770de83d
DL
3661 de_pipe_masked |= GEN9_PIPE_PLANE1_FLIP_DONE |
3662 GEN9_DE_PIPE_IRQ_FAULT_ERRORS;
3a3b3c7d
VS
3663 de_port_masked |= GEN9_AUX_CHANNEL_B | GEN9_AUX_CHANNEL_C |
3664 GEN9_AUX_CHANNEL_D;
9e63743e 3665 if (IS_BROXTON(dev_priv))
3a3b3c7d
VS
3666 de_port_masked |= BXT_DE_PORT_GMBUS;
3667 } else {
770de83d
DL
3668 de_pipe_masked |= GEN8_PIPE_PRIMARY_FLIP_DONE |
3669 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
3a3b3c7d 3670 }
770de83d
DL
3671
3672 de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3673 GEN8_PIPE_FIFO_UNDERRUN;
3674
3a3b3c7d 3675 de_port_enables = de_port_masked;
a52bb15b
VS
3676 if (IS_BROXTON(dev_priv))
3677 de_port_enables |= BXT_DE_PORT_HOTPLUG_MASK;
3678 else if (IS_BROADWELL(dev_priv))
3a3b3c7d
VS
3679 de_port_enables |= GEN8_PORT_DP_A_HOTPLUG;
3680
13b3a0a7
DV
3681 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3682 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3683 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
abd58f01 3684
055e393f 3685 for_each_pipe(dev_priv, pipe)
f458ebbc 3686 if (intel_display_power_is_enabled(dev_priv,
813bde43
PZ
3687 POWER_DOMAIN_PIPE(pipe)))
3688 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe,
3689 dev_priv->de_irq_mask[pipe],
3690 de_pipe_enables);
abd58f01 3691
3a3b3c7d 3692 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~de_port_masked, de_port_enables);
abd58f01
BW
3693}
3694
3695static int gen8_irq_postinstall(struct drm_device *dev)
3696{
3697 struct drm_i915_private *dev_priv = dev->dev_private;
3698
266ea3d9
SS
3699 if (HAS_PCH_SPLIT(dev))
3700 ibx_irq_pre_postinstall(dev);
622364b6 3701
abd58f01
BW
3702 gen8_gt_irq_postinstall(dev_priv);
3703 gen8_de_irq_postinstall(dev_priv);
3704
266ea3d9
SS
3705 if (HAS_PCH_SPLIT(dev))
3706 ibx_irq_postinstall(dev);
abd58f01
BW
3707
3708 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3709 POSTING_READ(GEN8_MASTER_IRQ);
3710
3711 return 0;
3712}
3713
43f328d7
VS
3714static int cherryview_irq_postinstall(struct drm_device *dev)
3715{
3716 struct drm_i915_private *dev_priv = dev->dev_private;
43f328d7 3717
c2b66797 3718 vlv_display_irq_postinstall(dev_priv);
43f328d7
VS
3719
3720 gen8_gt_irq_postinstall(dev_priv);
3721
3722 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3723 POSTING_READ(GEN8_MASTER_IRQ);
3724
3725 return 0;
3726}
3727
abd58f01
BW
3728static void gen8_irq_uninstall(struct drm_device *dev)
3729{
3730 struct drm_i915_private *dev_priv = dev->dev_private;
abd58f01
BW
3731
3732 if (!dev_priv)
3733 return;
3734
823f6b38 3735 gen8_irq_reset(dev);
abd58f01
BW
3736}
3737
8ea0be4f
VS
3738static void vlv_display_irq_uninstall(struct drm_i915_private *dev_priv)
3739{
3740 /* Interrupt setup is already guaranteed to be single-threaded, this is
3741 * just to make the assert_spin_locked check happy. */
3742 spin_lock_irq(&dev_priv->irq_lock);
3743 if (dev_priv->display_irqs_enabled)
3744 valleyview_display_irqs_uninstall(dev_priv);
3745 spin_unlock_irq(&dev_priv->irq_lock);
3746
3747 vlv_display_irq_reset(dev_priv);
3748
c352d1ba 3749 dev_priv->irq_mask = ~0;
8ea0be4f
VS
3750}
3751
7e231dbe
JB
3752static void valleyview_irq_uninstall(struct drm_device *dev)
3753{
2d1013dd 3754 struct drm_i915_private *dev_priv = dev->dev_private;
7e231dbe
JB
3755
3756 if (!dev_priv)
3757 return;
3758
843d0e7d
ID
3759 I915_WRITE(VLV_MASTER_IER, 0);
3760
893fce8e
VS
3761 gen5_gt_irq_reset(dev);
3762
7e231dbe 3763 I915_WRITE(HWSTAM, 0xffffffff);
f8b79e58 3764
8ea0be4f 3765 vlv_display_irq_uninstall(dev_priv);
7e231dbe
JB
3766}
3767
43f328d7
VS
3768static void cherryview_irq_uninstall(struct drm_device *dev)
3769{
3770 struct drm_i915_private *dev_priv = dev->dev_private;
43f328d7
VS
3771
3772 if (!dev_priv)
3773 return;
3774
3775 I915_WRITE(GEN8_MASTER_IRQ, 0);
3776 POSTING_READ(GEN8_MASTER_IRQ);
3777
a2c30fba 3778 gen8_gt_irq_reset(dev_priv);
43f328d7 3779
a2c30fba 3780 GEN5_IRQ_RESET(GEN8_PCU_);
43f328d7 3781
c2b66797 3782 vlv_display_irq_uninstall(dev_priv);
43f328d7
VS
3783}
3784
f71d4af4 3785static void ironlake_irq_uninstall(struct drm_device *dev)
036a4a7d 3786{
2d1013dd 3787 struct drm_i915_private *dev_priv = dev->dev_private;
4697995b
JB
3788
3789 if (!dev_priv)
3790 return;
3791
be30b29f 3792 ironlake_irq_reset(dev);
036a4a7d
ZW
3793}
3794
a266c7d5 3795static void i8xx_irq_preinstall(struct drm_device * dev)
1da177e4 3796{
2d1013dd 3797 struct drm_i915_private *dev_priv = dev->dev_private;
9db4a9c7 3798 int pipe;
91e3738e 3799
055e393f 3800 for_each_pipe(dev_priv, pipe)
9db4a9c7 3801 I915_WRITE(PIPESTAT(pipe), 0);
a266c7d5
CW
3802 I915_WRITE16(IMR, 0xffff);
3803 I915_WRITE16(IER, 0x0);
3804 POSTING_READ16(IER);
c2798b19
CW
3805}
3806
3807static int i8xx_irq_postinstall(struct drm_device *dev)
3808{
2d1013dd 3809 struct drm_i915_private *dev_priv = dev->dev_private;
c2798b19 3810
c2798b19
CW
3811 I915_WRITE16(EMR,
3812 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3813
3814 /* Unmask the interrupts that we always want on. */
3815 dev_priv->irq_mask =
3816 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3817 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3818 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
37ef01ab 3819 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
c2798b19
CW
3820 I915_WRITE16(IMR, dev_priv->irq_mask);
3821
3822 I915_WRITE16(IER,
3823 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3824 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
c2798b19
CW
3825 I915_USER_INTERRUPT);
3826 POSTING_READ16(IER);
3827
379ef82d
DV
3828 /* Interrupt setup is already guaranteed to be single-threaded, this is
3829 * just to make the assert_spin_locked check happy. */
d6207435 3830 spin_lock_irq(&dev_priv->irq_lock);
755e9019
ID
3831 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3832 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
d6207435 3833 spin_unlock_irq(&dev_priv->irq_lock);
379ef82d 3834
c2798b19
CW
3835 return 0;
3836}
3837
90a72f87
VS
3838/*
3839 * Returns true when a page flip has completed.
3840 */
3841static bool i8xx_handle_vblank(struct drm_device *dev,
1f1c2e24 3842 int plane, int pipe, u32 iir)
90a72f87 3843{
2d1013dd 3844 struct drm_i915_private *dev_priv = dev->dev_private;
1f1c2e24 3845 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
90a72f87 3846
8d7849db 3847 if (!intel_pipe_handle_vblank(dev, pipe))
90a72f87
VS
3848 return false;
3849
3850 if ((iir & flip_pending) == 0)
d6bbafa1 3851 goto check_page_flip;
90a72f87 3852
90a72f87
VS
3853 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3854 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3855 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3856 * the flip is completed (no longer pending). Since this doesn't raise
3857 * an interrupt per se, we watch for the change at vblank.
3858 */
3859 if (I915_READ16(ISR) & flip_pending)
d6bbafa1 3860 goto check_page_flip;
90a72f87 3861
7d47559e 3862 intel_prepare_page_flip(dev, plane);
90a72f87 3863 intel_finish_page_flip(dev, pipe);
90a72f87 3864 return true;
d6bbafa1
CW
3865
3866check_page_flip:
3867 intel_check_page_flip(dev, pipe);
3868 return false;
90a72f87
VS
3869}
3870
ff1f525e 3871static irqreturn_t i8xx_irq_handler(int irq, void *arg)
c2798b19 3872{
45a83f84 3873 struct drm_device *dev = arg;
2d1013dd 3874 struct drm_i915_private *dev_priv = dev->dev_private;
c2798b19
CW
3875 u16 iir, new_iir;
3876 u32 pipe_stats[2];
c2798b19
CW
3877 int pipe;
3878 u16 flip_mask =
3879 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3880 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3881
2dd2a883
ID
3882 if (!intel_irqs_enabled(dev_priv))
3883 return IRQ_NONE;
3884
c2798b19
CW
3885 iir = I915_READ16(IIR);
3886 if (iir == 0)
3887 return IRQ_NONE;
3888
3889 while (iir & ~flip_mask) {
3890 /* Can't rely on pipestat interrupt bit in iir as it might
3891 * have been cleared after the pipestat interrupt was received.
3892 * It doesn't set the bit in iir again, but it still produces
3893 * interrupts (for non-MSI).
3894 */
222c7f51 3895 spin_lock(&dev_priv->irq_lock);
c2798b19 3896 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
aaecdf61 3897 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
c2798b19 3898
055e393f 3899 for_each_pipe(dev_priv, pipe) {
f0f59a00 3900 i915_reg_t reg = PIPESTAT(pipe);
c2798b19
CW
3901 pipe_stats[pipe] = I915_READ(reg);
3902
3903 /*
3904 * Clear the PIPE*STAT regs before the IIR
3905 */
2d9d2b0b 3906 if (pipe_stats[pipe] & 0x8000ffff)
c2798b19 3907 I915_WRITE(reg, pipe_stats[pipe]);
c2798b19 3908 }
222c7f51 3909 spin_unlock(&dev_priv->irq_lock);
c2798b19
CW
3910
3911 I915_WRITE16(IIR, iir & ~flip_mask);
3912 new_iir = I915_READ16(IIR); /* Flush posted writes */
3913
c2798b19 3914 if (iir & I915_USER_INTERRUPT)
74cdb337 3915 notify_ring(&dev_priv->ring[RCS]);
c2798b19 3916
055e393f 3917 for_each_pipe(dev_priv, pipe) {
1f1c2e24 3918 int plane = pipe;
3a77c4c4 3919 if (HAS_FBC(dev))
1f1c2e24
VS
3920 plane = !plane;
3921
4356d586 3922 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
1f1c2e24
VS
3923 i8xx_handle_vblank(dev, plane, pipe, iir))
3924 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
c2798b19 3925
4356d586 3926 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
277de95e 3927 i9xx_pipe_crc_irq_handler(dev, pipe);
2d9d2b0b 3928
1f7247c0
DV
3929 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3930 intel_cpu_fifo_underrun_irq_handler(dev_priv,
3931 pipe);
4356d586 3932 }
c2798b19
CW
3933
3934 iir = new_iir;
3935 }
3936
3937 return IRQ_HANDLED;
3938}
3939
3940static void i8xx_irq_uninstall(struct drm_device * dev)
3941{
2d1013dd 3942 struct drm_i915_private *dev_priv = dev->dev_private;
c2798b19
CW
3943 int pipe;
3944
055e393f 3945 for_each_pipe(dev_priv, pipe) {
c2798b19
CW
3946 /* Clear enable bits; then clear status bits */
3947 I915_WRITE(PIPESTAT(pipe), 0);
3948 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3949 }
3950 I915_WRITE16(IMR, 0xffff);
3951 I915_WRITE16(IER, 0x0);
3952 I915_WRITE16(IIR, I915_READ16(IIR));
3953}
3954
a266c7d5
CW
3955static void i915_irq_preinstall(struct drm_device * dev)
3956{
2d1013dd 3957 struct drm_i915_private *dev_priv = dev->dev_private;
a266c7d5
CW
3958 int pipe;
3959
a266c7d5 3960 if (I915_HAS_HOTPLUG(dev)) {
0706f17c 3961 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
a266c7d5
CW
3962 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3963 }
3964
00d98ebd 3965 I915_WRITE16(HWSTAM, 0xeffe);
055e393f 3966 for_each_pipe(dev_priv, pipe)
a266c7d5
CW
3967 I915_WRITE(PIPESTAT(pipe), 0);
3968 I915_WRITE(IMR, 0xffffffff);
3969 I915_WRITE(IER, 0x0);
3970 POSTING_READ(IER);
3971}
3972
3973static int i915_irq_postinstall(struct drm_device *dev)
3974{
2d1013dd 3975 struct drm_i915_private *dev_priv = dev->dev_private;
38bde180 3976 u32 enable_mask;
a266c7d5 3977
38bde180
CW
3978 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3979
3980 /* Unmask the interrupts that we always want on. */
3981 dev_priv->irq_mask =
3982 ~(I915_ASLE_INTERRUPT |
3983 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3984 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3985 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
37ef01ab 3986 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
38bde180
CW
3987
3988 enable_mask =
3989 I915_ASLE_INTERRUPT |
3990 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3991 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
38bde180
CW
3992 I915_USER_INTERRUPT;
3993
a266c7d5 3994 if (I915_HAS_HOTPLUG(dev)) {
0706f17c 3995 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
20afbda2
DV
3996 POSTING_READ(PORT_HOTPLUG_EN);
3997
a266c7d5
CW
3998 /* Enable in IER... */
3999 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4000 /* and unmask in IMR */
4001 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4002 }
4003
a266c7d5
CW
4004 I915_WRITE(IMR, dev_priv->irq_mask);
4005 I915_WRITE(IER, enable_mask);
4006 POSTING_READ(IER);
4007
f49e38dd 4008 i915_enable_asle_pipestat(dev);
20afbda2 4009
379ef82d
DV
4010 /* Interrupt setup is already guaranteed to be single-threaded, this is
4011 * just to make the assert_spin_locked check happy. */
d6207435 4012 spin_lock_irq(&dev_priv->irq_lock);
755e9019
ID
4013 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4014 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
d6207435 4015 spin_unlock_irq(&dev_priv->irq_lock);
379ef82d 4016
20afbda2
DV
4017 return 0;
4018}
4019
90a72f87
VS
4020/*
4021 * Returns true when a page flip has completed.
4022 */
4023static bool i915_handle_vblank(struct drm_device *dev,
4024 int plane, int pipe, u32 iir)
4025{
2d1013dd 4026 struct drm_i915_private *dev_priv = dev->dev_private;
90a72f87
VS
4027 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4028
8d7849db 4029 if (!intel_pipe_handle_vblank(dev, pipe))
90a72f87
VS
4030 return false;
4031
4032 if ((iir & flip_pending) == 0)
d6bbafa1 4033 goto check_page_flip;
90a72f87 4034
90a72f87
VS
4035 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4036 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4037 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4038 * the flip is completed (no longer pending). Since this doesn't raise
4039 * an interrupt per se, we watch for the change at vblank.
4040 */
4041 if (I915_READ(ISR) & flip_pending)
d6bbafa1 4042 goto check_page_flip;
90a72f87 4043
7d47559e 4044 intel_prepare_page_flip(dev, plane);
90a72f87 4045 intel_finish_page_flip(dev, pipe);
90a72f87 4046 return true;
d6bbafa1
CW
4047
4048check_page_flip:
4049 intel_check_page_flip(dev, pipe);
4050 return false;
90a72f87
VS
4051}
4052
ff1f525e 4053static irqreturn_t i915_irq_handler(int irq, void *arg)
a266c7d5 4054{
45a83f84 4055 struct drm_device *dev = arg;
2d1013dd 4056 struct drm_i915_private *dev_priv = dev->dev_private;
8291ee90 4057 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
38bde180
CW
4058 u32 flip_mask =
4059 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4060 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
38bde180 4061 int pipe, ret = IRQ_NONE;
a266c7d5 4062
2dd2a883
ID
4063 if (!intel_irqs_enabled(dev_priv))
4064 return IRQ_NONE;
4065
a266c7d5 4066 iir = I915_READ(IIR);
38bde180
CW
4067 do {
4068 bool irq_received = (iir & ~flip_mask) != 0;
8291ee90 4069 bool blc_event = false;
a266c7d5
CW
4070
4071 /* Can't rely on pipestat interrupt bit in iir as it might
4072 * have been cleared after the pipestat interrupt was received.
4073 * It doesn't set the bit in iir again, but it still produces
4074 * interrupts (for non-MSI).
4075 */
222c7f51 4076 spin_lock(&dev_priv->irq_lock);
a266c7d5 4077 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
aaecdf61 4078 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
a266c7d5 4079
055e393f 4080 for_each_pipe(dev_priv, pipe) {
f0f59a00 4081 i915_reg_t reg = PIPESTAT(pipe);
a266c7d5
CW
4082 pipe_stats[pipe] = I915_READ(reg);
4083
38bde180 4084 /* Clear the PIPE*STAT regs before the IIR */
a266c7d5 4085 if (pipe_stats[pipe] & 0x8000ffff) {
a266c7d5 4086 I915_WRITE(reg, pipe_stats[pipe]);
38bde180 4087 irq_received = true;
a266c7d5
CW
4088 }
4089 }
222c7f51 4090 spin_unlock(&dev_priv->irq_lock);
a266c7d5
CW
4091
4092 if (!irq_received)
4093 break;
4094
a266c7d5 4095 /* Consume port. Then clear IIR or we'll miss events */
16c6c56b
VS
4096 if (I915_HAS_HOTPLUG(dev) &&
4097 iir & I915_DISPLAY_PORT_INTERRUPT)
4098 i9xx_hpd_irq_handler(dev);
a266c7d5 4099
38bde180 4100 I915_WRITE(IIR, iir & ~flip_mask);
a266c7d5
CW
4101 new_iir = I915_READ(IIR); /* Flush posted writes */
4102
a266c7d5 4103 if (iir & I915_USER_INTERRUPT)
74cdb337 4104 notify_ring(&dev_priv->ring[RCS]);
a266c7d5 4105
055e393f 4106 for_each_pipe(dev_priv, pipe) {
38bde180 4107 int plane = pipe;
3a77c4c4 4108 if (HAS_FBC(dev))
38bde180 4109 plane = !plane;
90a72f87 4110
8291ee90 4111 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
90a72f87
VS
4112 i915_handle_vblank(dev, plane, pipe, iir))
4113 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
a266c7d5
CW
4114
4115 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4116 blc_event = true;
4356d586
DV
4117
4118 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
277de95e 4119 i9xx_pipe_crc_irq_handler(dev, pipe);
2d9d2b0b 4120
1f7247c0
DV
4121 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4122 intel_cpu_fifo_underrun_irq_handler(dev_priv,
4123 pipe);
a266c7d5
CW
4124 }
4125
a266c7d5
CW
4126 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4127 intel_opregion_asle_intr(dev);
4128
4129 /* With MSI, interrupts are only generated when iir
4130 * transitions from zero to nonzero. If another bit got
4131 * set while we were handling the existing iir bits, then
4132 * we would never get another interrupt.
4133 *
4134 * This is fine on non-MSI as well, as if we hit this path
4135 * we avoid exiting the interrupt handler only to generate
4136 * another one.
4137 *
4138 * Note that for MSI this could cause a stray interrupt report
4139 * if an interrupt landed in the time between writing IIR and
4140 * the posting read. This should be rare enough to never
4141 * trigger the 99% of 100,000 interrupts test for disabling
4142 * stray interrupts.
4143 */
38bde180 4144 ret = IRQ_HANDLED;
a266c7d5 4145 iir = new_iir;
38bde180 4146 } while (iir & ~flip_mask);
a266c7d5
CW
4147
4148 return ret;
4149}
4150
4151static void i915_irq_uninstall(struct drm_device * dev)
4152{
2d1013dd 4153 struct drm_i915_private *dev_priv = dev->dev_private;
a266c7d5
CW
4154 int pipe;
4155
a266c7d5 4156 if (I915_HAS_HOTPLUG(dev)) {
0706f17c 4157 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
a266c7d5
CW
4158 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4159 }
4160
00d98ebd 4161 I915_WRITE16(HWSTAM, 0xffff);
055e393f 4162 for_each_pipe(dev_priv, pipe) {
55b39755 4163 /* Clear enable bits; then clear status bits */
a266c7d5 4164 I915_WRITE(PIPESTAT(pipe), 0);
55b39755
CW
4165 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4166 }
a266c7d5
CW
4167 I915_WRITE(IMR, 0xffffffff);
4168 I915_WRITE(IER, 0x0);
4169
a266c7d5
CW
4170 I915_WRITE(IIR, I915_READ(IIR));
4171}
4172
4173static void i965_irq_preinstall(struct drm_device * dev)
4174{
2d1013dd 4175 struct drm_i915_private *dev_priv = dev->dev_private;
a266c7d5
CW
4176 int pipe;
4177
0706f17c 4178 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
adca4730 4179 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
a266c7d5
CW
4180
4181 I915_WRITE(HWSTAM, 0xeffe);
055e393f 4182 for_each_pipe(dev_priv, pipe)
a266c7d5
CW
4183 I915_WRITE(PIPESTAT(pipe), 0);
4184 I915_WRITE(IMR, 0xffffffff);
4185 I915_WRITE(IER, 0x0);
4186 POSTING_READ(IER);
4187}
4188
4189static int i965_irq_postinstall(struct drm_device *dev)
4190{
2d1013dd 4191 struct drm_i915_private *dev_priv = dev->dev_private;
bbba0a97 4192 u32 enable_mask;
a266c7d5
CW
4193 u32 error_mask;
4194
a266c7d5 4195 /* Unmask the interrupts that we always want on. */
bbba0a97 4196 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
adca4730 4197 I915_DISPLAY_PORT_INTERRUPT |
bbba0a97
CW
4198 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4199 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4200 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4201 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4202 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4203
4204 enable_mask = ~dev_priv->irq_mask;
21ad8330
VS
4205 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4206 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
bbba0a97
CW
4207 enable_mask |= I915_USER_INTERRUPT;
4208
4209 if (IS_G4X(dev))
4210 enable_mask |= I915_BSD_USER_INTERRUPT;
a266c7d5 4211
b79480ba
DV
4212 /* Interrupt setup is already guaranteed to be single-threaded, this is
4213 * just to make the assert_spin_locked check happy. */
d6207435 4214 spin_lock_irq(&dev_priv->irq_lock);
755e9019
ID
4215 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4216 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4217 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
d6207435 4218 spin_unlock_irq(&dev_priv->irq_lock);
a266c7d5 4219
a266c7d5
CW
4220 /*
4221 * Enable some error detection, note the instruction error mask
4222 * bit is reserved, so we leave it masked.
4223 */
4224 if (IS_G4X(dev)) {
4225 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4226 GM45_ERROR_MEM_PRIV |
4227 GM45_ERROR_CP_PRIV |
4228 I915_ERROR_MEMORY_REFRESH);
4229 } else {
4230 error_mask = ~(I915_ERROR_PAGE_TABLE |
4231 I915_ERROR_MEMORY_REFRESH);
4232 }
4233 I915_WRITE(EMR, error_mask);
4234
4235 I915_WRITE(IMR, dev_priv->irq_mask);
4236 I915_WRITE(IER, enable_mask);
4237 POSTING_READ(IER);
4238
0706f17c 4239 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
20afbda2
DV
4240 POSTING_READ(PORT_HOTPLUG_EN);
4241
f49e38dd 4242 i915_enable_asle_pipestat(dev);
20afbda2
DV
4243
4244 return 0;
4245}
4246
bac56d5b 4247static void i915_hpd_irq_setup(struct drm_device *dev)
20afbda2 4248{
2d1013dd 4249 struct drm_i915_private *dev_priv = dev->dev_private;
20afbda2
DV
4250 u32 hotplug_en;
4251
b5ea2d56
DV
4252 assert_spin_locked(&dev_priv->irq_lock);
4253
778eb334
VS
4254 /* Note HDMI and DP share hotplug bits */
4255 /* enable bits are the same for all generations */
0706f17c 4256 hotplug_en = intel_hpd_enabled_irqs(dev, hpd_mask_i915);
778eb334
VS
4257 /* Programming the CRT detection parameters tends
4258 to generate a spurious hotplug event about three
4259 seconds later. So just do it once.
4260 */
4261 if (IS_G4X(dev))
4262 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
778eb334
VS
4263 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
4264
4265 /* Ignore TV since it's buggy */
0706f17c 4266 i915_hotplug_interrupt_update_locked(dev_priv,
f9e3dc78
JN
4267 HOTPLUG_INT_EN_MASK |
4268 CRT_HOTPLUG_VOLTAGE_COMPARE_MASK |
4269 CRT_HOTPLUG_ACTIVATION_PERIOD_64,
4270 hotplug_en);
a266c7d5
CW
4271}
4272
ff1f525e 4273static irqreturn_t i965_irq_handler(int irq, void *arg)
a266c7d5 4274{
45a83f84 4275 struct drm_device *dev = arg;
2d1013dd 4276 struct drm_i915_private *dev_priv = dev->dev_private;
a266c7d5
CW
4277 u32 iir, new_iir;
4278 u32 pipe_stats[I915_MAX_PIPES];
a266c7d5 4279 int ret = IRQ_NONE, pipe;
21ad8330
VS
4280 u32 flip_mask =
4281 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4282 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
a266c7d5 4283
2dd2a883
ID
4284 if (!intel_irqs_enabled(dev_priv))
4285 return IRQ_NONE;
4286
a266c7d5
CW
4287 iir = I915_READ(IIR);
4288
a266c7d5 4289 for (;;) {
501e01d7 4290 bool irq_received = (iir & ~flip_mask) != 0;
2c8ba29f
CW
4291 bool blc_event = false;
4292
a266c7d5
CW
4293 /* Can't rely on pipestat interrupt bit in iir as it might
4294 * have been cleared after the pipestat interrupt was received.
4295 * It doesn't set the bit in iir again, but it still produces
4296 * interrupts (for non-MSI).
4297 */
222c7f51 4298 spin_lock(&dev_priv->irq_lock);
a266c7d5 4299 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
aaecdf61 4300 DRM_DEBUG("Command parser error, iir 0x%08x\n", iir);
a266c7d5 4301
055e393f 4302 for_each_pipe(dev_priv, pipe) {
f0f59a00 4303 i915_reg_t reg = PIPESTAT(pipe);
a266c7d5
CW
4304 pipe_stats[pipe] = I915_READ(reg);
4305
4306 /*
4307 * Clear the PIPE*STAT regs before the IIR
4308 */
4309 if (pipe_stats[pipe] & 0x8000ffff) {
a266c7d5 4310 I915_WRITE(reg, pipe_stats[pipe]);
501e01d7 4311 irq_received = true;
a266c7d5
CW
4312 }
4313 }
222c7f51 4314 spin_unlock(&dev_priv->irq_lock);
a266c7d5
CW
4315
4316 if (!irq_received)
4317 break;
4318
4319 ret = IRQ_HANDLED;
4320
4321 /* Consume port. Then clear IIR or we'll miss events */
16c6c56b
VS
4322 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4323 i9xx_hpd_irq_handler(dev);
a266c7d5 4324
21ad8330 4325 I915_WRITE(IIR, iir & ~flip_mask);
a266c7d5
CW
4326 new_iir = I915_READ(IIR); /* Flush posted writes */
4327
a266c7d5 4328 if (iir & I915_USER_INTERRUPT)
74cdb337 4329 notify_ring(&dev_priv->ring[RCS]);
a266c7d5 4330 if (iir & I915_BSD_USER_INTERRUPT)
74cdb337 4331 notify_ring(&dev_priv->ring[VCS]);
a266c7d5 4332
055e393f 4333 for_each_pipe(dev_priv, pipe) {
2c8ba29f 4334 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
90a72f87
VS
4335 i915_handle_vblank(dev, pipe, pipe, iir))
4336 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
a266c7d5
CW
4337
4338 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4339 blc_event = true;
4356d586
DV
4340
4341 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
277de95e 4342 i9xx_pipe_crc_irq_handler(dev, pipe);
a266c7d5 4343
1f7247c0
DV
4344 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
4345 intel_cpu_fifo_underrun_irq_handler(dev_priv, pipe);
2d9d2b0b 4346 }
a266c7d5
CW
4347
4348 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4349 intel_opregion_asle_intr(dev);
4350
515ac2bb
DV
4351 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4352 gmbus_irq_handler(dev);
4353
a266c7d5
CW
4354 /* With MSI, interrupts are only generated when iir
4355 * transitions from zero to nonzero. If another bit got
4356 * set while we were handling the existing iir bits, then
4357 * we would never get another interrupt.
4358 *
4359 * This is fine on non-MSI as well, as if we hit this path
4360 * we avoid exiting the interrupt handler only to generate
4361 * another one.
4362 *
4363 * Note that for MSI this could cause a stray interrupt report
4364 * if an interrupt landed in the time between writing IIR and
4365 * the posting read. This should be rare enough to never
4366 * trigger the 99% of 100,000 interrupts test for disabling
4367 * stray interrupts.
4368 */
4369 iir = new_iir;
4370 }
4371
4372 return ret;
4373}
4374
4375static void i965_irq_uninstall(struct drm_device * dev)
4376{
2d1013dd 4377 struct drm_i915_private *dev_priv = dev->dev_private;
a266c7d5
CW
4378 int pipe;
4379
4380 if (!dev_priv)
4381 return;
4382
0706f17c 4383 i915_hotplug_interrupt_update(dev_priv, 0xffffffff, 0);
adca4730 4384 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
a266c7d5
CW
4385
4386 I915_WRITE(HWSTAM, 0xffffffff);
055e393f 4387 for_each_pipe(dev_priv, pipe)
a266c7d5
CW
4388 I915_WRITE(PIPESTAT(pipe), 0);
4389 I915_WRITE(IMR, 0xffffffff);
4390 I915_WRITE(IER, 0x0);
4391
055e393f 4392 for_each_pipe(dev_priv, pipe)
a266c7d5
CW
4393 I915_WRITE(PIPESTAT(pipe),
4394 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4395 I915_WRITE(IIR, I915_READ(IIR));
4396}
4397
fca52a55
DV
4398/**
4399 * intel_irq_init - initializes irq support
4400 * @dev_priv: i915 device instance
4401 *
4402 * This function initializes all the irq support including work items, timers
4403 * and all the vtables. It does not setup the interrupt itself though.
4404 */
b963291c 4405void intel_irq_init(struct drm_i915_private *dev_priv)
f71d4af4 4406{
b963291c 4407 struct drm_device *dev = dev_priv->dev;
8b2e326d 4408
77913b39
JN
4409 intel_hpd_init_work(dev_priv);
4410
c6a828d3 4411 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
a4da4fa4 4412 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
8b2e326d 4413
a6706b45 4414 /* Let's track the enabled rps events */
b963291c 4415 if (IS_VALLEYVIEW(dev_priv) && !IS_CHERRYVIEW(dev_priv))
6c65a587 4416 /* WaGsvRC0ResidencyMethod:vlv */
6f4b12f8 4417 dev_priv->pm_rps_events = GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED;
31685c25
D
4418 else
4419 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
a6706b45 4420
737b1506
CW
4421 INIT_DELAYED_WORK(&dev_priv->gpu_error.hangcheck_work,
4422 i915_hangcheck_elapsed);
61bac78e 4423
97a19a24 4424 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
9ee32fea 4425
b963291c 4426 if (IS_GEN2(dev_priv)) {
4cdb83ec
VS
4427 dev->max_vblank_count = 0;
4428 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
b963291c 4429 } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) {
f71d4af4 4430 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
fd8f507c 4431 dev->driver->get_vblank_counter = g4x_get_vblank_counter;
391f75e2
VS
4432 } else {
4433 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4434 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
f71d4af4
JB
4435 }
4436
21da2700
VS
4437 /*
4438 * Opt out of the vblank disable timer on everything except gen2.
4439 * Gen2 doesn't have a hardware frame counter and so depends on
4440 * vblank interrupts to produce sane vblank seuquence numbers.
4441 */
b963291c 4442 if (!IS_GEN2(dev_priv))
21da2700
VS
4443 dev->vblank_disable_immediate = true;
4444
f3a5c3f6
DV
4445 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
4446 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
f71d4af4 4447
b963291c 4448 if (IS_CHERRYVIEW(dev_priv)) {
43f328d7
VS
4449 dev->driver->irq_handler = cherryview_irq_handler;
4450 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4451 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4452 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4453 dev->driver->enable_vblank = valleyview_enable_vblank;
4454 dev->driver->disable_vblank = valleyview_disable_vblank;
4455 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
b963291c 4456 } else if (IS_VALLEYVIEW(dev_priv)) {
7e231dbe
JB
4457 dev->driver->irq_handler = valleyview_irq_handler;
4458 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4459 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4460 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4461 dev->driver->enable_vblank = valleyview_enable_vblank;
4462 dev->driver->disable_vblank = valleyview_disable_vblank;
fa00abe0 4463 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
b963291c 4464 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
abd58f01 4465 dev->driver->irq_handler = gen8_irq_handler;
723761b8 4466 dev->driver->irq_preinstall = gen8_irq_reset;
abd58f01
BW
4467 dev->driver->irq_postinstall = gen8_irq_postinstall;
4468 dev->driver->irq_uninstall = gen8_irq_uninstall;
4469 dev->driver->enable_vblank = gen8_enable_vblank;
4470 dev->driver->disable_vblank = gen8_disable_vblank;
6dbf30ce 4471 if (IS_BROXTON(dev))
e0a20ad7 4472 dev_priv->display.hpd_irq_setup = bxt_hpd_irq_setup;
6dbf30ce
VS
4473 else if (HAS_PCH_SPT(dev))
4474 dev_priv->display.hpd_irq_setup = spt_hpd_irq_setup;
4475 else
3a3b3c7d 4476 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
f71d4af4
JB
4477 } else if (HAS_PCH_SPLIT(dev)) {
4478 dev->driver->irq_handler = ironlake_irq_handler;
723761b8 4479 dev->driver->irq_preinstall = ironlake_irq_reset;
f71d4af4
JB
4480 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4481 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4482 dev->driver->enable_vblank = ironlake_enable_vblank;
4483 dev->driver->disable_vblank = ironlake_disable_vblank;
23bb4cb5 4484 dev_priv->display.hpd_irq_setup = ilk_hpd_irq_setup;
f71d4af4 4485 } else {
b963291c 4486 if (INTEL_INFO(dev_priv)->gen == 2) {
c2798b19
CW
4487 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4488 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4489 dev->driver->irq_handler = i8xx_irq_handler;
4490 dev->driver->irq_uninstall = i8xx_irq_uninstall;
b963291c 4491 } else if (INTEL_INFO(dev_priv)->gen == 3) {
a266c7d5
CW
4492 dev->driver->irq_preinstall = i915_irq_preinstall;
4493 dev->driver->irq_postinstall = i915_irq_postinstall;
4494 dev->driver->irq_uninstall = i915_irq_uninstall;
4495 dev->driver->irq_handler = i915_irq_handler;
c2798b19 4496 } else {
a266c7d5
CW
4497 dev->driver->irq_preinstall = i965_irq_preinstall;
4498 dev->driver->irq_postinstall = i965_irq_postinstall;
4499 dev->driver->irq_uninstall = i965_irq_uninstall;
4500 dev->driver->irq_handler = i965_irq_handler;
c2798b19 4501 }
778eb334
VS
4502 if (I915_HAS_HOTPLUG(dev_priv))
4503 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
f71d4af4
JB
4504 dev->driver->enable_vblank = i915_enable_vblank;
4505 dev->driver->disable_vblank = i915_disable_vblank;
4506 }
4507}
20afbda2 4508
fca52a55
DV
4509/**
4510 * intel_irq_install - enables the hardware interrupt
4511 * @dev_priv: i915 device instance
4512 *
4513 * This function enables the hardware interrupt handling, but leaves the hotplug
4514 * handling still disabled. It is called after intel_irq_init().
4515 *
4516 * In the driver load and resume code we need working interrupts in a few places
4517 * but don't want to deal with the hassle of concurrent probe and hotplug
4518 * workers. Hence the split into this two-stage approach.
4519 */
2aeb7d3a
DV
4520int intel_irq_install(struct drm_i915_private *dev_priv)
4521{
4522 /*
4523 * We enable some interrupt sources in our postinstall hooks, so mark
4524 * interrupts as enabled _before_ actually enabling them to avoid
4525 * special cases in our ordering checks.
4526 */
4527 dev_priv->pm.irqs_enabled = true;
4528
4529 return drm_irq_install(dev_priv->dev, dev_priv->dev->pdev->irq);
4530}
4531
fca52a55
DV
4532/**
4533 * intel_irq_uninstall - finilizes all irq handling
4534 * @dev_priv: i915 device instance
4535 *
4536 * This stops interrupt and hotplug handling and unregisters and frees all
4537 * resources acquired in the init functions.
4538 */
2aeb7d3a
DV
4539void intel_irq_uninstall(struct drm_i915_private *dev_priv)
4540{
4541 drm_irq_uninstall(dev_priv->dev);
4542 intel_hpd_cancel_work(dev_priv);
4543 dev_priv->pm.irqs_enabled = false;
4544}
4545
fca52a55
DV
4546/**
4547 * intel_runtime_pm_disable_interrupts - runtime interrupt disabling
4548 * @dev_priv: i915 device instance
4549 *
4550 * This function is used to disable interrupts at runtime, both in the runtime
4551 * pm and the system suspend/resume code.
4552 */
b963291c 4553void intel_runtime_pm_disable_interrupts(struct drm_i915_private *dev_priv)
c67a470b 4554{
b963291c 4555 dev_priv->dev->driver->irq_uninstall(dev_priv->dev);
2aeb7d3a 4556 dev_priv->pm.irqs_enabled = false;
2dd2a883 4557 synchronize_irq(dev_priv->dev->irq);
c67a470b
PZ
4558}
4559
fca52a55
DV
4560/**
4561 * intel_runtime_pm_enable_interrupts - runtime interrupt enabling
4562 * @dev_priv: i915 device instance
4563 *
4564 * This function is used to enable interrupts at runtime, both in the runtime
4565 * pm and the system suspend/resume code.
4566 */
b963291c 4567void intel_runtime_pm_enable_interrupts(struct drm_i915_private *dev_priv)
c67a470b 4568{
2aeb7d3a 4569 dev_priv->pm.irqs_enabled = true;
b963291c
DV
4570 dev_priv->dev->driver->irq_preinstall(dev_priv->dev);
4571 dev_priv->dev->driver->irq_postinstall(dev_priv->dev);
c67a470b 4572}
This page took 1.212699 seconds and 5 git commands to generate.