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