drm/radeon: Push get_scanout_position() timestamping into kms driver.
[linux-block.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
e5868a31
EE
40static const u32 hpd_ibx[] = {
41 [HPD_CRT] = SDE_CRT_HOTPLUG,
42 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
43 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
44 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
45 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
46};
47
48static const u32 hpd_cpt[] = {
49 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
73c352a2 50 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
e5868a31
EE
51 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
52 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
53 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
54};
55
56static const u32 hpd_mask_i915[] = {
57 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
58 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
59 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
60 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
61 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
62 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
63};
64
65static const u32 hpd_status_gen4[] = {
66 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
67 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
68 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
69 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
70 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
71 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
72};
73
e5868a31
EE
74static const u32 hpd_status_i915[] = { /* i915 and valleyview are the same */
75 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
76 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
77 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
78 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
79 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
80 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
81};
82
036a4a7d 83/* For display hotplug interrupt */
995b6762 84static void
f2b115e6 85ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
036a4a7d 86{
4bc9d430
DV
87 assert_spin_locked(&dev_priv->irq_lock);
88
c67a470b
PZ
89 if (dev_priv->pc8.irqs_disabled) {
90 WARN(1, "IRQs disabled\n");
91 dev_priv->pc8.regsave.deimr &= ~mask;
92 return;
93 }
94
1ec14ad3
CW
95 if ((dev_priv->irq_mask & mask) != 0) {
96 dev_priv->irq_mask &= ~mask;
97 I915_WRITE(DEIMR, dev_priv->irq_mask);
3143a2bf 98 POSTING_READ(DEIMR);
036a4a7d
ZW
99 }
100}
101
0ff9800a 102static void
f2b115e6 103ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
036a4a7d 104{
4bc9d430
DV
105 assert_spin_locked(&dev_priv->irq_lock);
106
c67a470b
PZ
107 if (dev_priv->pc8.irqs_disabled) {
108 WARN(1, "IRQs disabled\n");
109 dev_priv->pc8.regsave.deimr |= mask;
110 return;
111 }
112
1ec14ad3
CW
113 if ((dev_priv->irq_mask & mask) != mask) {
114 dev_priv->irq_mask |= mask;
115 I915_WRITE(DEIMR, dev_priv->irq_mask);
3143a2bf 116 POSTING_READ(DEIMR);
036a4a7d
ZW
117 }
118}
119
43eaea13
PZ
120/**
121 * ilk_update_gt_irq - update GTIMR
122 * @dev_priv: driver private
123 * @interrupt_mask: mask of interrupt bits to update
124 * @enabled_irq_mask: mask of interrupt bits to enable
125 */
126static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
127 uint32_t interrupt_mask,
128 uint32_t enabled_irq_mask)
129{
130 assert_spin_locked(&dev_priv->irq_lock);
131
c67a470b
PZ
132 if (dev_priv->pc8.irqs_disabled) {
133 WARN(1, "IRQs disabled\n");
134 dev_priv->pc8.regsave.gtimr &= ~interrupt_mask;
135 dev_priv->pc8.regsave.gtimr |= (~enabled_irq_mask &
136 interrupt_mask);
137 return;
138 }
139
43eaea13
PZ
140 dev_priv->gt_irq_mask &= ~interrupt_mask;
141 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
142 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
143 POSTING_READ(GTIMR);
144}
145
146void ilk_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
147{
148 ilk_update_gt_irq(dev_priv, mask, mask);
149}
150
151void ilk_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
152{
153 ilk_update_gt_irq(dev_priv, mask, 0);
154}
155
edbfdb45
PZ
156/**
157 * snb_update_pm_irq - update GEN6_PMIMR
158 * @dev_priv: driver private
159 * @interrupt_mask: mask of interrupt bits to update
160 * @enabled_irq_mask: mask of interrupt bits to enable
161 */
162static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
163 uint32_t interrupt_mask,
164 uint32_t enabled_irq_mask)
165{
605cd25b 166 uint32_t new_val;
edbfdb45
PZ
167
168 assert_spin_locked(&dev_priv->irq_lock);
169
c67a470b
PZ
170 if (dev_priv->pc8.irqs_disabled) {
171 WARN(1, "IRQs disabled\n");
172 dev_priv->pc8.regsave.gen6_pmimr &= ~interrupt_mask;
173 dev_priv->pc8.regsave.gen6_pmimr |= (~enabled_irq_mask &
174 interrupt_mask);
175 return;
176 }
177
605cd25b 178 new_val = dev_priv->pm_irq_mask;
f52ecbcf
PZ
179 new_val &= ~interrupt_mask;
180 new_val |= (~enabled_irq_mask & interrupt_mask);
181
605cd25b
PZ
182 if (new_val != dev_priv->pm_irq_mask) {
183 dev_priv->pm_irq_mask = new_val;
184 I915_WRITE(GEN6_PMIMR, dev_priv->pm_irq_mask);
f52ecbcf
PZ
185 POSTING_READ(GEN6_PMIMR);
186 }
edbfdb45
PZ
187}
188
189void snb_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
190{
191 snb_update_pm_irq(dev_priv, mask, mask);
192}
193
194void snb_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
195{
196 snb_update_pm_irq(dev_priv, mask, 0);
197}
198
8664281b
PZ
199static bool ivb_can_enable_err_int(struct drm_device *dev)
200{
201 struct drm_i915_private *dev_priv = dev->dev_private;
202 struct intel_crtc *crtc;
203 enum pipe pipe;
204
4bc9d430
DV
205 assert_spin_locked(&dev_priv->irq_lock);
206
8664281b
PZ
207 for_each_pipe(pipe) {
208 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
209
210 if (crtc->cpu_fifo_underrun_disabled)
211 return false;
212 }
213
214 return true;
215}
216
217static bool cpt_can_enable_serr_int(struct drm_device *dev)
218{
219 struct drm_i915_private *dev_priv = dev->dev_private;
220 enum pipe pipe;
221 struct intel_crtc *crtc;
222
fee884ed
DV
223 assert_spin_locked(&dev_priv->irq_lock);
224
8664281b
PZ
225 for_each_pipe(pipe) {
226 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
227
228 if (crtc->pch_fifo_underrun_disabled)
229 return false;
230 }
231
232 return true;
233}
234
235static void ironlake_set_fifo_underrun_reporting(struct drm_device *dev,
236 enum pipe pipe, bool enable)
237{
238 struct drm_i915_private *dev_priv = dev->dev_private;
239 uint32_t bit = (pipe == PIPE_A) ? DE_PIPEA_FIFO_UNDERRUN :
240 DE_PIPEB_FIFO_UNDERRUN;
241
242 if (enable)
243 ironlake_enable_display_irq(dev_priv, bit);
244 else
245 ironlake_disable_display_irq(dev_priv, bit);
246}
247
248static void ivybridge_set_fifo_underrun_reporting(struct drm_device *dev,
7336df65 249 enum pipe pipe, bool enable)
8664281b
PZ
250{
251 struct drm_i915_private *dev_priv = dev->dev_private;
8664281b 252 if (enable) {
7336df65
DV
253 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN(pipe));
254
8664281b
PZ
255 if (!ivb_can_enable_err_int(dev))
256 return;
257
8664281b
PZ
258 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
259 } else {
7336df65
DV
260 bool was_enabled = !(I915_READ(DEIMR) & DE_ERR_INT_IVB);
261
262 /* Change the state _after_ we've read out the current one. */
8664281b 263 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
7336df65
DV
264
265 if (!was_enabled &&
266 (I915_READ(GEN7_ERR_INT) & ERR_INT_FIFO_UNDERRUN(pipe))) {
267 DRM_DEBUG_KMS("uncleared fifo underrun on pipe %c\n",
268 pipe_name(pipe));
269 }
8664281b
PZ
270 }
271}
272
fee884ed
DV
273/**
274 * ibx_display_interrupt_update - update SDEIMR
275 * @dev_priv: driver private
276 * @interrupt_mask: mask of interrupt bits to update
277 * @enabled_irq_mask: mask of interrupt bits to enable
278 */
279static void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
280 uint32_t interrupt_mask,
281 uint32_t enabled_irq_mask)
282{
283 uint32_t sdeimr = I915_READ(SDEIMR);
284 sdeimr &= ~interrupt_mask;
285 sdeimr |= (~enabled_irq_mask & interrupt_mask);
286
287 assert_spin_locked(&dev_priv->irq_lock);
288
c67a470b
PZ
289 if (dev_priv->pc8.irqs_disabled &&
290 (interrupt_mask & SDE_HOTPLUG_MASK_CPT)) {
291 WARN(1, "IRQs disabled\n");
292 dev_priv->pc8.regsave.sdeimr &= ~interrupt_mask;
293 dev_priv->pc8.regsave.sdeimr |= (~enabled_irq_mask &
294 interrupt_mask);
295 return;
296 }
297
fee884ed
DV
298 I915_WRITE(SDEIMR, sdeimr);
299 POSTING_READ(SDEIMR);
300}
301#define ibx_enable_display_interrupt(dev_priv, bits) \
302 ibx_display_interrupt_update((dev_priv), (bits), (bits))
303#define ibx_disable_display_interrupt(dev_priv, bits) \
304 ibx_display_interrupt_update((dev_priv), (bits), 0)
305
de28075d
DV
306static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
307 enum transcoder pch_transcoder,
8664281b
PZ
308 bool enable)
309{
8664281b 310 struct drm_i915_private *dev_priv = dev->dev_private;
de28075d
DV
311 uint32_t bit = (pch_transcoder == TRANSCODER_A) ?
312 SDE_TRANSA_FIFO_UNDER : SDE_TRANSB_FIFO_UNDER;
8664281b
PZ
313
314 if (enable)
fee884ed 315 ibx_enable_display_interrupt(dev_priv, bit);
8664281b 316 else
fee884ed 317 ibx_disable_display_interrupt(dev_priv, bit);
8664281b
PZ
318}
319
320static void cpt_set_fifo_underrun_reporting(struct drm_device *dev,
321 enum transcoder pch_transcoder,
322 bool enable)
323{
324 struct drm_i915_private *dev_priv = dev->dev_private;
325
326 if (enable) {
1dd246fb
DV
327 I915_WRITE(SERR_INT,
328 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder));
329
8664281b
PZ
330 if (!cpt_can_enable_serr_int(dev))
331 return;
332
fee884ed 333 ibx_enable_display_interrupt(dev_priv, SDE_ERROR_CPT);
8664281b 334 } else {
1dd246fb
DV
335 uint32_t tmp = I915_READ(SERR_INT);
336 bool was_enabled = !(I915_READ(SDEIMR) & SDE_ERROR_CPT);
337
338 /* Change the state _after_ we've read out the current one. */
fee884ed 339 ibx_disable_display_interrupt(dev_priv, SDE_ERROR_CPT);
1dd246fb
DV
340
341 if (!was_enabled &&
342 (tmp & SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder))) {
343 DRM_DEBUG_KMS("uncleared pch fifo underrun on pch transcoder %c\n",
344 transcoder_name(pch_transcoder));
345 }
8664281b 346 }
8664281b
PZ
347}
348
349/**
350 * intel_set_cpu_fifo_underrun_reporting - enable/disable FIFO underrun messages
351 * @dev: drm device
352 * @pipe: pipe
353 * @enable: true if we want to report FIFO underrun errors, false otherwise
354 *
355 * This function makes us disable or enable CPU fifo underruns for a specific
356 * pipe. Notice that on some Gens (e.g. IVB, HSW), disabling FIFO underrun
357 * reporting for one pipe may also disable all the other CPU error interruts for
358 * the other pipes, due to the fact that there's just one interrupt mask/enable
359 * bit for all the pipes.
360 *
361 * Returns the previous state of underrun reporting.
362 */
363bool intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
364 enum pipe pipe, bool enable)
365{
366 struct drm_i915_private *dev_priv = dev->dev_private;
367 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
368 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
369 unsigned long flags;
370 bool ret;
371
372 spin_lock_irqsave(&dev_priv->irq_lock, flags);
373
374 ret = !intel_crtc->cpu_fifo_underrun_disabled;
375
376 if (enable == ret)
377 goto done;
378
379 intel_crtc->cpu_fifo_underrun_disabled = !enable;
380
381 if (IS_GEN5(dev) || IS_GEN6(dev))
382 ironlake_set_fifo_underrun_reporting(dev, pipe, enable);
383 else if (IS_GEN7(dev))
7336df65 384 ivybridge_set_fifo_underrun_reporting(dev, pipe, enable);
8664281b
PZ
385
386done:
387 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
388 return ret;
389}
390
391/**
392 * intel_set_pch_fifo_underrun_reporting - enable/disable FIFO underrun messages
393 * @dev: drm device
394 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
395 * @enable: true if we want to report FIFO underrun errors, false otherwise
396 *
397 * This function makes us disable or enable PCH fifo underruns for a specific
398 * PCH transcoder. Notice that on some PCHs (e.g. CPT/PPT), disabling FIFO
399 * underrun reporting for one transcoder may also disable all the other PCH
400 * error interruts for the other transcoders, due to the fact that there's just
401 * one interrupt mask/enable bit for all the transcoders.
402 *
403 * Returns the previous state of underrun reporting.
404 */
405bool intel_set_pch_fifo_underrun_reporting(struct drm_device *dev,
406 enum transcoder pch_transcoder,
407 bool enable)
408{
409 struct drm_i915_private *dev_priv = dev->dev_private;
de28075d
DV
410 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pch_transcoder];
411 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
8664281b
PZ
412 unsigned long flags;
413 bool ret;
414
de28075d
DV
415 /*
416 * NOTE: Pre-LPT has a fixed cpu pipe -> pch transcoder mapping, but LPT
417 * has only one pch transcoder A that all pipes can use. To avoid racy
418 * pch transcoder -> pipe lookups from interrupt code simply store the
419 * underrun statistics in crtc A. Since we never expose this anywhere
420 * nor use it outside of the fifo underrun code here using the "wrong"
421 * crtc on LPT won't cause issues.
422 */
8664281b
PZ
423
424 spin_lock_irqsave(&dev_priv->irq_lock, flags);
425
426 ret = !intel_crtc->pch_fifo_underrun_disabled;
427
428 if (enable == ret)
429 goto done;
430
431 intel_crtc->pch_fifo_underrun_disabled = !enable;
432
433 if (HAS_PCH_IBX(dev))
de28075d 434 ibx_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
8664281b
PZ
435 else
436 cpt_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
437
438done:
439 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
440 return ret;
441}
442
443
7c463586
KP
444void
445i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
446{
46c06a30
VS
447 u32 reg = PIPESTAT(pipe);
448 u32 pipestat = I915_READ(reg) & 0x7fff0000;
7c463586 449
b79480ba
DV
450 assert_spin_locked(&dev_priv->irq_lock);
451
46c06a30
VS
452 if ((pipestat & mask) == mask)
453 return;
454
455 /* Enable the interrupt, clear any pending status */
456 pipestat |= mask | (mask >> 16);
457 I915_WRITE(reg, pipestat);
458 POSTING_READ(reg);
7c463586
KP
459}
460
461void
462i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
463{
46c06a30
VS
464 u32 reg = PIPESTAT(pipe);
465 u32 pipestat = I915_READ(reg) & 0x7fff0000;
7c463586 466
b79480ba
DV
467 assert_spin_locked(&dev_priv->irq_lock);
468
46c06a30
VS
469 if ((pipestat & mask) == 0)
470 return;
471
472 pipestat &= ~mask;
473 I915_WRITE(reg, pipestat);
474 POSTING_READ(reg);
7c463586
KP
475}
476
01c66889 477/**
f49e38dd 478 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
01c66889 479 */
f49e38dd 480static void i915_enable_asle_pipestat(struct drm_device *dev)
01c66889 481{
1ec14ad3
CW
482 drm_i915_private_t *dev_priv = dev->dev_private;
483 unsigned long irqflags;
484
f49e38dd
JN
485 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
486 return;
487
1ec14ad3 488 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
01c66889 489
f898780b
JN
490 i915_enable_pipestat(dev_priv, 1, PIPE_LEGACY_BLC_EVENT_ENABLE);
491 if (INTEL_INFO(dev)->gen >= 4)
492 i915_enable_pipestat(dev_priv, 0, PIPE_LEGACY_BLC_EVENT_ENABLE);
1ec14ad3
CW
493
494 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
01c66889
ZY
495}
496
0a3e67a4
JB
497/**
498 * i915_pipe_enabled - check if a pipe is enabled
499 * @dev: DRM device
500 * @pipe: pipe to check
501 *
502 * Reading certain registers when the pipe is disabled can hang the chip.
503 * Use this routine to make sure the PLL is running and the pipe is active
504 * before reading such registers if unsure.
505 */
506static int
507i915_pipe_enabled(struct drm_device *dev, int pipe)
508{
509 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
702e7a56 510
a01025af
DV
511 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
512 /* Locking is horribly broken here, but whatever. */
513 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
514 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
71f8ba6b 515
a01025af
DV
516 return intel_crtc->active;
517 } else {
518 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
519 }
0a3e67a4
JB
520}
521
4cdb83ec
VS
522static u32 i8xx_get_vblank_counter(struct drm_device *dev, int pipe)
523{
524 /* Gen2 doesn't have a hardware frame counter */
525 return 0;
526}
527
42f52ef8
KP
528/* Called from drm generic code, passed a 'crtc', which
529 * we use as a pipe index
530 */
f71d4af4 531static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
0a3e67a4
JB
532{
533 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
534 unsigned long high_frame;
535 unsigned long low_frame;
391f75e2 536 u32 high1, high2, low, pixel, vbl_start;
0a3e67a4
JB
537
538 if (!i915_pipe_enabled(dev, pipe)) {
44d98a61 539 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
9db4a9c7 540 "pipe %c\n", pipe_name(pipe));
0a3e67a4
JB
541 return 0;
542 }
543
391f75e2
VS
544 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
545 struct intel_crtc *intel_crtc =
546 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
547 const struct drm_display_mode *mode =
548 &intel_crtc->config.adjusted_mode;
549
550 vbl_start = mode->crtc_vblank_start * mode->crtc_htotal;
551 } else {
552 enum transcoder cpu_transcoder =
553 intel_pipe_to_cpu_transcoder(dev_priv, pipe);
554 u32 htotal;
555
556 htotal = ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff) + 1;
557 vbl_start = (I915_READ(VBLANK(cpu_transcoder)) & 0x1fff) + 1;
558
559 vbl_start *= htotal;
560 }
561
9db4a9c7
JB
562 high_frame = PIPEFRAME(pipe);
563 low_frame = PIPEFRAMEPIXEL(pipe);
5eddb70b 564
0a3e67a4
JB
565 /*
566 * High & low register fields aren't synchronized, so make sure
567 * we get a low value that's stable across two reads of the high
568 * register.
569 */
570 do {
5eddb70b 571 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
391f75e2 572 low = I915_READ(low_frame);
5eddb70b 573 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
0a3e67a4
JB
574 } while (high1 != high2);
575
5eddb70b 576 high1 >>= PIPE_FRAME_HIGH_SHIFT;
391f75e2 577 pixel = low & PIPE_PIXEL_MASK;
5eddb70b 578 low >>= PIPE_FRAME_LOW_SHIFT;
391f75e2
VS
579
580 /*
581 * The frame counter increments at beginning of active.
582 * Cook up a vblank counter by also checking the pixel
583 * counter against vblank start.
584 */
585 return ((high1 << 8) | low) + (pixel >= vbl_start);
0a3e67a4
JB
586}
587
f71d4af4 588static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
9880b7a5
JB
589{
590 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
9db4a9c7 591 int reg = PIPE_FRMCOUNT_GM45(pipe);
9880b7a5
JB
592
593 if (!i915_pipe_enabled(dev, pipe)) {
44d98a61 594 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
9db4a9c7 595 "pipe %c\n", pipe_name(pipe));
9880b7a5
JB
596 return 0;
597 }
598
599 return I915_READ(reg);
600}
601
7c06b08a 602static bool intel_pipe_in_vblank(struct drm_device *dev, enum pipe pipe)
54ddcbd2
VS
603{
604 struct drm_i915_private *dev_priv = dev->dev_private;
605 uint32_t status;
606
607 if (IS_VALLEYVIEW(dev)) {
608 status = pipe == PIPE_A ?
609 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT :
610 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
611
612 return I915_READ(VLV_ISR) & status;
7c06b08a
VS
613 } else if (IS_GEN2(dev)) {
614 status = pipe == PIPE_A ?
615 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT :
616 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
617
618 return I915_READ16(ISR) & status;
619 } else if (INTEL_INFO(dev)->gen < 5) {
54ddcbd2
VS
620 status = pipe == PIPE_A ?
621 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT :
622 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
623
624 return I915_READ(ISR) & status;
625 } else if (INTEL_INFO(dev)->gen < 7) {
626 status = pipe == PIPE_A ?
627 DE_PIPEA_VBLANK :
628 DE_PIPEB_VBLANK;
629
630 return I915_READ(DEISR) & status;
631 } else {
632 switch (pipe) {
633 default:
634 case PIPE_A:
635 status = DE_PIPEA_VBLANK_IVB;
636 break;
637 case PIPE_B:
638 status = DE_PIPEB_VBLANK_IVB;
639 break;
640 case PIPE_C:
641 status = DE_PIPEC_VBLANK_IVB;
642 break;
643 }
644
645 return I915_READ(DEISR) & status;
646 }
647}
648
f71d4af4 649static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
0af7e4df
MK
650 int *vpos, int *hpos)
651{
c2baf4b7
VS
652 struct drm_i915_private *dev_priv = dev->dev_private;
653 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
654 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
655 const struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
3aa18df8 656 int position;
0af7e4df
MK
657 int vbl_start, vbl_end, htotal, vtotal;
658 bool in_vbl = true;
659 int ret = 0;
660
c2baf4b7 661 if (!intel_crtc->active) {
0af7e4df 662 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
9db4a9c7 663 "pipe %c\n", pipe_name(pipe));
0af7e4df
MK
664 return 0;
665 }
666
c2baf4b7
VS
667 htotal = mode->crtc_htotal;
668 vtotal = mode->crtc_vtotal;
669 vbl_start = mode->crtc_vblank_start;
670 vbl_end = mode->crtc_vblank_end;
0af7e4df 671
c2baf4b7
VS
672 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
673
7c06b08a 674 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
0af7e4df
MK
675 /* No obvious pixelcount register. Only query vertical
676 * scanout position from Display scan line register.
677 */
7c06b08a
VS
678 if (IS_GEN2(dev))
679 position = I915_READ(PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
680 else
681 position = I915_READ(PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
0af7e4df 682
54ddcbd2
VS
683 /*
684 * The scanline counter increments at the leading edge
685 * of hsync, ie. it completely misses the active portion
686 * of the line. Fix up the counter at both edges of vblank
687 * to get a more accurate picture whether we're in vblank
688 * or not.
0af7e4df 689 */
7c06b08a 690 in_vbl = intel_pipe_in_vblank(dev, pipe);
54ddcbd2
VS
691 if ((in_vbl && position == vbl_start - 1) ||
692 (!in_vbl && position == vbl_end - 1))
693 position = (position + 1) % vtotal;
0af7e4df
MK
694 } else {
695 /* Have access to pixelcount since start of frame.
696 * We can split this into vertical and horizontal
697 * scanout position.
698 */
699 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
700
3aa18df8
VS
701 /* convert to pixel counts */
702 vbl_start *= htotal;
703 vbl_end *= htotal;
704 vtotal *= htotal;
0af7e4df
MK
705 }
706
3aa18df8 707 in_vbl = position >= vbl_start && position < vbl_end;
0af7e4df 708
3aa18df8
VS
709 /*
710 * While in vblank, position will be negative
711 * counting up towards 0 at vbl_end. And outside
712 * vblank, position will be positive counting
713 * up since vbl_end.
714 */
715 if (position >= vbl_start)
716 position -= vbl_end;
717 else
718 position += vtotal - vbl_end;
0af7e4df 719
7c06b08a 720 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
3aa18df8
VS
721 *vpos = position;
722 *hpos = 0;
723 } else {
724 *vpos = position / htotal;
725 *hpos = position - (*vpos * htotal);
726 }
0af7e4df
MK
727
728 /* In vblank? */
729 if (in_vbl)
730 ret |= DRM_SCANOUTPOS_INVBL;
731
732 return ret;
733}
734
f71d4af4 735static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
0af7e4df
MK
736 int *max_error,
737 struct timeval *vblank_time,
738 unsigned flags)
739{
4041b853 740 struct drm_crtc *crtc;
0af7e4df 741
7eb552ae 742 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
4041b853 743 DRM_ERROR("Invalid crtc %d\n", pipe);
0af7e4df
MK
744 return -EINVAL;
745 }
746
747 /* Get drm_crtc to timestamp: */
4041b853
CW
748 crtc = intel_get_crtc_for_pipe(dev, pipe);
749 if (crtc == NULL) {
750 DRM_ERROR("Invalid crtc %d\n", pipe);
751 return -EINVAL;
752 }
753
754 if (!crtc->enabled) {
755 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
756 return -EBUSY;
757 }
0af7e4df
MK
758
759 /* Helper routine in DRM core does all the work: */
4041b853
CW
760 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
761 vblank_time, flags,
762 crtc);
0af7e4df
MK
763}
764
67c347ff
JN
765static bool intel_hpd_irq_event(struct drm_device *dev,
766 struct drm_connector *connector)
321a1b30
EE
767{
768 enum drm_connector_status old_status;
769
770 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
771 old_status = connector->status;
772
773 connector->status = connector->funcs->detect(connector, false);
67c347ff
JN
774 if (old_status == connector->status)
775 return false;
776
777 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
321a1b30
EE
778 connector->base.id,
779 drm_get_connector_name(connector),
67c347ff
JN
780 drm_get_connector_status_name(old_status),
781 drm_get_connector_status_name(connector->status));
782
783 return true;
321a1b30
EE
784}
785
5ca58282
JB
786/*
787 * Handle hotplug events outside the interrupt handler proper.
788 */
ac4c16c5
EE
789#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
790
5ca58282
JB
791static void i915_hotplug_work_func(struct work_struct *work)
792{
793 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
794 hotplug_work);
795 struct drm_device *dev = dev_priv->dev;
c31c4ba3 796 struct drm_mode_config *mode_config = &dev->mode_config;
cd569aed
EE
797 struct intel_connector *intel_connector;
798 struct intel_encoder *intel_encoder;
799 struct drm_connector *connector;
800 unsigned long irqflags;
801 bool hpd_disabled = false;
321a1b30 802 bool changed = false;
142e2398 803 u32 hpd_event_bits;
4ef69c7a 804
52d7eced
DV
805 /* HPD irq before everything is fully set up. */
806 if (!dev_priv->enable_hotplug_processing)
807 return;
808
a65e34c7 809 mutex_lock(&mode_config->mutex);
e67189ab
JB
810 DRM_DEBUG_KMS("running encoder hotplug functions\n");
811
cd569aed 812 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
142e2398
EE
813
814 hpd_event_bits = dev_priv->hpd_event_bits;
815 dev_priv->hpd_event_bits = 0;
cd569aed
EE
816 list_for_each_entry(connector, &mode_config->connector_list, head) {
817 intel_connector = to_intel_connector(connector);
818 intel_encoder = intel_connector->encoder;
819 if (intel_encoder->hpd_pin > HPD_NONE &&
820 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
821 connector->polled == DRM_CONNECTOR_POLL_HPD) {
822 DRM_INFO("HPD interrupt storm detected on connector %s: "
823 "switching from hotplug detection to polling\n",
824 drm_get_connector_name(connector));
825 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
826 connector->polled = DRM_CONNECTOR_POLL_CONNECT
827 | DRM_CONNECTOR_POLL_DISCONNECT;
828 hpd_disabled = true;
829 }
142e2398
EE
830 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
831 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
832 drm_get_connector_name(connector), intel_encoder->hpd_pin);
833 }
cd569aed
EE
834 }
835 /* if there were no outputs to poll, poll was disabled,
836 * therefore make sure it's enabled when disabling HPD on
837 * some connectors */
ac4c16c5 838 if (hpd_disabled) {
cd569aed 839 drm_kms_helper_poll_enable(dev);
ac4c16c5
EE
840 mod_timer(&dev_priv->hotplug_reenable_timer,
841 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
842 }
cd569aed
EE
843
844 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
845
321a1b30
EE
846 list_for_each_entry(connector, &mode_config->connector_list, head) {
847 intel_connector = to_intel_connector(connector);
848 intel_encoder = intel_connector->encoder;
849 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
850 if (intel_encoder->hot_plug)
851 intel_encoder->hot_plug(intel_encoder);
852 if (intel_hpd_irq_event(dev, connector))
853 changed = true;
854 }
855 }
40ee3381
KP
856 mutex_unlock(&mode_config->mutex);
857
321a1b30
EE
858 if (changed)
859 drm_kms_helper_hotplug_event(dev);
5ca58282
JB
860}
861
d0ecd7e2 862static void ironlake_rps_change_irq_handler(struct drm_device *dev)
f97108d1
JB
863{
864 drm_i915_private_t *dev_priv = dev->dev_private;
b5b72e89 865 u32 busy_up, busy_down, max_avg, min_avg;
9270388e 866 u8 new_delay;
9270388e 867
d0ecd7e2 868 spin_lock(&mchdev_lock);
f97108d1 869
73edd18f
DV
870 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
871
20e4d407 872 new_delay = dev_priv->ips.cur_delay;
9270388e 873
7648fa99 874 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
b5b72e89
MG
875 busy_up = I915_READ(RCPREVBSYTUPAVG);
876 busy_down = I915_READ(RCPREVBSYTDNAVG);
f97108d1
JB
877 max_avg = I915_READ(RCBMAXAVG);
878 min_avg = I915_READ(RCBMINAVG);
879
880 /* Handle RCS change request from hw */
b5b72e89 881 if (busy_up > max_avg) {
20e4d407
DV
882 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
883 new_delay = dev_priv->ips.cur_delay - 1;
884 if (new_delay < dev_priv->ips.max_delay)
885 new_delay = dev_priv->ips.max_delay;
b5b72e89 886 } else if (busy_down < min_avg) {
20e4d407
DV
887 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
888 new_delay = dev_priv->ips.cur_delay + 1;
889 if (new_delay > dev_priv->ips.min_delay)
890 new_delay = dev_priv->ips.min_delay;
f97108d1
JB
891 }
892
7648fa99 893 if (ironlake_set_drps(dev, new_delay))
20e4d407 894 dev_priv->ips.cur_delay = new_delay;
f97108d1 895
d0ecd7e2 896 spin_unlock(&mchdev_lock);
9270388e 897
f97108d1
JB
898 return;
899}
900
549f7365
CW
901static void notify_ring(struct drm_device *dev,
902 struct intel_ring_buffer *ring)
903{
475553de
CW
904 if (ring->obj == NULL)
905 return;
906
814e9b57 907 trace_i915_gem_request_complete(ring);
9862e600 908
549f7365 909 wake_up_all(&ring->irq_queue);
10cd45b6 910 i915_queue_hangcheck(dev);
549f7365
CW
911}
912
4912d041 913static void gen6_pm_rps_work(struct work_struct *work)
3b8d8d91 914{
4912d041 915 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
c6a828d3 916 rps.work);
edbfdb45 917 u32 pm_iir;
dd75fdc8 918 int new_delay, adj;
4912d041 919
59cdb63d 920 spin_lock_irq(&dev_priv->irq_lock);
c6a828d3
DV
921 pm_iir = dev_priv->rps.pm_iir;
922 dev_priv->rps.pm_iir = 0;
4848405c 923 /* Make sure not to corrupt PMIMR state used by ringbuffer code */
edbfdb45 924 snb_enable_pm_irq(dev_priv, GEN6_PM_RPS_EVENTS);
59cdb63d 925 spin_unlock_irq(&dev_priv->irq_lock);
3b8d8d91 926
60611c13
PZ
927 /* Make sure we didn't queue anything we're not going to process. */
928 WARN_ON(pm_iir & ~GEN6_PM_RPS_EVENTS);
929
4848405c 930 if ((pm_iir & GEN6_PM_RPS_EVENTS) == 0)
3b8d8d91
JB
931 return;
932
4fc688ce 933 mutex_lock(&dev_priv->rps.hw_lock);
7b9e0ae6 934
dd75fdc8 935 adj = dev_priv->rps.last_adj;
7425034a 936 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
dd75fdc8
CW
937 if (adj > 0)
938 adj *= 2;
939 else
940 adj = 1;
941 new_delay = dev_priv->rps.cur_delay + adj;
7425034a
VS
942
943 /*
944 * For better performance, jump directly
945 * to RPe if we're below it.
946 */
dd75fdc8
CW
947 if (new_delay < dev_priv->rps.rpe_delay)
948 new_delay = dev_priv->rps.rpe_delay;
949 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
950 if (dev_priv->rps.cur_delay > dev_priv->rps.rpe_delay)
7425034a 951 new_delay = dev_priv->rps.rpe_delay;
dd75fdc8
CW
952 else
953 new_delay = dev_priv->rps.min_delay;
954 adj = 0;
955 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
956 if (adj < 0)
957 adj *= 2;
958 else
959 adj = -1;
960 new_delay = dev_priv->rps.cur_delay + adj;
961 } else { /* unknown event */
962 new_delay = dev_priv->rps.cur_delay;
963 }
3b8d8d91 964
79249636
BW
965 /* sysfs frequency interfaces may have snuck in while servicing the
966 * interrupt
967 */
dd75fdc8
CW
968 if (new_delay < (int)dev_priv->rps.min_delay)
969 new_delay = dev_priv->rps.min_delay;
970 if (new_delay > (int)dev_priv->rps.max_delay)
971 new_delay = dev_priv->rps.max_delay;
972 dev_priv->rps.last_adj = new_delay - dev_priv->rps.cur_delay;
973
974 if (IS_VALLEYVIEW(dev_priv->dev))
975 valleyview_set_rps(dev_priv->dev, new_delay);
976 else
977 gen6_set_rps(dev_priv->dev, new_delay);
3b8d8d91 978
4fc688ce 979 mutex_unlock(&dev_priv->rps.hw_lock);
3b8d8d91
JB
980}
981
e3689190
BW
982
983/**
984 * ivybridge_parity_work - Workqueue called when a parity error interrupt
985 * occurred.
986 * @work: workqueue struct
987 *
988 * Doesn't actually do anything except notify userspace. As a consequence of
989 * this event, userspace should try to remap the bad rows since statistically
990 * it is likely the same row is more likely to go bad again.
991 */
992static void ivybridge_parity_work(struct work_struct *work)
993{
994 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
a4da4fa4 995 l3_parity.error_work);
e3689190 996 u32 error_status, row, bank, subbank;
35a85ac6 997 char *parity_event[6];
e3689190
BW
998 uint32_t misccpctl;
999 unsigned long flags;
35a85ac6 1000 uint8_t slice = 0;
e3689190
BW
1001
1002 /* We must turn off DOP level clock gating to access the L3 registers.
1003 * In order to prevent a get/put style interface, acquire struct mutex
1004 * any time we access those registers.
1005 */
1006 mutex_lock(&dev_priv->dev->struct_mutex);
1007
35a85ac6
BW
1008 /* If we've screwed up tracking, just let the interrupt fire again */
1009 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1010 goto out;
1011
e3689190
BW
1012 misccpctl = I915_READ(GEN7_MISCCPCTL);
1013 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1014 POSTING_READ(GEN7_MISCCPCTL);
1015
35a85ac6
BW
1016 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
1017 u32 reg;
e3689190 1018
35a85ac6
BW
1019 slice--;
1020 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1021 break;
e3689190 1022
35a85ac6 1023 dev_priv->l3_parity.which_slice &= ~(1<<slice);
e3689190 1024
35a85ac6 1025 reg = GEN7_L3CDERRST1 + (slice * 0x200);
e3689190 1026
35a85ac6
BW
1027 error_status = I915_READ(reg);
1028 row = GEN7_PARITY_ERROR_ROW(error_status);
1029 bank = GEN7_PARITY_ERROR_BANK(error_status);
1030 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1031
1032 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1033 POSTING_READ(reg);
1034
1035 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1036 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1037 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1038 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1039 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1040 parity_event[5] = NULL;
1041
5bdebb18 1042 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
35a85ac6 1043 KOBJ_CHANGE, parity_event);
e3689190 1044
35a85ac6
BW
1045 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1046 slice, row, bank, subbank);
e3689190 1047
35a85ac6
BW
1048 kfree(parity_event[4]);
1049 kfree(parity_event[3]);
1050 kfree(parity_event[2]);
1051 kfree(parity_event[1]);
1052 }
e3689190 1053
35a85ac6 1054 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
e3689190 1055
35a85ac6
BW
1056out:
1057 WARN_ON(dev_priv->l3_parity.which_slice);
1058 spin_lock_irqsave(&dev_priv->irq_lock, flags);
1059 ilk_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
1060 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1061
1062 mutex_unlock(&dev_priv->dev->struct_mutex);
e3689190
BW
1063}
1064
35a85ac6 1065static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
e3689190
BW
1066{
1067 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
e3689190 1068
040d2baa 1069 if (!HAS_L3_DPF(dev))
e3689190
BW
1070 return;
1071
d0ecd7e2 1072 spin_lock(&dev_priv->irq_lock);
35a85ac6 1073 ilk_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
d0ecd7e2 1074 spin_unlock(&dev_priv->irq_lock);
e3689190 1075
35a85ac6
BW
1076 iir &= GT_PARITY_ERROR(dev);
1077 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1078 dev_priv->l3_parity.which_slice |= 1 << 1;
1079
1080 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1081 dev_priv->l3_parity.which_slice |= 1 << 0;
1082
a4da4fa4 1083 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
e3689190
BW
1084}
1085
f1af8fc1
PZ
1086static void ilk_gt_irq_handler(struct drm_device *dev,
1087 struct drm_i915_private *dev_priv,
1088 u32 gt_iir)
1089{
1090 if (gt_iir &
1091 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
1092 notify_ring(dev, &dev_priv->ring[RCS]);
1093 if (gt_iir & ILK_BSD_USER_INTERRUPT)
1094 notify_ring(dev, &dev_priv->ring[VCS]);
1095}
1096
e7b4c6b1
DV
1097static void snb_gt_irq_handler(struct drm_device *dev,
1098 struct drm_i915_private *dev_priv,
1099 u32 gt_iir)
1100{
1101
cc609d5d
BW
1102 if (gt_iir &
1103 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
e7b4c6b1 1104 notify_ring(dev, &dev_priv->ring[RCS]);
cc609d5d 1105 if (gt_iir & GT_BSD_USER_INTERRUPT)
e7b4c6b1 1106 notify_ring(dev, &dev_priv->ring[VCS]);
cc609d5d 1107 if (gt_iir & GT_BLT_USER_INTERRUPT)
e7b4c6b1
DV
1108 notify_ring(dev, &dev_priv->ring[BCS]);
1109
cc609d5d
BW
1110 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1111 GT_BSD_CS_ERROR_INTERRUPT |
1112 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
e7b4c6b1
DV
1113 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
1114 i915_handle_error(dev, false);
1115 }
e3689190 1116
35a85ac6
BW
1117 if (gt_iir & GT_PARITY_ERROR(dev))
1118 ivybridge_parity_error_irq_handler(dev, gt_iir);
e7b4c6b1
DV
1119}
1120
b543fb04
EE
1121#define HPD_STORM_DETECT_PERIOD 1000
1122#define HPD_STORM_THRESHOLD 5
1123
10a504de 1124static inline void intel_hpd_irq_handler(struct drm_device *dev,
22062dba
DV
1125 u32 hotplug_trigger,
1126 const u32 *hpd)
b543fb04
EE
1127{
1128 drm_i915_private_t *dev_priv = dev->dev_private;
b543fb04 1129 int i;
10a504de 1130 bool storm_detected = false;
b543fb04 1131
91d131d2
DV
1132 if (!hotplug_trigger)
1133 return;
1134
b5ea2d56 1135 spin_lock(&dev_priv->irq_lock);
b543fb04 1136 for (i = 1; i < HPD_NUM_PINS; i++) {
821450c6 1137
b8f102e8
EE
1138 WARN(((hpd[i] & hotplug_trigger) &&
1139 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED),
1140 "Received HPD interrupt although disabled\n");
1141
b543fb04
EE
1142 if (!(hpd[i] & hotplug_trigger) ||
1143 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
1144 continue;
1145
bc5ead8c 1146 dev_priv->hpd_event_bits |= (1 << i);
b543fb04
EE
1147 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
1148 dev_priv->hpd_stats[i].hpd_last_jiffies
1149 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
1150 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
1151 dev_priv->hpd_stats[i].hpd_cnt = 0;
b8f102e8 1152 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", i);
b543fb04
EE
1153 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
1154 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
142e2398 1155 dev_priv->hpd_event_bits &= ~(1 << i);
b543fb04 1156 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
10a504de 1157 storm_detected = true;
b543fb04
EE
1158 } else {
1159 dev_priv->hpd_stats[i].hpd_cnt++;
b8f102e8
EE
1160 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", i,
1161 dev_priv->hpd_stats[i].hpd_cnt);
b543fb04
EE
1162 }
1163 }
1164
10a504de
DV
1165 if (storm_detected)
1166 dev_priv->display.hpd_irq_setup(dev);
b5ea2d56 1167 spin_unlock(&dev_priv->irq_lock);
5876fa0d 1168
645416f5
DV
1169 /*
1170 * Our hotplug handler can grab modeset locks (by calling down into the
1171 * fb helpers). Hence it must not be run on our own dev-priv->wq work
1172 * queue for otherwise the flush_work in the pageflip code will
1173 * deadlock.
1174 */
1175 schedule_work(&dev_priv->hotplug_work);
b543fb04
EE
1176}
1177
515ac2bb
DV
1178static void gmbus_irq_handler(struct drm_device *dev)
1179{
28c70f16
DV
1180 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
1181
28c70f16 1182 wake_up_all(&dev_priv->gmbus_wait_queue);
515ac2bb
DV
1183}
1184
ce99c256
DV
1185static void dp_aux_irq_handler(struct drm_device *dev)
1186{
9ee32fea
DV
1187 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
1188
9ee32fea 1189 wake_up_all(&dev_priv->gmbus_wait_queue);
ce99c256
DV
1190}
1191
8bf1e9f1 1192#if defined(CONFIG_DEBUG_FS)
eba94eb9
DV
1193static void display_pipe_crc_update(struct drm_device *dev, enum pipe pipe,
1194 uint32_t crc0, uint32_t crc1,
1195 uint32_t crc2, uint32_t crc3,
8bc5e955 1196 uint32_t crc4)
8bf1e9f1
SH
1197{
1198 struct drm_i915_private *dev_priv = dev->dev_private;
1199 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1200 struct intel_pipe_crc_entry *entry;
ac2300d4 1201 int head, tail;
b2c88f5b 1202
0c912c79
DL
1203 if (!pipe_crc->entries) {
1204 DRM_ERROR("spurious interrupt\n");
1205 return;
1206 }
1207
b2c88f5b
DL
1208 head = atomic_read(&pipe_crc->head);
1209 tail = atomic_read(&pipe_crc->tail);
1210
1211 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
1212 DRM_ERROR("CRC buffer overflowing\n");
1213 return;
1214 }
1215
1216 entry = &pipe_crc->entries[head];
8bf1e9f1 1217
8bc5e955 1218 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
eba94eb9
DV
1219 entry->crc[0] = crc0;
1220 entry->crc[1] = crc1;
1221 entry->crc[2] = crc2;
1222 entry->crc[3] = crc3;
1223 entry->crc[4] = crc4;
b2c88f5b
DL
1224
1225 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
1226 atomic_set(&pipe_crc->head, head);
07144428
DL
1227
1228 wake_up_interruptible(&pipe_crc->wq);
8bf1e9f1 1229}
eba94eb9 1230
5a69b89f
DV
1231static void hsw_pipe_crc_update(struct drm_device *dev, enum pipe pipe)
1232{
1233 struct drm_i915_private *dev_priv = dev->dev_private;
1234
1235 display_pipe_crc_update(dev, pipe,
1236 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1237 0, 0, 0, 0);
1238}
1239
eba94eb9
DV
1240static void ivb_pipe_crc_update(struct drm_device *dev, enum pipe pipe)
1241{
1242 struct drm_i915_private *dev_priv = dev->dev_private;
1243
1244 display_pipe_crc_update(dev, pipe,
1245 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1246 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1247 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1248 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
8bc5e955 1249 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
eba94eb9 1250}
5b3a856b
DV
1251
1252static void ilk_pipe_crc_update(struct drm_device *dev, enum pipe pipe)
1253{
1254 struct drm_i915_private *dev_priv = dev->dev_private;
1255
1256 display_pipe_crc_update(dev, pipe,
1257 I915_READ(PIPE_CRC_RES_RED_ILK(pipe)),
1258 I915_READ(PIPE_CRC_RES_GREEN_ILK(pipe)),
1259 I915_READ(PIPE_CRC_RES_BLUE_ILK(pipe)),
1260 I915_READ(PIPE_CRC_RES_RES1_ILK(pipe)),
8bc5e955 1261 I915_READ(PIPE_CRC_RES_RES2_ILK(pipe)));
5b3a856b 1262}
8bf1e9f1 1263#else
5a69b89f 1264static inline void hsw_pipe_crc_update(struct drm_device *dev, int pipe) {}
f8c168fa 1265static inline void ivb_pipe_crc_update(struct drm_device *dev, int pipe) {}
5b3a856b 1266static inline void ilk_pipe_crc_update(struct drm_device *dev, int pipe) {}
8bf1e9f1
SH
1267#endif
1268
1403c0d4
PZ
1269/* The RPS events need forcewake, so we add them to a work queue and mask their
1270 * IMR bits until the work is done. Other interrupts can be processed without
1271 * the work queue. */
1272static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
baf02a1f 1273{
41a05a3a 1274 if (pm_iir & GEN6_PM_RPS_EVENTS) {
59cdb63d 1275 spin_lock(&dev_priv->irq_lock);
41a05a3a 1276 dev_priv->rps.pm_iir |= pm_iir & GEN6_PM_RPS_EVENTS;
4d3b3d5f 1277 snb_disable_pm_irq(dev_priv, pm_iir & GEN6_PM_RPS_EVENTS);
59cdb63d 1278 spin_unlock(&dev_priv->irq_lock);
2adbee62
DV
1279
1280 queue_work(dev_priv->wq, &dev_priv->rps.work);
baf02a1f 1281 }
baf02a1f 1282
1403c0d4
PZ
1283 if (HAS_VEBOX(dev_priv->dev)) {
1284 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
1285 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
12638c57 1286
1403c0d4
PZ
1287 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
1288 DRM_ERROR("VEBOX CS error interrupt 0x%08x\n", pm_iir);
1289 i915_handle_error(dev_priv->dev, false);
1290 }
12638c57 1291 }
baf02a1f
BW
1292}
1293
ff1f525e 1294static irqreturn_t valleyview_irq_handler(int irq, void *arg)
7e231dbe
JB
1295{
1296 struct drm_device *dev = (struct drm_device *) arg;
1297 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1298 u32 iir, gt_iir, pm_iir;
1299 irqreturn_t ret = IRQ_NONE;
1300 unsigned long irqflags;
1301 int pipe;
1302 u32 pipe_stats[I915_MAX_PIPES];
7e231dbe
JB
1303
1304 atomic_inc(&dev_priv->irq_received);
1305
7e231dbe
JB
1306 while (true) {
1307 iir = I915_READ(VLV_IIR);
1308 gt_iir = I915_READ(GTIIR);
1309 pm_iir = I915_READ(GEN6_PMIIR);
1310
1311 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1312 goto out;
1313
1314 ret = IRQ_HANDLED;
1315
e7b4c6b1 1316 snb_gt_irq_handler(dev, dev_priv, gt_iir);
7e231dbe
JB
1317
1318 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1319 for_each_pipe(pipe) {
1320 int reg = PIPESTAT(pipe);
1321 pipe_stats[pipe] = I915_READ(reg);
1322
1323 /*
1324 * Clear the PIPE*STAT regs before the IIR
1325 */
1326 if (pipe_stats[pipe] & 0x8000ffff) {
1327 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1328 DRM_DEBUG_DRIVER("pipe %c underrun\n",
1329 pipe_name(pipe));
1330 I915_WRITE(reg, pipe_stats[pipe]);
1331 }
1332 }
1333 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1334
31acc7f5
JB
1335 for_each_pipe(pipe) {
1336 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
1337 drm_handle_vblank(dev, pipe);
1338
1339 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
1340 intel_prepare_page_flip(dev, pipe);
1341 intel_finish_page_flip(dev, pipe);
1342 }
1343 }
1344
7e231dbe
JB
1345 /* Consume port. Then clear IIR or we'll miss events */
1346 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
1347 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
b543fb04 1348 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
7e231dbe
JB
1349
1350 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
1351 hotplug_status);
91d131d2
DV
1352
1353 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
1354
7e231dbe
JB
1355 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1356 I915_READ(PORT_HOTPLUG_STAT);
1357 }
1358
515ac2bb
DV
1359 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1360 gmbus_irq_handler(dev);
7e231dbe 1361
60611c13 1362 if (pm_iir)
d0ecd7e2 1363 gen6_rps_irq_handler(dev_priv, pm_iir);
7e231dbe
JB
1364
1365 I915_WRITE(GTIIR, gt_iir);
1366 I915_WRITE(GEN6_PMIIR, pm_iir);
1367 I915_WRITE(VLV_IIR, iir);
1368 }
1369
1370out:
1371 return ret;
1372}
1373
23e81d69 1374static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
776ad806
JB
1375{
1376 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
9db4a9c7 1377 int pipe;
b543fb04 1378 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
776ad806 1379
91d131d2
DV
1380 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_ibx);
1381
cfc33bf7
VS
1382 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1383 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1384 SDE_AUDIO_POWER_SHIFT);
776ad806 1385 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
cfc33bf7
VS
1386 port_name(port));
1387 }
776ad806 1388
ce99c256
DV
1389 if (pch_iir & SDE_AUX_MASK)
1390 dp_aux_irq_handler(dev);
1391
776ad806 1392 if (pch_iir & SDE_GMBUS)
515ac2bb 1393 gmbus_irq_handler(dev);
776ad806
JB
1394
1395 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1396 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1397
1398 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1399 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1400
1401 if (pch_iir & SDE_POISON)
1402 DRM_ERROR("PCH poison interrupt\n");
1403
9db4a9c7
JB
1404 if (pch_iir & SDE_FDI_MASK)
1405 for_each_pipe(pipe)
1406 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1407 pipe_name(pipe),
1408 I915_READ(FDI_RX_IIR(pipe)));
776ad806
JB
1409
1410 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1411 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1412
1413 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1414 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1415
776ad806 1416 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
8664281b
PZ
1417 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1418 false))
1419 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1420
1421 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1422 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1423 false))
1424 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1425}
1426
1427static void ivb_err_int_handler(struct drm_device *dev)
1428{
1429 struct drm_i915_private *dev_priv = dev->dev_private;
1430 u32 err_int = I915_READ(GEN7_ERR_INT);
5a69b89f 1431 enum pipe pipe;
8664281b 1432
de032bf4
PZ
1433 if (err_int & ERR_INT_POISON)
1434 DRM_ERROR("Poison interrupt\n");
1435
5a69b89f
DV
1436 for_each_pipe(pipe) {
1437 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe)) {
1438 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
1439 false))
1440 DRM_DEBUG_DRIVER("Pipe %c FIFO underrun\n",
1441 pipe_name(pipe));
1442 }
8664281b 1443
5a69b89f
DV
1444 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
1445 if (IS_IVYBRIDGE(dev))
1446 ivb_pipe_crc_update(dev, pipe);
1447 else
1448 hsw_pipe_crc_update(dev, pipe);
1449 }
1450 }
8664281b
PZ
1451
1452 I915_WRITE(GEN7_ERR_INT, err_int);
1453}
1454
1455static void cpt_serr_int_handler(struct drm_device *dev)
1456{
1457 struct drm_i915_private *dev_priv = dev->dev_private;
1458 u32 serr_int = I915_READ(SERR_INT);
1459
de032bf4
PZ
1460 if (serr_int & SERR_INT_POISON)
1461 DRM_ERROR("PCH poison interrupt\n");
1462
8664281b
PZ
1463 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1464 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1465 false))
1466 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1467
1468 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1469 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1470 false))
1471 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1472
1473 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1474 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1475 false))
1476 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1477
1478 I915_WRITE(SERR_INT, serr_int);
776ad806
JB
1479}
1480
23e81d69
AJ
1481static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1482{
1483 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1484 int pipe;
b543fb04 1485 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
23e81d69 1486
91d131d2
DV
1487 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_cpt);
1488
cfc33bf7
VS
1489 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1490 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1491 SDE_AUDIO_POWER_SHIFT_CPT);
1492 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1493 port_name(port));
1494 }
23e81d69
AJ
1495
1496 if (pch_iir & SDE_AUX_MASK_CPT)
ce99c256 1497 dp_aux_irq_handler(dev);
23e81d69
AJ
1498
1499 if (pch_iir & SDE_GMBUS_CPT)
515ac2bb 1500 gmbus_irq_handler(dev);
23e81d69
AJ
1501
1502 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1503 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1504
1505 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1506 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1507
1508 if (pch_iir & SDE_FDI_MASK_CPT)
1509 for_each_pipe(pipe)
1510 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1511 pipe_name(pipe),
1512 I915_READ(FDI_RX_IIR(pipe)));
8664281b
PZ
1513
1514 if (pch_iir & SDE_ERROR_CPT)
1515 cpt_serr_int_handler(dev);
23e81d69
AJ
1516}
1517
c008bc6e
PZ
1518static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
1519{
1520 struct drm_i915_private *dev_priv = dev->dev_private;
1521
1522 if (de_iir & DE_AUX_CHANNEL_A)
1523 dp_aux_irq_handler(dev);
1524
1525 if (de_iir & DE_GSE)
1526 intel_opregion_asle_intr(dev);
1527
1528 if (de_iir & DE_PIPEA_VBLANK)
1529 drm_handle_vblank(dev, 0);
1530
1531 if (de_iir & DE_PIPEB_VBLANK)
1532 drm_handle_vblank(dev, 1);
1533
1534 if (de_iir & DE_POISON)
1535 DRM_ERROR("Poison interrupt\n");
1536
1537 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1538 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1539 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1540
1541 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1542 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1543 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1544
5b3a856b
DV
1545 if (de_iir & DE_PIPEA_CRC_DONE)
1546 ilk_pipe_crc_update(dev, PIPE_A);
1547
1548 if (de_iir & DE_PIPEB_CRC_DONE)
1549 ilk_pipe_crc_update(dev, PIPE_B);
1550
c008bc6e
PZ
1551 if (de_iir & DE_PLANEA_FLIP_DONE) {
1552 intel_prepare_page_flip(dev, 0);
1553 intel_finish_page_flip_plane(dev, 0);
1554 }
1555
1556 if (de_iir & DE_PLANEB_FLIP_DONE) {
1557 intel_prepare_page_flip(dev, 1);
1558 intel_finish_page_flip_plane(dev, 1);
1559 }
1560
1561 /* check event from PCH */
1562 if (de_iir & DE_PCH_EVENT) {
1563 u32 pch_iir = I915_READ(SDEIIR);
1564
1565 if (HAS_PCH_CPT(dev))
1566 cpt_irq_handler(dev, pch_iir);
1567 else
1568 ibx_irq_handler(dev, pch_iir);
1569
1570 /* should clear PCH hotplug event before clear CPU irq */
1571 I915_WRITE(SDEIIR, pch_iir);
1572 }
1573
1574 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
1575 ironlake_rps_change_irq_handler(dev);
1576}
1577
9719fb98
PZ
1578static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
1579{
1580 struct drm_i915_private *dev_priv = dev->dev_private;
1581 int i;
1582
1583 if (de_iir & DE_ERR_INT_IVB)
1584 ivb_err_int_handler(dev);
1585
1586 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1587 dp_aux_irq_handler(dev);
1588
1589 if (de_iir & DE_GSE_IVB)
1590 intel_opregion_asle_intr(dev);
1591
1592 for (i = 0; i < 3; i++) {
1593 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1594 drm_handle_vblank(dev, i);
1595 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1596 intel_prepare_page_flip(dev, i);
1597 intel_finish_page_flip_plane(dev, i);
1598 }
1599 }
1600
1601 /* check event from PCH */
1602 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
1603 u32 pch_iir = I915_READ(SDEIIR);
1604
1605 cpt_irq_handler(dev, pch_iir);
1606
1607 /* clear PCH hotplug event before clear CPU irq */
1608 I915_WRITE(SDEIIR, pch_iir);
1609 }
1610}
1611
f1af8fc1 1612static irqreturn_t ironlake_irq_handler(int irq, void *arg)
b1f14ad0
JB
1613{
1614 struct drm_device *dev = (struct drm_device *) arg;
1615 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
f1af8fc1 1616 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
0e43406b 1617 irqreturn_t ret = IRQ_NONE;
b1f14ad0
JB
1618
1619 atomic_inc(&dev_priv->irq_received);
1620
8664281b
PZ
1621 /* We get interrupts on unclaimed registers, so check for this before we
1622 * do any I915_{READ,WRITE}. */
907b28c5 1623 intel_uncore_check_errors(dev);
8664281b 1624
b1f14ad0
JB
1625 /* disable master interrupt before clearing iir */
1626 de_ier = I915_READ(DEIER);
1627 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
23a78516 1628 POSTING_READ(DEIER);
b1f14ad0 1629
44498aea
PZ
1630 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1631 * interrupts will will be stored on its back queue, and then we'll be
1632 * able to process them after we restore SDEIER (as soon as we restore
1633 * it, we'll get an interrupt if SDEIIR still has something to process
1634 * due to its back queue). */
ab5c608b
BW
1635 if (!HAS_PCH_NOP(dev)) {
1636 sde_ier = I915_READ(SDEIER);
1637 I915_WRITE(SDEIER, 0);
1638 POSTING_READ(SDEIER);
1639 }
44498aea 1640
b1f14ad0 1641 gt_iir = I915_READ(GTIIR);
0e43406b 1642 if (gt_iir) {
d8fc8a47 1643 if (INTEL_INFO(dev)->gen >= 6)
f1af8fc1 1644 snb_gt_irq_handler(dev, dev_priv, gt_iir);
d8fc8a47
PZ
1645 else
1646 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
0e43406b
CW
1647 I915_WRITE(GTIIR, gt_iir);
1648 ret = IRQ_HANDLED;
b1f14ad0
JB
1649 }
1650
0e43406b
CW
1651 de_iir = I915_READ(DEIIR);
1652 if (de_iir) {
f1af8fc1
PZ
1653 if (INTEL_INFO(dev)->gen >= 7)
1654 ivb_display_irq_handler(dev, de_iir);
1655 else
1656 ilk_display_irq_handler(dev, de_iir);
0e43406b
CW
1657 I915_WRITE(DEIIR, de_iir);
1658 ret = IRQ_HANDLED;
b1f14ad0
JB
1659 }
1660
f1af8fc1
PZ
1661 if (INTEL_INFO(dev)->gen >= 6) {
1662 u32 pm_iir = I915_READ(GEN6_PMIIR);
1663 if (pm_iir) {
1403c0d4 1664 gen6_rps_irq_handler(dev_priv, pm_iir);
f1af8fc1
PZ
1665 I915_WRITE(GEN6_PMIIR, pm_iir);
1666 ret = IRQ_HANDLED;
1667 }
0e43406b 1668 }
b1f14ad0 1669
b1f14ad0
JB
1670 I915_WRITE(DEIER, de_ier);
1671 POSTING_READ(DEIER);
ab5c608b
BW
1672 if (!HAS_PCH_NOP(dev)) {
1673 I915_WRITE(SDEIER, sde_ier);
1674 POSTING_READ(SDEIER);
1675 }
b1f14ad0
JB
1676
1677 return ret;
1678}
1679
17e1df07
DV
1680static void i915_error_wake_up(struct drm_i915_private *dev_priv,
1681 bool reset_completed)
1682{
1683 struct intel_ring_buffer *ring;
1684 int i;
1685
1686 /*
1687 * Notify all waiters for GPU completion events that reset state has
1688 * been changed, and that they need to restart their wait after
1689 * checking for potential errors (and bail out to drop locks if there is
1690 * a gpu reset pending so that i915_error_work_func can acquire them).
1691 */
1692
1693 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
1694 for_each_ring(ring, dev_priv, i)
1695 wake_up_all(&ring->irq_queue);
1696
1697 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
1698 wake_up_all(&dev_priv->pending_flip_queue);
1699
1700 /*
1701 * Signal tasks blocked in i915_gem_wait_for_error that the pending
1702 * reset state is cleared.
1703 */
1704 if (reset_completed)
1705 wake_up_all(&dev_priv->gpu_error.reset_queue);
1706}
1707
8a905236
JB
1708/**
1709 * i915_error_work_func - do process context error handling work
1710 * @work: work struct
1711 *
1712 * Fire an error uevent so userspace can see that a hang or error
1713 * was detected.
1714 */
1715static void i915_error_work_func(struct work_struct *work)
1716{
1f83fee0
DV
1717 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1718 work);
1719 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1720 gpu_error);
8a905236 1721 struct drm_device *dev = dev_priv->dev;
cce723ed
BW
1722 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
1723 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
1724 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
17e1df07 1725 int ret;
8a905236 1726
5bdebb18 1727 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
f316a42c 1728
7db0ba24
DV
1729 /*
1730 * Note that there's only one work item which does gpu resets, so we
1731 * need not worry about concurrent gpu resets potentially incrementing
1732 * error->reset_counter twice. We only need to take care of another
1733 * racing irq/hangcheck declaring the gpu dead for a second time. A
1734 * quick check for that is good enough: schedule_work ensures the
1735 * correct ordering between hang detection and this work item, and since
1736 * the reset in-progress bit is only ever set by code outside of this
1737 * work we don't need to worry about any other races.
1738 */
1739 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
f803aa55 1740 DRM_DEBUG_DRIVER("resetting chip\n");
5bdebb18 1741 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
7db0ba24 1742 reset_event);
1f83fee0 1743
17e1df07
DV
1744 /*
1745 * All state reset _must_ be completed before we update the
1746 * reset counter, for otherwise waiters might miss the reset
1747 * pending state and not properly drop locks, resulting in
1748 * deadlocks with the reset work.
1749 */
f69061be
DV
1750 ret = i915_reset(dev);
1751
17e1df07
DV
1752 intel_display_handle_reset(dev);
1753
f69061be
DV
1754 if (ret == 0) {
1755 /*
1756 * After all the gem state is reset, increment the reset
1757 * counter and wake up everyone waiting for the reset to
1758 * complete.
1759 *
1760 * Since unlock operations are a one-sided barrier only,
1761 * we need to insert a barrier here to order any seqno
1762 * updates before
1763 * the counter increment.
1764 */
1765 smp_mb__before_atomic_inc();
1766 atomic_inc(&dev_priv->gpu_error.reset_counter);
1767
5bdebb18 1768 kobject_uevent_env(&dev->primary->kdev->kobj,
f69061be 1769 KOBJ_CHANGE, reset_done_event);
1f83fee0
DV
1770 } else {
1771 atomic_set(&error->reset_counter, I915_WEDGED);
f316a42c 1772 }
1f83fee0 1773
17e1df07
DV
1774 /*
1775 * Note: The wake_up also serves as a memory barrier so that
1776 * waiters see the update value of the reset counter atomic_t.
1777 */
1778 i915_error_wake_up(dev_priv, true);
f316a42c 1779 }
8a905236
JB
1780}
1781
35aed2e6 1782static void i915_report_and_clear_eir(struct drm_device *dev)
8a905236
JB
1783{
1784 struct drm_i915_private *dev_priv = dev->dev_private;
bd9854f9 1785 uint32_t instdone[I915_NUM_INSTDONE_REG];
8a905236 1786 u32 eir = I915_READ(EIR);
050ee91f 1787 int pipe, i;
8a905236 1788
35aed2e6
CW
1789 if (!eir)
1790 return;
8a905236 1791
a70491cc 1792 pr_err("render error detected, EIR: 0x%08x\n", eir);
8a905236 1793
bd9854f9
BW
1794 i915_get_extra_instdone(dev, instdone);
1795
8a905236
JB
1796 if (IS_G4X(dev)) {
1797 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1798 u32 ipeir = I915_READ(IPEIR_I965);
1799
a70491cc
JP
1800 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1801 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
050ee91f
BW
1802 for (i = 0; i < ARRAY_SIZE(instdone); i++)
1803 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
a70491cc 1804 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
a70491cc 1805 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
8a905236 1806 I915_WRITE(IPEIR_I965, ipeir);
3143a2bf 1807 POSTING_READ(IPEIR_I965);
8a905236
JB
1808 }
1809 if (eir & GM45_ERROR_PAGE_TABLE) {
1810 u32 pgtbl_err = I915_READ(PGTBL_ER);
a70491cc
JP
1811 pr_err("page table error\n");
1812 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
8a905236 1813 I915_WRITE(PGTBL_ER, pgtbl_err);
3143a2bf 1814 POSTING_READ(PGTBL_ER);
8a905236
JB
1815 }
1816 }
1817
a6c45cf0 1818 if (!IS_GEN2(dev)) {
8a905236
JB
1819 if (eir & I915_ERROR_PAGE_TABLE) {
1820 u32 pgtbl_err = I915_READ(PGTBL_ER);
a70491cc
JP
1821 pr_err("page table error\n");
1822 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
8a905236 1823 I915_WRITE(PGTBL_ER, pgtbl_err);
3143a2bf 1824 POSTING_READ(PGTBL_ER);
8a905236
JB
1825 }
1826 }
1827
1828 if (eir & I915_ERROR_MEMORY_REFRESH) {
a70491cc 1829 pr_err("memory refresh error:\n");
9db4a9c7 1830 for_each_pipe(pipe)
a70491cc 1831 pr_err("pipe %c stat: 0x%08x\n",
9db4a9c7 1832 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
8a905236
JB
1833 /* pipestat has already been acked */
1834 }
1835 if (eir & I915_ERROR_INSTRUCTION) {
a70491cc
JP
1836 pr_err("instruction error\n");
1837 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
050ee91f
BW
1838 for (i = 0; i < ARRAY_SIZE(instdone); i++)
1839 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
a6c45cf0 1840 if (INTEL_INFO(dev)->gen < 4) {
8a905236
JB
1841 u32 ipeir = I915_READ(IPEIR);
1842
a70491cc
JP
1843 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
1844 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
a70491cc 1845 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
8a905236 1846 I915_WRITE(IPEIR, ipeir);
3143a2bf 1847 POSTING_READ(IPEIR);
8a905236
JB
1848 } else {
1849 u32 ipeir = I915_READ(IPEIR_I965);
1850
a70491cc
JP
1851 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1852 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
a70491cc 1853 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
a70491cc 1854 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
8a905236 1855 I915_WRITE(IPEIR_I965, ipeir);
3143a2bf 1856 POSTING_READ(IPEIR_I965);
8a905236
JB
1857 }
1858 }
1859
1860 I915_WRITE(EIR, eir);
3143a2bf 1861 POSTING_READ(EIR);
8a905236
JB
1862 eir = I915_READ(EIR);
1863 if (eir) {
1864 /*
1865 * some errors might have become stuck,
1866 * mask them.
1867 */
1868 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
1869 I915_WRITE(EMR, I915_READ(EMR) | eir);
1870 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
1871 }
35aed2e6
CW
1872}
1873
1874/**
1875 * i915_handle_error - handle an error interrupt
1876 * @dev: drm device
1877 *
1878 * Do some basic checking of regsiter state at error interrupt time and
1879 * dump it to the syslog. Also call i915_capture_error_state() to make
1880 * sure we get a record and make it available in debugfs. Fire a uevent
1881 * so userspace knows something bad happened (should trigger collection
1882 * of a ring dump etc.).
1883 */
527f9e90 1884void i915_handle_error(struct drm_device *dev, bool wedged)
35aed2e6
CW
1885{
1886 struct drm_i915_private *dev_priv = dev->dev_private;
1887
1888 i915_capture_error_state(dev);
1889 i915_report_and_clear_eir(dev);
8a905236 1890
ba1234d1 1891 if (wedged) {
f69061be
DV
1892 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
1893 &dev_priv->gpu_error.reset_counter);
ba1234d1 1894
11ed50ec 1895 /*
17e1df07
DV
1896 * Wakeup waiting processes so that the reset work function
1897 * i915_error_work_func doesn't deadlock trying to grab various
1898 * locks. By bumping the reset counter first, the woken
1899 * processes will see a reset in progress and back off,
1900 * releasing their locks and then wait for the reset completion.
1901 * We must do this for _all_ gpu waiters that might hold locks
1902 * that the reset work needs to acquire.
1903 *
1904 * Note: The wake_up serves as the required memory barrier to
1905 * ensure that the waiters see the updated value of the reset
1906 * counter atomic_t.
11ed50ec 1907 */
17e1df07 1908 i915_error_wake_up(dev_priv, false);
11ed50ec
BG
1909 }
1910
122f46ba
DV
1911 /*
1912 * Our reset work can grab modeset locks (since it needs to reset the
1913 * state of outstanding pagelips). Hence it must not be run on our own
1914 * dev-priv->wq work queue for otherwise the flush_work in the pageflip
1915 * code will deadlock.
1916 */
1917 schedule_work(&dev_priv->gpu_error.work);
8a905236
JB
1918}
1919
21ad8330 1920static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
4e5359cd
SF
1921{
1922 drm_i915_private_t *dev_priv = dev->dev_private;
1923 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
1924 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
05394f39 1925 struct drm_i915_gem_object *obj;
4e5359cd
SF
1926 struct intel_unpin_work *work;
1927 unsigned long flags;
1928 bool stall_detected;
1929
1930 /* Ignore early vblank irqs */
1931 if (intel_crtc == NULL)
1932 return;
1933
1934 spin_lock_irqsave(&dev->event_lock, flags);
1935 work = intel_crtc->unpin_work;
1936
e7d841ca
CW
1937 if (work == NULL ||
1938 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
1939 !work->enable_stall_check) {
4e5359cd
SF
1940 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
1941 spin_unlock_irqrestore(&dev->event_lock, flags);
1942 return;
1943 }
1944
1945 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
05394f39 1946 obj = work->pending_flip_obj;
a6c45cf0 1947 if (INTEL_INFO(dev)->gen >= 4) {
9db4a9c7 1948 int dspsurf = DSPSURF(intel_crtc->plane);
446f2545 1949 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
f343c5f6 1950 i915_gem_obj_ggtt_offset(obj);
4e5359cd 1951 } else {
9db4a9c7 1952 int dspaddr = DSPADDR(intel_crtc->plane);
f343c5f6 1953 stall_detected = I915_READ(dspaddr) == (i915_gem_obj_ggtt_offset(obj) +
01f2c773 1954 crtc->y * crtc->fb->pitches[0] +
4e5359cd
SF
1955 crtc->x * crtc->fb->bits_per_pixel/8);
1956 }
1957
1958 spin_unlock_irqrestore(&dev->event_lock, flags);
1959
1960 if (stall_detected) {
1961 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
1962 intel_prepare_page_flip(dev, intel_crtc->plane);
1963 }
1964}
1965
42f52ef8
KP
1966/* Called from drm generic code, passed 'crtc' which
1967 * we use as a pipe index
1968 */
f71d4af4 1969static int i915_enable_vblank(struct drm_device *dev, int pipe)
0a3e67a4
JB
1970{
1971 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
e9d21d7f 1972 unsigned long irqflags;
71e0ffa5 1973
5eddb70b 1974 if (!i915_pipe_enabled(dev, pipe))
71e0ffa5 1975 return -EINVAL;
0a3e67a4 1976
1ec14ad3 1977 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
f796cf8f 1978 if (INTEL_INFO(dev)->gen >= 4)
7c463586
KP
1979 i915_enable_pipestat(dev_priv, pipe,
1980 PIPE_START_VBLANK_INTERRUPT_ENABLE);
e9d21d7f 1981 else
7c463586
KP
1982 i915_enable_pipestat(dev_priv, pipe,
1983 PIPE_VBLANK_INTERRUPT_ENABLE);
8692d00e
CW
1984
1985 /* maintain vblank delivery even in deep C-states */
1986 if (dev_priv->info->gen == 3)
6b26c86d 1987 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
1ec14ad3 1988 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
8692d00e 1989
0a3e67a4
JB
1990 return 0;
1991}
1992
f71d4af4 1993static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
f796cf8f
JB
1994{
1995 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1996 unsigned long irqflags;
b518421f
PZ
1997 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
1998 DE_PIPE_VBLANK_ILK(pipe);
f796cf8f
JB
1999
2000 if (!i915_pipe_enabled(dev, pipe))
2001 return -EINVAL;
2002
2003 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
b518421f 2004 ironlake_enable_display_irq(dev_priv, bit);
b1f14ad0
JB
2005 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2006
2007 return 0;
2008}
2009
7e231dbe
JB
2010static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2011{
2012 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2013 unsigned long irqflags;
31acc7f5 2014 u32 imr;
7e231dbe
JB
2015
2016 if (!i915_pipe_enabled(dev, pipe))
2017 return -EINVAL;
2018
2019 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
7e231dbe 2020 imr = I915_READ(VLV_IMR);
31acc7f5 2021 if (pipe == 0)
7e231dbe 2022 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
31acc7f5 2023 else
7e231dbe 2024 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
7e231dbe 2025 I915_WRITE(VLV_IMR, imr);
31acc7f5
JB
2026 i915_enable_pipestat(dev_priv, pipe,
2027 PIPE_START_VBLANK_INTERRUPT_ENABLE);
7e231dbe
JB
2028 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2029
2030 return 0;
2031}
2032
42f52ef8
KP
2033/* Called from drm generic code, passed 'crtc' which
2034 * we use as a pipe index
2035 */
f71d4af4 2036static void i915_disable_vblank(struct drm_device *dev, int pipe)
0a3e67a4
JB
2037{
2038 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
e9d21d7f 2039 unsigned long irqflags;
0a3e67a4 2040
1ec14ad3 2041 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
8692d00e 2042 if (dev_priv->info->gen == 3)
6b26c86d 2043 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
8692d00e 2044
f796cf8f
JB
2045 i915_disable_pipestat(dev_priv, pipe,
2046 PIPE_VBLANK_INTERRUPT_ENABLE |
2047 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2048 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2049}
2050
f71d4af4 2051static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
f796cf8f
JB
2052{
2053 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2054 unsigned long irqflags;
b518421f
PZ
2055 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
2056 DE_PIPE_VBLANK_ILK(pipe);
f796cf8f
JB
2057
2058 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
b518421f 2059 ironlake_disable_display_irq(dev_priv, bit);
b1f14ad0
JB
2060 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2061}
2062
7e231dbe
JB
2063static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2064{
2065 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2066 unsigned long irqflags;
31acc7f5 2067 u32 imr;
7e231dbe
JB
2068
2069 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
31acc7f5
JB
2070 i915_disable_pipestat(dev_priv, pipe,
2071 PIPE_START_VBLANK_INTERRUPT_ENABLE);
7e231dbe 2072 imr = I915_READ(VLV_IMR);
31acc7f5 2073 if (pipe == 0)
7e231dbe 2074 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
31acc7f5 2075 else
7e231dbe 2076 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
7e231dbe 2077 I915_WRITE(VLV_IMR, imr);
7e231dbe
JB
2078 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2079}
2080
893eead0
CW
2081static u32
2082ring_last_seqno(struct intel_ring_buffer *ring)
852835f3 2083{
893eead0
CW
2084 return list_entry(ring->request_list.prev,
2085 struct drm_i915_gem_request, list)->seqno;
2086}
2087
9107e9d2
CW
2088static bool
2089ring_idle(struct intel_ring_buffer *ring, u32 seqno)
2090{
2091 return (list_empty(&ring->request_list) ||
2092 i915_seqno_passed(seqno, ring_last_seqno(ring)));
f65d9421
BG
2093}
2094
6274f212
CW
2095static struct intel_ring_buffer *
2096semaphore_waits_for(struct intel_ring_buffer *ring, u32 *seqno)
a24a11e6
CW
2097{
2098 struct drm_i915_private *dev_priv = ring->dev->dev_private;
6274f212 2099 u32 cmd, ipehr, acthd, acthd_min;
a24a11e6
CW
2100
2101 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2102 if ((ipehr & ~(0x3 << 16)) !=
2103 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
6274f212 2104 return NULL;
a24a11e6
CW
2105
2106 /* ACTHD is likely pointing to the dword after the actual command,
2107 * so scan backwards until we find the MBOX.
2108 */
6274f212 2109 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
a24a11e6
CW
2110 acthd_min = max((int)acthd - 3 * 4, 0);
2111 do {
2112 cmd = ioread32(ring->virtual_start + acthd);
2113 if (cmd == ipehr)
2114 break;
2115
2116 acthd -= 4;
2117 if (acthd < acthd_min)
6274f212 2118 return NULL;
a24a11e6
CW
2119 } while (1);
2120
6274f212
CW
2121 *seqno = ioread32(ring->virtual_start+acthd+4)+1;
2122 return &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
a24a11e6
CW
2123}
2124
6274f212
CW
2125static int semaphore_passed(struct intel_ring_buffer *ring)
2126{
2127 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2128 struct intel_ring_buffer *signaller;
2129 u32 seqno, ctl;
2130
2131 ring->hangcheck.deadlock = true;
2132
2133 signaller = semaphore_waits_for(ring, &seqno);
2134 if (signaller == NULL || signaller->hangcheck.deadlock)
2135 return -1;
2136
2137 /* cursory check for an unkickable deadlock */
2138 ctl = I915_READ_CTL(signaller);
2139 if (ctl & RING_WAIT_SEMAPHORE && semaphore_passed(signaller) < 0)
2140 return -1;
2141
2142 return i915_seqno_passed(signaller->get_seqno(signaller, false), seqno);
2143}
2144
2145static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2146{
2147 struct intel_ring_buffer *ring;
2148 int i;
2149
2150 for_each_ring(ring, dev_priv, i)
2151 ring->hangcheck.deadlock = false;
2152}
2153
ad8beaea
MK
2154static enum intel_ring_hangcheck_action
2155ring_stuck(struct intel_ring_buffer *ring, u32 acthd)
1ec14ad3
CW
2156{
2157 struct drm_device *dev = ring->dev;
2158 struct drm_i915_private *dev_priv = dev->dev_private;
9107e9d2
CW
2159 u32 tmp;
2160
6274f212 2161 if (ring->hangcheck.acthd != acthd)
f2f4d82f 2162 return HANGCHECK_ACTIVE;
6274f212 2163
9107e9d2 2164 if (IS_GEN2(dev))
f2f4d82f 2165 return HANGCHECK_HUNG;
9107e9d2
CW
2166
2167 /* Is the chip hanging on a WAIT_FOR_EVENT?
2168 * If so we can simply poke the RB_WAIT bit
2169 * and break the hang. This should work on
2170 * all but the second generation chipsets.
2171 */
2172 tmp = I915_READ_CTL(ring);
1ec14ad3
CW
2173 if (tmp & RING_WAIT) {
2174 DRM_ERROR("Kicking stuck wait on %s\n",
2175 ring->name);
09e14bf3 2176 i915_handle_error(dev, false);
1ec14ad3 2177 I915_WRITE_CTL(ring, tmp);
f2f4d82f 2178 return HANGCHECK_KICK;
6274f212
CW
2179 }
2180
2181 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2182 switch (semaphore_passed(ring)) {
2183 default:
f2f4d82f 2184 return HANGCHECK_HUNG;
6274f212
CW
2185 case 1:
2186 DRM_ERROR("Kicking stuck semaphore on %s\n",
2187 ring->name);
09e14bf3 2188 i915_handle_error(dev, false);
6274f212 2189 I915_WRITE_CTL(ring, tmp);
f2f4d82f 2190 return HANGCHECK_KICK;
6274f212 2191 case 0:
f2f4d82f 2192 return HANGCHECK_WAIT;
6274f212 2193 }
9107e9d2 2194 }
ed5cbb03 2195
f2f4d82f 2196 return HANGCHECK_HUNG;
ed5cbb03
MK
2197}
2198
f65d9421
BG
2199/**
2200 * This is called when the chip hasn't reported back with completed
05407ff8
MK
2201 * batchbuffers in a long time. We keep track per ring seqno progress and
2202 * if there are no progress, hangcheck score for that ring is increased.
2203 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2204 * we kick the ring. If we see no progress on three subsequent calls
2205 * we assume chip is wedged and try to fix it by resetting the chip.
f65d9421 2206 */
a658b5d2 2207static void i915_hangcheck_elapsed(unsigned long data)
f65d9421
BG
2208{
2209 struct drm_device *dev = (struct drm_device *)data;
2210 drm_i915_private_t *dev_priv = dev->dev_private;
b4519513 2211 struct intel_ring_buffer *ring;
b4519513 2212 int i;
05407ff8 2213 int busy_count = 0, rings_hung = 0;
9107e9d2
CW
2214 bool stuck[I915_NUM_RINGS] = { 0 };
2215#define BUSY 1
2216#define KICK 5
2217#define HUNG 20
2218#define FIRE 30
893eead0 2219
3e0dc6b0
BW
2220 if (!i915_enable_hangcheck)
2221 return;
2222
b4519513 2223 for_each_ring(ring, dev_priv, i) {
05407ff8 2224 u32 seqno, acthd;
9107e9d2 2225 bool busy = true;
05407ff8 2226
6274f212
CW
2227 semaphore_clear_deadlocks(dev_priv);
2228
05407ff8
MK
2229 seqno = ring->get_seqno(ring, false);
2230 acthd = intel_ring_get_active_head(ring);
b4519513 2231
9107e9d2
CW
2232 if (ring->hangcheck.seqno == seqno) {
2233 if (ring_idle(ring, seqno)) {
da661464
MK
2234 ring->hangcheck.action = HANGCHECK_IDLE;
2235
9107e9d2
CW
2236 if (waitqueue_active(&ring->irq_queue)) {
2237 /* Issue a wake-up to catch stuck h/w. */
094f9a54
CW
2238 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
2239 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2240 ring->name);
2241 wake_up_all(&ring->irq_queue);
2242 }
2243 /* Safeguard against driver failure */
2244 ring->hangcheck.score += BUSY;
9107e9d2
CW
2245 } else
2246 busy = false;
05407ff8 2247 } else {
6274f212
CW
2248 /* We always increment the hangcheck score
2249 * if the ring is busy and still processing
2250 * the same request, so that no single request
2251 * can run indefinitely (such as a chain of
2252 * batches). The only time we do not increment
2253 * the hangcheck score on this ring, if this
2254 * ring is in a legitimate wait for another
2255 * ring. In that case the waiting ring is a
2256 * victim and we want to be sure we catch the
2257 * right culprit. Then every time we do kick
2258 * the ring, add a small increment to the
2259 * score so that we can catch a batch that is
2260 * being repeatedly kicked and so responsible
2261 * for stalling the machine.
2262 */
ad8beaea
MK
2263 ring->hangcheck.action = ring_stuck(ring,
2264 acthd);
2265
2266 switch (ring->hangcheck.action) {
da661464 2267 case HANGCHECK_IDLE:
f2f4d82f 2268 case HANGCHECK_WAIT:
6274f212 2269 break;
f2f4d82f 2270 case HANGCHECK_ACTIVE:
ea04cb31 2271 ring->hangcheck.score += BUSY;
6274f212 2272 break;
f2f4d82f 2273 case HANGCHECK_KICK:
ea04cb31 2274 ring->hangcheck.score += KICK;
6274f212 2275 break;
f2f4d82f 2276 case HANGCHECK_HUNG:
ea04cb31 2277 ring->hangcheck.score += HUNG;
6274f212
CW
2278 stuck[i] = true;
2279 break;
2280 }
05407ff8 2281 }
9107e9d2 2282 } else {
da661464
MK
2283 ring->hangcheck.action = HANGCHECK_ACTIVE;
2284
9107e9d2
CW
2285 /* Gradually reduce the count so that we catch DoS
2286 * attempts across multiple batches.
2287 */
2288 if (ring->hangcheck.score > 0)
2289 ring->hangcheck.score--;
d1e61e7f
CW
2290 }
2291
05407ff8
MK
2292 ring->hangcheck.seqno = seqno;
2293 ring->hangcheck.acthd = acthd;
9107e9d2 2294 busy_count += busy;
893eead0 2295 }
b9201c14 2296
92cab734 2297 for_each_ring(ring, dev_priv, i) {
9107e9d2 2298 if (ring->hangcheck.score > FIRE) {
b8d88d1d
DV
2299 DRM_INFO("%s on %s\n",
2300 stuck[i] ? "stuck" : "no progress",
2301 ring->name);
a43adf07 2302 rings_hung++;
92cab734
MK
2303 }
2304 }
2305
05407ff8
MK
2306 if (rings_hung)
2307 return i915_handle_error(dev, true);
f65d9421 2308
05407ff8
MK
2309 if (busy_count)
2310 /* Reset timer case chip hangs without another request
2311 * being added */
10cd45b6
MK
2312 i915_queue_hangcheck(dev);
2313}
2314
2315void i915_queue_hangcheck(struct drm_device *dev)
2316{
2317 struct drm_i915_private *dev_priv = dev->dev_private;
2318 if (!i915_enable_hangcheck)
2319 return;
2320
2321 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
2322 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
f65d9421
BG
2323}
2324
91738a95
PZ
2325static void ibx_irq_preinstall(struct drm_device *dev)
2326{
2327 struct drm_i915_private *dev_priv = dev->dev_private;
2328
2329 if (HAS_PCH_NOP(dev))
2330 return;
2331
2332 /* south display irq */
2333 I915_WRITE(SDEIMR, 0xffffffff);
2334 /*
2335 * SDEIER is also touched by the interrupt handler to work around missed
2336 * PCH interrupts. Hence we can't update it after the interrupt handler
2337 * is enabled - instead we unconditionally enable all PCH interrupt
2338 * sources here, but then only unmask them as needed with SDEIMR.
2339 */
2340 I915_WRITE(SDEIER, 0xffffffff);
2341 POSTING_READ(SDEIER);
2342}
2343
d18ea1b5
DV
2344static void gen5_gt_irq_preinstall(struct drm_device *dev)
2345{
2346 struct drm_i915_private *dev_priv = dev->dev_private;
2347
2348 /* and GT */
2349 I915_WRITE(GTIMR, 0xffffffff);
2350 I915_WRITE(GTIER, 0x0);
2351 POSTING_READ(GTIER);
2352
2353 if (INTEL_INFO(dev)->gen >= 6) {
2354 /* and PM */
2355 I915_WRITE(GEN6_PMIMR, 0xffffffff);
2356 I915_WRITE(GEN6_PMIER, 0x0);
2357 POSTING_READ(GEN6_PMIER);
2358 }
2359}
2360
1da177e4
LT
2361/* drm_dma.h hooks
2362*/
f71d4af4 2363static void ironlake_irq_preinstall(struct drm_device *dev)
036a4a7d
ZW
2364{
2365 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2366
4697995b
JB
2367 atomic_set(&dev_priv->irq_received, 0);
2368
036a4a7d 2369 I915_WRITE(HWSTAM, 0xeffe);
bdfcdb63 2370
036a4a7d
ZW
2371 I915_WRITE(DEIMR, 0xffffffff);
2372 I915_WRITE(DEIER, 0x0);
3143a2bf 2373 POSTING_READ(DEIER);
036a4a7d 2374
d18ea1b5 2375 gen5_gt_irq_preinstall(dev);
c650156a 2376
91738a95 2377 ibx_irq_preinstall(dev);
7d99163d
BW
2378}
2379
7e231dbe
JB
2380static void valleyview_irq_preinstall(struct drm_device *dev)
2381{
2382 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2383 int pipe;
2384
2385 atomic_set(&dev_priv->irq_received, 0);
2386
7e231dbe
JB
2387 /* VLV magic */
2388 I915_WRITE(VLV_IMR, 0);
2389 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2390 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2391 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2392
7e231dbe
JB
2393 /* and GT */
2394 I915_WRITE(GTIIR, I915_READ(GTIIR));
2395 I915_WRITE(GTIIR, I915_READ(GTIIR));
d18ea1b5
DV
2396
2397 gen5_gt_irq_preinstall(dev);
7e231dbe
JB
2398
2399 I915_WRITE(DPINVGTT, 0xff);
2400
2401 I915_WRITE(PORT_HOTPLUG_EN, 0);
2402 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2403 for_each_pipe(pipe)
2404 I915_WRITE(PIPESTAT(pipe), 0xffff);
2405 I915_WRITE(VLV_IIR, 0xffffffff);
2406 I915_WRITE(VLV_IMR, 0xffffffff);
2407 I915_WRITE(VLV_IER, 0x0);
2408 POSTING_READ(VLV_IER);
2409}
2410
82a28bcf 2411static void ibx_hpd_irq_setup(struct drm_device *dev)
7fe0b973
KP
2412{
2413 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
82a28bcf
DV
2414 struct drm_mode_config *mode_config = &dev->mode_config;
2415 struct intel_encoder *intel_encoder;
fee884ed 2416 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
82a28bcf
DV
2417
2418 if (HAS_PCH_IBX(dev)) {
fee884ed 2419 hotplug_irqs = SDE_HOTPLUG_MASK;
82a28bcf 2420 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
cd569aed 2421 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
fee884ed 2422 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
82a28bcf 2423 } else {
fee884ed 2424 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
82a28bcf 2425 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
cd569aed 2426 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
fee884ed 2427 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
82a28bcf 2428 }
7fe0b973 2429
fee884ed 2430 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
82a28bcf
DV
2431
2432 /*
2433 * Enable digital hotplug on the PCH, and configure the DP short pulse
2434 * duration to 2ms (which is the minimum in the Display Port spec)
2435 *
2436 * This register is the same on all known PCH chips.
2437 */
7fe0b973
KP
2438 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2439 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2440 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2441 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2442 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2443 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2444}
2445
d46da437
PZ
2446static void ibx_irq_postinstall(struct drm_device *dev)
2447{
2448 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
82a28bcf 2449 u32 mask;
e5868a31 2450
692a04cf
DV
2451 if (HAS_PCH_NOP(dev))
2452 return;
2453
8664281b
PZ
2454 if (HAS_PCH_IBX(dev)) {
2455 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
de032bf4 2456 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
8664281b
PZ
2457 } else {
2458 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2459
2460 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2461 }
ab5c608b 2462
d46da437
PZ
2463 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2464 I915_WRITE(SDEIMR, ~mask);
d46da437
PZ
2465}
2466
0a9a8c91
DV
2467static void gen5_gt_irq_postinstall(struct drm_device *dev)
2468{
2469 struct drm_i915_private *dev_priv = dev->dev_private;
2470 u32 pm_irqs, gt_irqs;
2471
2472 pm_irqs = gt_irqs = 0;
2473
2474 dev_priv->gt_irq_mask = ~0;
040d2baa 2475 if (HAS_L3_DPF(dev)) {
0a9a8c91 2476 /* L3 parity interrupt is always unmasked. */
35a85ac6
BW
2477 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
2478 gt_irqs |= GT_PARITY_ERROR(dev);
0a9a8c91
DV
2479 }
2480
2481 gt_irqs |= GT_RENDER_USER_INTERRUPT;
2482 if (IS_GEN5(dev)) {
2483 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
2484 ILK_BSD_USER_INTERRUPT;
2485 } else {
2486 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
2487 }
2488
2489 I915_WRITE(GTIIR, I915_READ(GTIIR));
2490 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2491 I915_WRITE(GTIER, gt_irqs);
2492 POSTING_READ(GTIER);
2493
2494 if (INTEL_INFO(dev)->gen >= 6) {
2495 pm_irqs |= GEN6_PM_RPS_EVENTS;
2496
2497 if (HAS_VEBOX(dev))
2498 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
2499
605cd25b 2500 dev_priv->pm_irq_mask = 0xffffffff;
0a9a8c91 2501 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
605cd25b 2502 I915_WRITE(GEN6_PMIMR, dev_priv->pm_irq_mask);
0a9a8c91
DV
2503 I915_WRITE(GEN6_PMIER, pm_irqs);
2504 POSTING_READ(GEN6_PMIER);
2505 }
2506}
2507
f71d4af4 2508static int ironlake_irq_postinstall(struct drm_device *dev)
036a4a7d 2509{
4bc9d430 2510 unsigned long irqflags;
036a4a7d 2511 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
8e76f8dc
PZ
2512 u32 display_mask, extra_mask;
2513
2514 if (INTEL_INFO(dev)->gen >= 7) {
2515 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
2516 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
2517 DE_PLANEB_FLIP_DONE_IVB |
2518 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB |
2519 DE_ERR_INT_IVB);
2520 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
2521 DE_PIPEA_VBLANK_IVB);
2522
2523 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
2524 } else {
2525 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
2526 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
5b3a856b
DV
2527 DE_AUX_CHANNEL_A |
2528 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN |
2529 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
2530 DE_POISON);
8e76f8dc
PZ
2531 extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT;
2532 }
036a4a7d 2533
1ec14ad3 2534 dev_priv->irq_mask = ~display_mask;
036a4a7d
ZW
2535
2536 /* should always can generate irq */
2537 I915_WRITE(DEIIR, I915_READ(DEIIR));
1ec14ad3 2538 I915_WRITE(DEIMR, dev_priv->irq_mask);
8e76f8dc 2539 I915_WRITE(DEIER, display_mask | extra_mask);
3143a2bf 2540 POSTING_READ(DEIER);
036a4a7d 2541
0a9a8c91 2542 gen5_gt_irq_postinstall(dev);
036a4a7d 2543
d46da437 2544 ibx_irq_postinstall(dev);
7fe0b973 2545
f97108d1 2546 if (IS_IRONLAKE_M(dev)) {
6005ce42
DV
2547 /* Enable PCU event interrupts
2548 *
2549 * spinlocking not required here for correctness since interrupt
4bc9d430
DV
2550 * setup is guaranteed to run in single-threaded context. But we
2551 * need it to make the assert_spin_locked happy. */
2552 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
f97108d1 2553 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
4bc9d430 2554 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
f97108d1
JB
2555 }
2556
036a4a7d
ZW
2557 return 0;
2558}
2559
7e231dbe
JB
2560static int valleyview_irq_postinstall(struct drm_device *dev)
2561{
2562 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
7e231dbe 2563 u32 enable_mask;
31acc7f5 2564 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
b79480ba 2565 unsigned long irqflags;
7e231dbe
JB
2566
2567 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
31acc7f5
JB
2568 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2569 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2570 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
7e231dbe
JB
2571 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2572
31acc7f5
JB
2573 /*
2574 *Leave vblank interrupts masked initially. enable/disable will
2575 * toggle them based on usage.
2576 */
2577 dev_priv->irq_mask = (~enable_mask) |
2578 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2579 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
7e231dbe 2580
20afbda2
DV
2581 I915_WRITE(PORT_HOTPLUG_EN, 0);
2582 POSTING_READ(PORT_HOTPLUG_EN);
2583
7e231dbe
JB
2584 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2585 I915_WRITE(VLV_IER, enable_mask);
2586 I915_WRITE(VLV_IIR, 0xffffffff);
2587 I915_WRITE(PIPESTAT(0), 0xffff);
2588 I915_WRITE(PIPESTAT(1), 0xffff);
2589 POSTING_READ(VLV_IER);
2590
b79480ba
DV
2591 /* Interrupt setup is already guaranteed to be single-threaded, this is
2592 * just to make the assert_spin_locked check happy. */
2593 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
31acc7f5 2594 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
515ac2bb 2595 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
31acc7f5 2596 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
b79480ba 2597 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
31acc7f5 2598
7e231dbe
JB
2599 I915_WRITE(VLV_IIR, 0xffffffff);
2600 I915_WRITE(VLV_IIR, 0xffffffff);
2601
0a9a8c91 2602 gen5_gt_irq_postinstall(dev);
7e231dbe
JB
2603
2604 /* ack & enable invalid PTE error interrupts */
2605#if 0 /* FIXME: add support to irq handler for checking these bits */
2606 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2607 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2608#endif
2609
2610 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
20afbda2
DV
2611
2612 return 0;
2613}
2614
7e231dbe
JB
2615static void valleyview_irq_uninstall(struct drm_device *dev)
2616{
2617 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2618 int pipe;
2619
2620 if (!dev_priv)
2621 return;
2622
ac4c16c5
EE
2623 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2624
7e231dbe
JB
2625 for_each_pipe(pipe)
2626 I915_WRITE(PIPESTAT(pipe), 0xffff);
2627
2628 I915_WRITE(HWSTAM, 0xffffffff);
2629 I915_WRITE(PORT_HOTPLUG_EN, 0);
2630 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2631 for_each_pipe(pipe)
2632 I915_WRITE(PIPESTAT(pipe), 0xffff);
2633 I915_WRITE(VLV_IIR, 0xffffffff);
2634 I915_WRITE(VLV_IMR, 0xffffffff);
2635 I915_WRITE(VLV_IER, 0x0);
2636 POSTING_READ(VLV_IER);
2637}
2638
f71d4af4 2639static void ironlake_irq_uninstall(struct drm_device *dev)
036a4a7d
ZW
2640{
2641 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
4697995b
JB
2642
2643 if (!dev_priv)
2644 return;
2645
ac4c16c5
EE
2646 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2647
036a4a7d
ZW
2648 I915_WRITE(HWSTAM, 0xffffffff);
2649
2650 I915_WRITE(DEIMR, 0xffffffff);
2651 I915_WRITE(DEIER, 0x0);
2652 I915_WRITE(DEIIR, I915_READ(DEIIR));
8664281b
PZ
2653 if (IS_GEN7(dev))
2654 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
036a4a7d
ZW
2655
2656 I915_WRITE(GTIMR, 0xffffffff);
2657 I915_WRITE(GTIER, 0x0);
2658 I915_WRITE(GTIIR, I915_READ(GTIIR));
192aac1f 2659
ab5c608b
BW
2660 if (HAS_PCH_NOP(dev))
2661 return;
2662
192aac1f
KP
2663 I915_WRITE(SDEIMR, 0xffffffff);
2664 I915_WRITE(SDEIER, 0x0);
2665 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
8664281b
PZ
2666 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2667 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
036a4a7d
ZW
2668}
2669
a266c7d5 2670static void i8xx_irq_preinstall(struct drm_device * dev)
1da177e4
LT
2671{
2672 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
9db4a9c7 2673 int pipe;
91e3738e 2674
a266c7d5 2675 atomic_set(&dev_priv->irq_received, 0);
5ca58282 2676
9db4a9c7
JB
2677 for_each_pipe(pipe)
2678 I915_WRITE(PIPESTAT(pipe), 0);
a266c7d5
CW
2679 I915_WRITE16(IMR, 0xffff);
2680 I915_WRITE16(IER, 0x0);
2681 POSTING_READ16(IER);
c2798b19
CW
2682}
2683
2684static int i8xx_irq_postinstall(struct drm_device *dev)
2685{
2686 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2687
c2798b19
CW
2688 I915_WRITE16(EMR,
2689 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2690
2691 /* Unmask the interrupts that we always want on. */
2692 dev_priv->irq_mask =
2693 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2694 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2695 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2696 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2697 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2698 I915_WRITE16(IMR, dev_priv->irq_mask);
2699
2700 I915_WRITE16(IER,
2701 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2702 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2703 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2704 I915_USER_INTERRUPT);
2705 POSTING_READ16(IER);
2706
2707 return 0;
2708}
2709
90a72f87
VS
2710/*
2711 * Returns true when a page flip has completed.
2712 */
2713static bool i8xx_handle_vblank(struct drm_device *dev,
2714 int pipe, u16 iir)
2715{
2716 drm_i915_private_t *dev_priv = dev->dev_private;
2717 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2718
2719 if (!drm_handle_vblank(dev, pipe))
2720 return false;
2721
2722 if ((iir & flip_pending) == 0)
2723 return false;
2724
2725 intel_prepare_page_flip(dev, pipe);
2726
2727 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2728 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2729 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2730 * the flip is completed (no longer pending). Since this doesn't raise
2731 * an interrupt per se, we watch for the change at vblank.
2732 */
2733 if (I915_READ16(ISR) & flip_pending)
2734 return false;
2735
2736 intel_finish_page_flip(dev, pipe);
2737
2738 return true;
2739}
2740
ff1f525e 2741static irqreturn_t i8xx_irq_handler(int irq, void *arg)
c2798b19
CW
2742{
2743 struct drm_device *dev = (struct drm_device *) arg;
2744 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
c2798b19
CW
2745 u16 iir, new_iir;
2746 u32 pipe_stats[2];
2747 unsigned long irqflags;
c2798b19
CW
2748 int pipe;
2749 u16 flip_mask =
2750 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2751 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2752
2753 atomic_inc(&dev_priv->irq_received);
2754
2755 iir = I915_READ16(IIR);
2756 if (iir == 0)
2757 return IRQ_NONE;
2758
2759 while (iir & ~flip_mask) {
2760 /* Can't rely on pipestat interrupt bit in iir as it might
2761 * have been cleared after the pipestat interrupt was received.
2762 * It doesn't set the bit in iir again, but it still produces
2763 * interrupts (for non-MSI).
2764 */
2765 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2766 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2767 i915_handle_error(dev, false);
2768
2769 for_each_pipe(pipe) {
2770 int reg = PIPESTAT(pipe);
2771 pipe_stats[pipe] = I915_READ(reg);
2772
2773 /*
2774 * Clear the PIPE*STAT regs before the IIR
2775 */
2776 if (pipe_stats[pipe] & 0x8000ffff) {
2777 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2778 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2779 pipe_name(pipe));
2780 I915_WRITE(reg, pipe_stats[pipe]);
c2798b19
CW
2781 }
2782 }
2783 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2784
2785 I915_WRITE16(IIR, iir & ~flip_mask);
2786 new_iir = I915_READ16(IIR); /* Flush posted writes */
2787
d05c617e 2788 i915_update_dri1_breadcrumb(dev);
c2798b19
CW
2789
2790 if (iir & I915_USER_INTERRUPT)
2791 notify_ring(dev, &dev_priv->ring[RCS]);
2792
2793 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
90a72f87
VS
2794 i8xx_handle_vblank(dev, 0, iir))
2795 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
c2798b19
CW
2796
2797 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
90a72f87
VS
2798 i8xx_handle_vblank(dev, 1, iir))
2799 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
c2798b19
CW
2800
2801 iir = new_iir;
2802 }
2803
2804 return IRQ_HANDLED;
2805}
2806
2807static void i8xx_irq_uninstall(struct drm_device * dev)
2808{
2809 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2810 int pipe;
2811
c2798b19
CW
2812 for_each_pipe(pipe) {
2813 /* Clear enable bits; then clear status bits */
2814 I915_WRITE(PIPESTAT(pipe), 0);
2815 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2816 }
2817 I915_WRITE16(IMR, 0xffff);
2818 I915_WRITE16(IER, 0x0);
2819 I915_WRITE16(IIR, I915_READ16(IIR));
2820}
2821
a266c7d5
CW
2822static void i915_irq_preinstall(struct drm_device * dev)
2823{
2824 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2825 int pipe;
2826
2827 atomic_set(&dev_priv->irq_received, 0);
2828
2829 if (I915_HAS_HOTPLUG(dev)) {
2830 I915_WRITE(PORT_HOTPLUG_EN, 0);
2831 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2832 }
2833
00d98ebd 2834 I915_WRITE16(HWSTAM, 0xeffe);
a266c7d5
CW
2835 for_each_pipe(pipe)
2836 I915_WRITE(PIPESTAT(pipe), 0);
2837 I915_WRITE(IMR, 0xffffffff);
2838 I915_WRITE(IER, 0x0);
2839 POSTING_READ(IER);
2840}
2841
2842static int i915_irq_postinstall(struct drm_device *dev)
2843{
2844 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
38bde180 2845 u32 enable_mask;
a266c7d5 2846
38bde180
CW
2847 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2848
2849 /* Unmask the interrupts that we always want on. */
2850 dev_priv->irq_mask =
2851 ~(I915_ASLE_INTERRUPT |
2852 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2853 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2854 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2855 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2856 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2857
2858 enable_mask =
2859 I915_ASLE_INTERRUPT |
2860 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2861 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2862 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2863 I915_USER_INTERRUPT;
2864
a266c7d5 2865 if (I915_HAS_HOTPLUG(dev)) {
20afbda2
DV
2866 I915_WRITE(PORT_HOTPLUG_EN, 0);
2867 POSTING_READ(PORT_HOTPLUG_EN);
2868
a266c7d5
CW
2869 /* Enable in IER... */
2870 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2871 /* and unmask in IMR */
2872 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2873 }
2874
a266c7d5
CW
2875 I915_WRITE(IMR, dev_priv->irq_mask);
2876 I915_WRITE(IER, enable_mask);
2877 POSTING_READ(IER);
2878
f49e38dd 2879 i915_enable_asle_pipestat(dev);
20afbda2
DV
2880
2881 return 0;
2882}
2883
90a72f87
VS
2884/*
2885 * Returns true when a page flip has completed.
2886 */
2887static bool i915_handle_vblank(struct drm_device *dev,
2888 int plane, int pipe, u32 iir)
2889{
2890 drm_i915_private_t *dev_priv = dev->dev_private;
2891 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
2892
2893 if (!drm_handle_vblank(dev, pipe))
2894 return false;
2895
2896 if ((iir & flip_pending) == 0)
2897 return false;
2898
2899 intel_prepare_page_flip(dev, plane);
2900
2901 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2902 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2903 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2904 * the flip is completed (no longer pending). Since this doesn't raise
2905 * an interrupt per se, we watch for the change at vblank.
2906 */
2907 if (I915_READ(ISR) & flip_pending)
2908 return false;
2909
2910 intel_finish_page_flip(dev, pipe);
2911
2912 return true;
2913}
2914
ff1f525e 2915static irqreturn_t i915_irq_handler(int irq, void *arg)
a266c7d5
CW
2916{
2917 struct drm_device *dev = (struct drm_device *) arg;
2918 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
8291ee90 2919 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
a266c7d5 2920 unsigned long irqflags;
38bde180
CW
2921 u32 flip_mask =
2922 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2923 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
38bde180 2924 int pipe, ret = IRQ_NONE;
a266c7d5
CW
2925
2926 atomic_inc(&dev_priv->irq_received);
2927
2928 iir = I915_READ(IIR);
38bde180
CW
2929 do {
2930 bool irq_received = (iir & ~flip_mask) != 0;
8291ee90 2931 bool blc_event = false;
a266c7d5
CW
2932
2933 /* Can't rely on pipestat interrupt bit in iir as it might
2934 * have been cleared after the pipestat interrupt was received.
2935 * It doesn't set the bit in iir again, but it still produces
2936 * interrupts (for non-MSI).
2937 */
2938 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2939 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2940 i915_handle_error(dev, false);
2941
2942 for_each_pipe(pipe) {
2943 int reg = PIPESTAT(pipe);
2944 pipe_stats[pipe] = I915_READ(reg);
2945
38bde180 2946 /* Clear the PIPE*STAT regs before the IIR */
a266c7d5
CW
2947 if (pipe_stats[pipe] & 0x8000ffff) {
2948 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2949 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2950 pipe_name(pipe));
2951 I915_WRITE(reg, pipe_stats[pipe]);
38bde180 2952 irq_received = true;
a266c7d5
CW
2953 }
2954 }
2955 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2956
2957 if (!irq_received)
2958 break;
2959
a266c7d5
CW
2960 /* Consume port. Then clear IIR or we'll miss events */
2961 if ((I915_HAS_HOTPLUG(dev)) &&
2962 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
2963 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
b543fb04 2964 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
a266c7d5
CW
2965
2966 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
2967 hotplug_status);
91d131d2
DV
2968
2969 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
2970
a266c7d5 2971 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
38bde180 2972 POSTING_READ(PORT_HOTPLUG_STAT);
a266c7d5
CW
2973 }
2974
38bde180 2975 I915_WRITE(IIR, iir & ~flip_mask);
a266c7d5
CW
2976 new_iir = I915_READ(IIR); /* Flush posted writes */
2977
a266c7d5
CW
2978 if (iir & I915_USER_INTERRUPT)
2979 notify_ring(dev, &dev_priv->ring[RCS]);
a266c7d5 2980
a266c7d5 2981 for_each_pipe(pipe) {
38bde180
CW
2982 int plane = pipe;
2983 if (IS_MOBILE(dev))
2984 plane = !plane;
90a72f87 2985
8291ee90 2986 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
90a72f87
VS
2987 i915_handle_vblank(dev, plane, pipe, iir))
2988 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
a266c7d5
CW
2989
2990 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
2991 blc_event = true;
2992 }
2993
a266c7d5
CW
2994 if (blc_event || (iir & I915_ASLE_INTERRUPT))
2995 intel_opregion_asle_intr(dev);
2996
2997 /* With MSI, interrupts are only generated when iir
2998 * transitions from zero to nonzero. If another bit got
2999 * set while we were handling the existing iir bits, then
3000 * we would never get another interrupt.
3001 *
3002 * This is fine on non-MSI as well, as if we hit this path
3003 * we avoid exiting the interrupt handler only to generate
3004 * another one.
3005 *
3006 * Note that for MSI this could cause a stray interrupt report
3007 * if an interrupt landed in the time between writing IIR and
3008 * the posting read. This should be rare enough to never
3009 * trigger the 99% of 100,000 interrupts test for disabling
3010 * stray interrupts.
3011 */
38bde180 3012 ret = IRQ_HANDLED;
a266c7d5 3013 iir = new_iir;
38bde180 3014 } while (iir & ~flip_mask);
a266c7d5 3015
d05c617e 3016 i915_update_dri1_breadcrumb(dev);
8291ee90 3017
a266c7d5
CW
3018 return ret;
3019}
3020
3021static void i915_irq_uninstall(struct drm_device * dev)
3022{
3023 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3024 int pipe;
3025
ac4c16c5
EE
3026 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3027
a266c7d5
CW
3028 if (I915_HAS_HOTPLUG(dev)) {
3029 I915_WRITE(PORT_HOTPLUG_EN, 0);
3030 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3031 }
3032
00d98ebd 3033 I915_WRITE16(HWSTAM, 0xffff);
55b39755
CW
3034 for_each_pipe(pipe) {
3035 /* Clear enable bits; then clear status bits */
a266c7d5 3036 I915_WRITE(PIPESTAT(pipe), 0);
55b39755
CW
3037 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3038 }
a266c7d5
CW
3039 I915_WRITE(IMR, 0xffffffff);
3040 I915_WRITE(IER, 0x0);
3041
a266c7d5
CW
3042 I915_WRITE(IIR, I915_READ(IIR));
3043}
3044
3045static void i965_irq_preinstall(struct drm_device * dev)
3046{
3047 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3048 int pipe;
3049
3050 atomic_set(&dev_priv->irq_received, 0);
3051
adca4730
CW
3052 I915_WRITE(PORT_HOTPLUG_EN, 0);
3053 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
a266c7d5
CW
3054
3055 I915_WRITE(HWSTAM, 0xeffe);
3056 for_each_pipe(pipe)
3057 I915_WRITE(PIPESTAT(pipe), 0);
3058 I915_WRITE(IMR, 0xffffffff);
3059 I915_WRITE(IER, 0x0);
3060 POSTING_READ(IER);
3061}
3062
3063static int i965_irq_postinstall(struct drm_device *dev)
3064{
3065 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
bbba0a97 3066 u32 enable_mask;
a266c7d5 3067 u32 error_mask;
b79480ba 3068 unsigned long irqflags;
a266c7d5 3069
a266c7d5 3070 /* Unmask the interrupts that we always want on. */
bbba0a97 3071 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
adca4730 3072 I915_DISPLAY_PORT_INTERRUPT |
bbba0a97
CW
3073 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3074 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3075 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3076 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3077 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3078
3079 enable_mask = ~dev_priv->irq_mask;
21ad8330
VS
3080 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3081 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
bbba0a97
CW
3082 enable_mask |= I915_USER_INTERRUPT;
3083
3084 if (IS_G4X(dev))
3085 enable_mask |= I915_BSD_USER_INTERRUPT;
a266c7d5 3086
b79480ba
DV
3087 /* Interrupt setup is already guaranteed to be single-threaded, this is
3088 * just to make the assert_spin_locked check happy. */
3089 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
515ac2bb 3090 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
b79480ba 3091 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
a266c7d5 3092
a266c7d5
CW
3093 /*
3094 * Enable some error detection, note the instruction error mask
3095 * bit is reserved, so we leave it masked.
3096 */
3097 if (IS_G4X(dev)) {
3098 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3099 GM45_ERROR_MEM_PRIV |
3100 GM45_ERROR_CP_PRIV |
3101 I915_ERROR_MEMORY_REFRESH);
3102 } else {
3103 error_mask = ~(I915_ERROR_PAGE_TABLE |
3104 I915_ERROR_MEMORY_REFRESH);
3105 }
3106 I915_WRITE(EMR, error_mask);
3107
3108 I915_WRITE(IMR, dev_priv->irq_mask);
3109 I915_WRITE(IER, enable_mask);
3110 POSTING_READ(IER);
3111
20afbda2
DV
3112 I915_WRITE(PORT_HOTPLUG_EN, 0);
3113 POSTING_READ(PORT_HOTPLUG_EN);
3114
f49e38dd 3115 i915_enable_asle_pipestat(dev);
20afbda2
DV
3116
3117 return 0;
3118}
3119
bac56d5b 3120static void i915_hpd_irq_setup(struct drm_device *dev)
20afbda2
DV
3121{
3122 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
e5868a31 3123 struct drm_mode_config *mode_config = &dev->mode_config;
cd569aed 3124 struct intel_encoder *intel_encoder;
20afbda2
DV
3125 u32 hotplug_en;
3126
b5ea2d56
DV
3127 assert_spin_locked(&dev_priv->irq_lock);
3128
bac56d5b
EE
3129 if (I915_HAS_HOTPLUG(dev)) {
3130 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3131 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3132 /* Note HDMI and DP share hotplug bits */
e5868a31 3133 /* enable bits are the same for all generations */
cd569aed
EE
3134 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3135 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3136 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
bac56d5b
EE
3137 /* Programming the CRT detection parameters tends
3138 to generate a spurious hotplug event about three
3139 seconds later. So just do it once.
3140 */
3141 if (IS_G4X(dev))
3142 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
85fc95ba 3143 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
bac56d5b 3144 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
a266c7d5 3145
bac56d5b
EE
3146 /* Ignore TV since it's buggy */
3147 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3148 }
a266c7d5
CW
3149}
3150
ff1f525e 3151static irqreturn_t i965_irq_handler(int irq, void *arg)
a266c7d5
CW
3152{
3153 struct drm_device *dev = (struct drm_device *) arg;
3154 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
a266c7d5
CW
3155 u32 iir, new_iir;
3156 u32 pipe_stats[I915_MAX_PIPES];
a266c7d5
CW
3157 unsigned long irqflags;
3158 int irq_received;
3159 int ret = IRQ_NONE, pipe;
21ad8330
VS
3160 u32 flip_mask =
3161 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3162 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
a266c7d5
CW
3163
3164 atomic_inc(&dev_priv->irq_received);
3165
3166 iir = I915_READ(IIR);
3167
a266c7d5 3168 for (;;) {
2c8ba29f
CW
3169 bool blc_event = false;
3170
21ad8330 3171 irq_received = (iir & ~flip_mask) != 0;
a266c7d5
CW
3172
3173 /* Can't rely on pipestat interrupt bit in iir as it might
3174 * have been cleared after the pipestat interrupt was received.
3175 * It doesn't set the bit in iir again, but it still produces
3176 * interrupts (for non-MSI).
3177 */
3178 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3179 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3180 i915_handle_error(dev, false);
3181
3182 for_each_pipe(pipe) {
3183 int reg = PIPESTAT(pipe);
3184 pipe_stats[pipe] = I915_READ(reg);
3185
3186 /*
3187 * Clear the PIPE*STAT regs before the IIR
3188 */
3189 if (pipe_stats[pipe] & 0x8000ffff) {
3190 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3191 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3192 pipe_name(pipe));
3193 I915_WRITE(reg, pipe_stats[pipe]);
3194 irq_received = 1;
3195 }
3196 }
3197 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3198
3199 if (!irq_received)
3200 break;
3201
3202 ret = IRQ_HANDLED;
3203
3204 /* Consume port. Then clear IIR or we'll miss events */
adca4730 3205 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
a266c7d5 3206 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
b543fb04
EE
3207 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3208 HOTPLUG_INT_STATUS_G4X :
4f7fd709 3209 HOTPLUG_INT_STATUS_I915);
a266c7d5
CW
3210
3211 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3212 hotplug_status);
91d131d2
DV
3213
3214 intel_hpd_irq_handler(dev, hotplug_trigger,
3215 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i915);
3216
a266c7d5
CW
3217 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3218 I915_READ(PORT_HOTPLUG_STAT);
3219 }
3220
21ad8330 3221 I915_WRITE(IIR, iir & ~flip_mask);
a266c7d5
CW
3222 new_iir = I915_READ(IIR); /* Flush posted writes */
3223
a266c7d5
CW
3224 if (iir & I915_USER_INTERRUPT)
3225 notify_ring(dev, &dev_priv->ring[RCS]);
3226 if (iir & I915_BSD_USER_INTERRUPT)
3227 notify_ring(dev, &dev_priv->ring[VCS]);
3228
a266c7d5 3229 for_each_pipe(pipe) {
2c8ba29f 3230 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
90a72f87
VS
3231 i915_handle_vblank(dev, pipe, pipe, iir))
3232 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
a266c7d5
CW
3233
3234 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3235 blc_event = true;
3236 }
3237
3238
3239 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3240 intel_opregion_asle_intr(dev);
3241
515ac2bb
DV
3242 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3243 gmbus_irq_handler(dev);
3244
a266c7d5
CW
3245 /* With MSI, interrupts are only generated when iir
3246 * transitions from zero to nonzero. If another bit got
3247 * set while we were handling the existing iir bits, then
3248 * we would never get another interrupt.
3249 *
3250 * This is fine on non-MSI as well, as if we hit this path
3251 * we avoid exiting the interrupt handler only to generate
3252 * another one.
3253 *
3254 * Note that for MSI this could cause a stray interrupt report
3255 * if an interrupt landed in the time between writing IIR and
3256 * the posting read. This should be rare enough to never
3257 * trigger the 99% of 100,000 interrupts test for disabling
3258 * stray interrupts.
3259 */
3260 iir = new_iir;
3261 }
3262
d05c617e 3263 i915_update_dri1_breadcrumb(dev);
2c8ba29f 3264
a266c7d5
CW
3265 return ret;
3266}
3267
3268static void i965_irq_uninstall(struct drm_device * dev)
3269{
3270 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3271 int pipe;
3272
3273 if (!dev_priv)
3274 return;
3275
ac4c16c5
EE
3276 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3277
adca4730
CW
3278 I915_WRITE(PORT_HOTPLUG_EN, 0);
3279 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
a266c7d5
CW
3280
3281 I915_WRITE(HWSTAM, 0xffffffff);
3282 for_each_pipe(pipe)
3283 I915_WRITE(PIPESTAT(pipe), 0);
3284 I915_WRITE(IMR, 0xffffffff);
3285 I915_WRITE(IER, 0x0);
3286
3287 for_each_pipe(pipe)
3288 I915_WRITE(PIPESTAT(pipe),
3289 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3290 I915_WRITE(IIR, I915_READ(IIR));
3291}
3292
ac4c16c5
EE
3293static void i915_reenable_hotplug_timer_func(unsigned long data)
3294{
3295 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3296 struct drm_device *dev = dev_priv->dev;
3297 struct drm_mode_config *mode_config = &dev->mode_config;
3298 unsigned long irqflags;
3299 int i;
3300
3301 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3302 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3303 struct drm_connector *connector;
3304
3305 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3306 continue;
3307
3308 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3309
3310 list_for_each_entry(connector, &mode_config->connector_list, head) {
3311 struct intel_connector *intel_connector = to_intel_connector(connector);
3312
3313 if (intel_connector->encoder->hpd_pin == i) {
3314 if (connector->polled != intel_connector->polled)
3315 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3316 drm_get_connector_name(connector));
3317 connector->polled = intel_connector->polled;
3318 if (!connector->polled)
3319 connector->polled = DRM_CONNECTOR_POLL_HPD;
3320 }
3321 }
3322 }
3323 if (dev_priv->display.hpd_irq_setup)
3324 dev_priv->display.hpd_irq_setup(dev);
3325 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3326}
3327
f71d4af4
JB
3328void intel_irq_init(struct drm_device *dev)
3329{
8b2e326d
CW
3330 struct drm_i915_private *dev_priv = dev->dev_private;
3331
3332 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
99584db3 3333 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
c6a828d3 3334 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
a4da4fa4 3335 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
8b2e326d 3336
99584db3
DV
3337 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3338 i915_hangcheck_elapsed,
61bac78e 3339 (unsigned long) dev);
ac4c16c5
EE
3340 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3341 (unsigned long) dev_priv);
61bac78e 3342
97a19a24 3343 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
9ee32fea 3344
4cdb83ec
VS
3345 if (IS_GEN2(dev)) {
3346 dev->max_vblank_count = 0;
3347 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
3348 } else if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
f71d4af4
JB
3349 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3350 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
391f75e2
VS
3351 } else {
3352 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3353 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
f71d4af4
JB
3354 }
3355
c2baf4b7 3356 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
c3613de9 3357 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
c2baf4b7
VS
3358 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3359 }
f71d4af4 3360
7e231dbe
JB
3361 if (IS_VALLEYVIEW(dev)) {
3362 dev->driver->irq_handler = valleyview_irq_handler;
3363 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3364 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3365 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3366 dev->driver->enable_vblank = valleyview_enable_vblank;
3367 dev->driver->disable_vblank = valleyview_disable_vblank;
fa00abe0 3368 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
f71d4af4
JB
3369 } else if (HAS_PCH_SPLIT(dev)) {
3370 dev->driver->irq_handler = ironlake_irq_handler;
3371 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3372 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3373 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3374 dev->driver->enable_vblank = ironlake_enable_vblank;
3375 dev->driver->disable_vblank = ironlake_disable_vblank;
82a28bcf 3376 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
f71d4af4 3377 } else {
c2798b19
CW
3378 if (INTEL_INFO(dev)->gen == 2) {
3379 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3380 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3381 dev->driver->irq_handler = i8xx_irq_handler;
3382 dev->driver->irq_uninstall = i8xx_irq_uninstall;
a266c7d5
CW
3383 } else if (INTEL_INFO(dev)->gen == 3) {
3384 dev->driver->irq_preinstall = i915_irq_preinstall;
3385 dev->driver->irq_postinstall = i915_irq_postinstall;
3386 dev->driver->irq_uninstall = i915_irq_uninstall;
3387 dev->driver->irq_handler = i915_irq_handler;
20afbda2 3388 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
c2798b19 3389 } else {
a266c7d5
CW
3390 dev->driver->irq_preinstall = i965_irq_preinstall;
3391 dev->driver->irq_postinstall = i965_irq_postinstall;
3392 dev->driver->irq_uninstall = i965_irq_uninstall;
3393 dev->driver->irq_handler = i965_irq_handler;
bac56d5b 3394 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
c2798b19 3395 }
f71d4af4
JB
3396 dev->driver->enable_vblank = i915_enable_vblank;
3397 dev->driver->disable_vblank = i915_disable_vblank;
3398 }
3399}
20afbda2
DV
3400
3401void intel_hpd_init(struct drm_device *dev)
3402{
3403 struct drm_i915_private *dev_priv = dev->dev_private;
821450c6
EE
3404 struct drm_mode_config *mode_config = &dev->mode_config;
3405 struct drm_connector *connector;
b5ea2d56 3406 unsigned long irqflags;
821450c6 3407 int i;
20afbda2 3408
821450c6
EE
3409 for (i = 1; i < HPD_NUM_PINS; i++) {
3410 dev_priv->hpd_stats[i].hpd_cnt = 0;
3411 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3412 }
3413 list_for_each_entry(connector, &mode_config->connector_list, head) {
3414 struct intel_connector *intel_connector = to_intel_connector(connector);
3415 connector->polled = intel_connector->polled;
3416 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3417 connector->polled = DRM_CONNECTOR_POLL_HPD;
3418 }
b5ea2d56
DV
3419
3420 /* Interrupt setup is already guaranteed to be single-threaded, this is
3421 * just to make the assert_spin_locked checks happy. */
3422 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
20afbda2
DV
3423 if (dev_priv->display.hpd_irq_setup)
3424 dev_priv->display.hpd_irq_setup(dev);
b5ea2d56 3425 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
20afbda2 3426}
c67a470b
PZ
3427
3428/* Disable interrupts so we can allow Package C8+. */
3429void hsw_pc8_disable_interrupts(struct drm_device *dev)
3430{
3431 struct drm_i915_private *dev_priv = dev->dev_private;
3432 unsigned long irqflags;
3433
3434 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3435
3436 dev_priv->pc8.regsave.deimr = I915_READ(DEIMR);
3437 dev_priv->pc8.regsave.sdeimr = I915_READ(SDEIMR);
3438 dev_priv->pc8.regsave.gtimr = I915_READ(GTIMR);
3439 dev_priv->pc8.regsave.gtier = I915_READ(GTIER);
3440 dev_priv->pc8.regsave.gen6_pmimr = I915_READ(GEN6_PMIMR);
3441
3442 ironlake_disable_display_irq(dev_priv, ~DE_PCH_EVENT_IVB);
3443 ibx_disable_display_interrupt(dev_priv, ~SDE_HOTPLUG_MASK_CPT);
3444 ilk_disable_gt_irq(dev_priv, 0xffffffff);
3445 snb_disable_pm_irq(dev_priv, 0xffffffff);
3446
3447 dev_priv->pc8.irqs_disabled = true;
3448
3449 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3450}
3451
3452/* Restore interrupts so we can recover from Package C8+. */
3453void hsw_pc8_restore_interrupts(struct drm_device *dev)
3454{
3455 struct drm_i915_private *dev_priv = dev->dev_private;
3456 unsigned long irqflags;
3457 uint32_t val, expected;
3458
3459 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3460
3461 val = I915_READ(DEIMR);
3462 expected = ~DE_PCH_EVENT_IVB;
3463 WARN(val != expected, "DEIMR is 0x%08x, not 0x%08x\n", val, expected);
3464
3465 val = I915_READ(SDEIMR) & ~SDE_HOTPLUG_MASK_CPT;
3466 expected = ~SDE_HOTPLUG_MASK_CPT;
3467 WARN(val != expected, "SDEIMR non-HPD bits are 0x%08x, not 0x%08x\n",
3468 val, expected);
3469
3470 val = I915_READ(GTIMR);
3471 expected = 0xffffffff;
3472 WARN(val != expected, "GTIMR is 0x%08x, not 0x%08x\n", val, expected);
3473
3474 val = I915_READ(GEN6_PMIMR);
3475 expected = 0xffffffff;
3476 WARN(val != expected, "GEN6_PMIMR is 0x%08x, not 0x%08x\n", val,
3477 expected);
3478
3479 dev_priv->pc8.irqs_disabled = false;
3480
3481 ironlake_enable_display_irq(dev_priv, ~dev_priv->pc8.regsave.deimr);
3482 ibx_enable_display_interrupt(dev_priv,
3483 ~dev_priv->pc8.regsave.sdeimr &
3484 ~SDE_HOTPLUG_MASK_CPT);
3485 ilk_enable_gt_irq(dev_priv, ~dev_priv->pc8.regsave.gtimr);
3486 snb_enable_pm_irq(dev_priv, ~dev_priv->pc8.regsave.gen6_pmimr);
3487 I915_WRITE(GTIER, dev_priv->pc8.regsave.gtier);
3488
3489 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3490}