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