blob: 1783ebe4cd998317706f3ea6a2378f067f928b14 [file] [log] [blame]
Dave Airlie0d6aa602006-01-02 20:14:23 +11001/* i915_irq.c -- IRQ support for the I915 -*- linux-c -*-
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 */
Dave Airlie0d6aa602006-01-02 20:14:23 +11003/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
5 * All Rights Reserved.
Dave Airliebc54fd12005-06-23 22:46:46 +10006 *
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 *
Dave Airlie0d6aa602006-01-02 20:14:23 +110027 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Joe Perchesa70491c2012-03-18 13:00:11 -070029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Jesse Barnes63eeaf32009-06-18 16:56:52 -070031#include <linux/sysrq.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/slab.h>
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drmP.h>
34#include <drm/i915_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010036#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Egbert Eiche5868a32013-02-28 04:17:12 -050039static 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,
Daniel Vetter73c352a2013-03-26 22:38:43 +010049 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
Egbert Eiche5868a32013-02-28 04:17:12 -050050 [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
Egbert Eichcd569ae2013-04-16 13:36:57 +020091static void ibx_hpd_irq_setup(struct drm_device *dev);
92static void i915_hpd_irq_setup(struct drm_device *dev);
Egbert Eiche5868a32013-02-28 04:17:12 -050093
Zhenyu Wang036a4a72009-06-08 14:40:19 +080094/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010095static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050096ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080097{
Chris Wilson1ec14ad2010-12-04 11:30:53 +000098 if ((dev_priv->irq_mask & mask) != 0) {
99 dev_priv->irq_mask &= ~mask;
100 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000101 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800102 }
103}
104
Paulo Zanoni0ff98002013-02-22 17:05:31 -0300105static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500106ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800107{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000108 if ((dev_priv->irq_mask & mask) != mask) {
109 dev_priv->irq_mask |= mask;
110 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000111 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800112 }
113}
114
Paulo Zanoni86642812013-04-12 17:57:57 -0300115static 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
Keith Packard7c463582008-11-04 02:03:27 -0800322void
323i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
324{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200325 u32 reg = PIPESTAT(pipe);
326 u32 pipestat = I915_READ(reg) & 0x7fff0000;
Keith Packard7c463582008-11-04 02:03:27 -0800327
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200328 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);
Keith Packard7c463582008-11-04 02:03:27 -0800335}
336
337void
338i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
339{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200340 u32 reg = PIPESTAT(pipe);
341 u32 pipestat = I915_READ(reg) & 0x7fff0000;
Keith Packard7c463582008-11-04 02:03:27 -0800342
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200343 if ((pipestat & mask) == 0)
344 return;
345
346 pipestat &= ~mask;
347 I915_WRITE(reg, pipestat);
348 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800349}
350
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000351/**
Zhao Yakui01c66882009-10-28 05:10:00 +0000352 * intel_enable_asle - enable ASLE interrupt for OpRegion
353 */
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000354void intel_enable_asle(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000355{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000356 drm_i915_private_t *dev_priv = dev->dev_private;
357 unsigned long irqflags;
358
359 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000360
Jani Nikulaf8987802013-04-29 13:02:53 +0300361 i915_enable_pipestat(dev_priv, 1, PIPE_LEGACY_BLC_EVENT_ENABLE);
362 if (INTEL_INFO(dev)->gen >= 4)
363 i915_enable_pipestat(dev_priv, 0, PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000364
365 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000366}
367
368/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700369 * i915_pipe_enabled - check if a pipe is enabled
370 * @dev: DRM device
371 * @pipe: pipe to check
372 *
373 * Reading certain registers when the pipe is disabled can hang the chip.
374 * Use this routine to make sure the PLL is running and the pipe is active
375 * before reading such registers if unsure.
376 */
377static int
378i915_pipe_enabled(struct drm_device *dev, int pipe)
379{
380 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200381 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
382 pipe);
383
384 return I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700385}
386
Keith Packard42f52ef2008-10-18 19:39:29 -0700387/* Called from drm generic code, passed a 'crtc', which
388 * we use as a pipe index
389 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700390static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700391{
392 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
393 unsigned long high_frame;
394 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100395 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700396
397 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800398 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800399 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700400 return 0;
401 }
402
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800403 high_frame = PIPEFRAME(pipe);
404 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100405
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700406 /*
407 * High & low register fields aren't synchronized, so make sure
408 * we get a low value that's stable across two reads of the high
409 * register.
410 */
411 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100412 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
413 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
414 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700415 } while (high1 != high2);
416
Chris Wilson5eddb702010-09-11 13:48:45 +0100417 high1 >>= PIPE_FRAME_HIGH_SHIFT;
418 low >>= PIPE_FRAME_LOW_SHIFT;
419 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700420}
421
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700422static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800423{
424 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800425 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800426
427 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800428 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800429 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800430 return 0;
431 }
432
433 return I915_READ(reg);
434}
435
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700436static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100437 int *vpos, int *hpos)
438{
439 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
440 u32 vbl = 0, position = 0;
441 int vbl_start, vbl_end, htotal, vtotal;
442 bool in_vbl = true;
443 int ret = 0;
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200444 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
445 pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100446
447 if (!i915_pipe_enabled(dev, pipe)) {
448 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800449 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100450 return 0;
451 }
452
453 /* Get vtotal. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200454 vtotal = 1 + ((I915_READ(VTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100455
456 if (INTEL_INFO(dev)->gen >= 4) {
457 /* No obvious pixelcount register. Only query vertical
458 * scanout position from Display scan line register.
459 */
460 position = I915_READ(PIPEDSL(pipe));
461
462 /* Decode into vertical scanout position. Don't have
463 * horizontal scanout position.
464 */
465 *vpos = position & 0x1fff;
466 *hpos = 0;
467 } else {
468 /* Have access to pixelcount since start of frame.
469 * We can split this into vertical and horizontal
470 * scanout position.
471 */
472 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
473
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200474 htotal = 1 + ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100475 *vpos = position / htotal;
476 *hpos = position - (*vpos * htotal);
477 }
478
479 /* Query vblank area. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200480 vbl = I915_READ(VBLANK(cpu_transcoder));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100481
482 /* Test position against vblank region. */
483 vbl_start = vbl & 0x1fff;
484 vbl_end = (vbl >> 16) & 0x1fff;
485
486 if ((*vpos < vbl_start) || (*vpos > vbl_end))
487 in_vbl = false;
488
489 /* Inside "upper part" of vblank area? Apply corrective offset: */
490 if (in_vbl && (*vpos >= vbl_start))
491 *vpos = *vpos - vtotal;
492
493 /* Readouts valid? */
494 if (vbl > 0)
495 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
496
497 /* In vblank? */
498 if (in_vbl)
499 ret |= DRM_SCANOUTPOS_INVBL;
500
501 return ret;
502}
503
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700504static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100505 int *max_error,
506 struct timeval *vblank_time,
507 unsigned flags)
508{
Chris Wilson4041b852011-01-22 10:07:56 +0000509 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100510
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700511 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000512 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100513 return -EINVAL;
514 }
515
516 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000517 crtc = intel_get_crtc_for_pipe(dev, pipe);
518 if (crtc == NULL) {
519 DRM_ERROR("Invalid crtc %d\n", pipe);
520 return -EINVAL;
521 }
522
523 if (!crtc->enabled) {
524 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
525 return -EBUSY;
526 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100527
528 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000529 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
530 vblank_time, flags,
531 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100532}
533
Egbert Eich321a1b32013-04-11 16:00:26 +0200534static int intel_hpd_irq_event(struct drm_device *dev, struct drm_connector *connector)
535{
536 enum drm_connector_status old_status;
537
538 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
539 old_status = connector->status;
540
541 connector->status = connector->funcs->detect(connector, false);
542 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
543 connector->base.id,
544 drm_get_connector_name(connector),
545 old_status, connector->status);
546 return (old_status != connector->status);
547}
548
Jesse Barnes5ca58282009-03-31 14:11:15 -0700549/*
550 * Handle hotplug events outside the interrupt handler proper.
551 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200552#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
553
Jesse Barnes5ca58282009-03-31 14:11:15 -0700554static void i915_hotplug_work_func(struct work_struct *work)
555{
556 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
557 hotplug_work);
558 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700559 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200560 struct intel_connector *intel_connector;
561 struct intel_encoder *intel_encoder;
562 struct drm_connector *connector;
563 unsigned long irqflags;
564 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200565 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200566 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700567
Daniel Vetter52d7ece2012-12-01 21:03:22 +0100568 /* HPD irq before everything is fully set up. */
569 if (!dev_priv->enable_hotplug_processing)
570 return;
571
Keith Packarda65e34c2011-07-25 10:04:56 -0700572 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800573 DRM_DEBUG_KMS("running encoder hotplug functions\n");
574
Egbert Eichcd569ae2013-04-16 13:36:57 +0200575 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +0200576
577 hpd_event_bits = dev_priv->hpd_event_bits;
578 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200579 list_for_each_entry(connector, &mode_config->connector_list, head) {
580 intel_connector = to_intel_connector(connector);
581 intel_encoder = intel_connector->encoder;
582 if (intel_encoder->hpd_pin > HPD_NONE &&
583 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
584 connector->polled == DRM_CONNECTOR_POLL_HPD) {
585 DRM_INFO("HPD interrupt storm detected on connector %s: "
586 "switching from hotplug detection to polling\n",
587 drm_get_connector_name(connector));
588 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
589 connector->polled = DRM_CONNECTOR_POLL_CONNECT
590 | DRM_CONNECTOR_POLL_DISCONNECT;
591 hpd_disabled = true;
592 }
Egbert Eich142e2392013-04-11 15:57:57 +0200593 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
594 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
595 drm_get_connector_name(connector), intel_encoder->hpd_pin);
596 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200597 }
598 /* if there were no outputs to poll, poll was disabled,
599 * therefore make sure it's enabled when disabling HPD on
600 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200601 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200602 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +0200603 mod_timer(&dev_priv->hotplug_reenable_timer,
604 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
605 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200606
607 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
608
Egbert Eich321a1b32013-04-11 16:00:26 +0200609 list_for_each_entry(connector, &mode_config->connector_list, head) {
610 intel_connector = to_intel_connector(connector);
611 intel_encoder = intel_connector->encoder;
612 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
613 if (intel_encoder->hot_plug)
614 intel_encoder->hot_plug(intel_encoder);
615 if (intel_hpd_irq_event(dev, connector))
616 changed = true;
617 }
618 }
Keith Packard40ee3382011-07-28 15:31:19 -0700619 mutex_unlock(&mode_config->mutex);
620
Egbert Eich321a1b32013-04-11 16:00:26 +0200621 if (changed)
622 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700623}
624
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200625static void ironlake_handle_rps_change(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800626{
627 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000628 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200629 u8 new_delay;
630 unsigned long flags;
631
632 spin_lock_irqsave(&mchdev_lock, flags);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800633
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200634 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
635
Daniel Vetter20e4d402012-08-08 23:35:39 +0200636 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200637
Jesse Barnes7648fa92010-05-20 14:28:11 -0700638 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000639 busy_up = I915_READ(RCPREVBSYTUPAVG);
640 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800641 max_avg = I915_READ(RCBMAXAVG);
642 min_avg = I915_READ(RCBMINAVG);
643
644 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000645 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200646 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
647 new_delay = dev_priv->ips.cur_delay - 1;
648 if (new_delay < dev_priv->ips.max_delay)
649 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000650 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200651 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
652 new_delay = dev_priv->ips.cur_delay + 1;
653 if (new_delay > dev_priv->ips.min_delay)
654 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800655 }
656
Jesse Barnes7648fa92010-05-20 14:28:11 -0700657 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200658 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800659
Daniel Vetter92703882012-08-09 16:46:01 +0200660 spin_unlock_irqrestore(&mchdev_lock, flags);
661
Jesse Barnesf97108d2010-01-29 11:27:07 -0800662 return;
663}
664
Chris Wilson549f7362010-10-19 11:19:32 +0100665static void notify_ring(struct drm_device *dev,
666 struct intel_ring_buffer *ring)
667{
668 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9862e602011-01-04 22:22:17 +0000669
Chris Wilson475553d2011-01-20 09:52:56 +0000670 if (ring->obj == NULL)
671 return;
672
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100673 trace_i915_gem_request_complete(ring, ring->get_seqno(ring, false));
Chris Wilson9862e602011-01-04 22:22:17 +0000674
Chris Wilson549f7362010-10-19 11:19:32 +0100675 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700676 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +0100677 dev_priv->gpu_error.hangcheck_count = 0;
678 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +0100679 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700680 }
Chris Wilson549f7362010-10-19 11:19:32 +0100681}
682
Ben Widawsky4912d042011-04-25 11:25:20 -0700683static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800684{
Ben Widawsky4912d042011-04-25 11:25:20 -0700685 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200686 rps.work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700687 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100688 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800689
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200690 spin_lock_irq(&dev_priv->rps.lock);
691 pm_iir = dev_priv->rps.pm_iir;
692 dev_priv->rps.pm_iir = 0;
Ben Widawsky4912d042011-04-25 11:25:20 -0700693 pm_imr = I915_READ(GEN6_PMIMR);
Daniel Vettera9e26412011-09-08 14:00:21 +0200694 I915_WRITE(GEN6_PMIMR, 0);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200695 spin_unlock_irq(&dev_priv->rps.lock);
Ben Widawsky4912d042011-04-25 11:25:20 -0700696
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100697 if ((pm_iir & GEN6_PM_DEFERRED_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800698 return;
699
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700700 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100701
702 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD)
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200703 new_delay = dev_priv->rps.cur_delay + 1;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100704 else
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200705 new_delay = dev_priv->rps.cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800706
Ben Widawsky79249632012-09-07 19:43:42 -0700707 /* sysfs frequency interfaces may have snuck in while servicing the
708 * interrupt
709 */
710 if (!(new_delay > dev_priv->rps.max_delay ||
711 new_delay < dev_priv->rps.min_delay)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -0700712 if (IS_VALLEYVIEW(dev_priv->dev))
713 valleyview_set_rps(dev_priv->dev, new_delay);
714 else
715 gen6_set_rps(dev_priv->dev, new_delay);
Ben Widawsky79249632012-09-07 19:43:42 -0700716 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800717
Jesse Barnes52ceb902013-04-23 10:09:26 -0700718 if (IS_VALLEYVIEW(dev_priv->dev)) {
719 /*
720 * On VLV, when we enter RC6 we may not be at the minimum
721 * voltage level, so arm a timer to check. It should only
722 * fire when there's activity or once after we've entered
723 * RC6, and then won't be re-armed until the next RPS interrupt.
724 */
725 mod_delayed_work(dev_priv->wq, &dev_priv->rps.vlv_work,
726 msecs_to_jiffies(100));
727 }
728
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700729 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800730}
731
Ben Widawskye3689192012-05-25 16:56:22 -0700732
733/**
734 * ivybridge_parity_work - Workqueue called when a parity error interrupt
735 * occurred.
736 * @work: workqueue struct
737 *
738 * Doesn't actually do anything except notify userspace. As a consequence of
739 * this event, userspace should try to remap the bad rows since statistically
740 * it is likely the same row is more likely to go bad again.
741 */
742static void ivybridge_parity_work(struct work_struct *work)
743{
744 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100745 l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700746 u32 error_status, row, bank, subbank;
747 char *parity_event[5];
748 uint32_t misccpctl;
749 unsigned long flags;
750
751 /* We must turn off DOP level clock gating to access the L3 registers.
752 * In order to prevent a get/put style interface, acquire struct mutex
753 * any time we access those registers.
754 */
755 mutex_lock(&dev_priv->dev->struct_mutex);
756
757 misccpctl = I915_READ(GEN7_MISCCPCTL);
758 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
759 POSTING_READ(GEN7_MISCCPCTL);
760
761 error_status = I915_READ(GEN7_L3CDERRST1);
762 row = GEN7_PARITY_ERROR_ROW(error_status);
763 bank = GEN7_PARITY_ERROR_BANK(error_status);
764 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
765
766 I915_WRITE(GEN7_L3CDERRST1, GEN7_PARITY_ERROR_VALID |
767 GEN7_L3CDERRST1_ENABLE);
768 POSTING_READ(GEN7_L3CDERRST1);
769
770 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
771
772 spin_lock_irqsave(&dev_priv->irq_lock, flags);
773 dev_priv->gt_irq_mask &= ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
774 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
775 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
776
777 mutex_unlock(&dev_priv->dev->struct_mutex);
778
779 parity_event[0] = "L3_PARITY_ERROR=1";
780 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
781 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
782 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
783 parity_event[4] = NULL;
784
785 kobject_uevent_env(&dev_priv->dev->primary->kdev.kobj,
786 KOBJ_CHANGE, parity_event);
787
788 DRM_DEBUG("Parity error: Row = %d, Bank = %d, Sub bank = %d.\n",
789 row, bank, subbank);
790
791 kfree(parity_event[3]);
792 kfree(parity_event[2]);
793 kfree(parity_event[1]);
794}
795
Daniel Vetterd2ba8472012-05-31 14:57:41 +0200796static void ivybridge_handle_parity_error(struct drm_device *dev)
Ben Widawskye3689192012-05-25 16:56:22 -0700797{
798 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
799 unsigned long flags;
800
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700801 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskye3689192012-05-25 16:56:22 -0700802 return;
803
804 spin_lock_irqsave(&dev_priv->irq_lock, flags);
805 dev_priv->gt_irq_mask |= GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
806 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
807 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
808
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100809 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700810}
811
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200812static void snb_gt_irq_handler(struct drm_device *dev,
813 struct drm_i915_private *dev_priv,
814 u32 gt_iir)
815{
816
817 if (gt_iir & (GEN6_RENDER_USER_INTERRUPT |
818 GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT))
819 notify_ring(dev, &dev_priv->ring[RCS]);
820 if (gt_iir & GEN6_BSD_USER_INTERRUPT)
821 notify_ring(dev, &dev_priv->ring[VCS]);
822 if (gt_iir & GEN6_BLITTER_USER_INTERRUPT)
823 notify_ring(dev, &dev_priv->ring[BCS]);
824
825 if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT |
826 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
827 GT_RENDER_CS_ERROR_INTERRUPT)) {
828 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
829 i915_handle_error(dev, false);
830 }
Ben Widawskye3689192012-05-25 16:56:22 -0700831
832 if (gt_iir & GT_GEN7_L3_PARITY_ERROR_INTERRUPT)
833 ivybridge_handle_parity_error(dev);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200834}
835
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100836static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
837 u32 pm_iir)
838{
839 unsigned long flags;
840
841 /*
842 * IIR bits should never already be set because IMR should
843 * prevent an interrupt from being shown in IIR. The warning
844 * displays a case where we've unsafely cleared
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200845 * dev_priv->rps.pm_iir. Although missing an interrupt of the same
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100846 * type is not a problem, it displays a problem in the logic.
847 *
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200848 * The mask bit in IMR is cleared by dev_priv->rps.work.
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100849 */
850
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200851 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200852 dev_priv->rps.pm_iir |= pm_iir;
853 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100854 POSTING_READ(GEN6_PMIMR);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200855 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100856
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200857 queue_work(dev_priv->wq, &dev_priv->rps.work);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100858}
859
Egbert Eichb543fb02013-04-16 13:36:54 +0200860#define HPD_STORM_DETECT_PERIOD 1000
861#define HPD_STORM_THRESHOLD 5
862
Egbert Eichcd569ae2013-04-16 13:36:57 +0200863static inline bool hotplug_irq_storm_detect(struct drm_device *dev,
Egbert Eichb543fb02013-04-16 13:36:54 +0200864 u32 hotplug_trigger,
865 const u32 *hpd)
866{
867 drm_i915_private_t *dev_priv = dev->dev_private;
868 unsigned long irqflags;
869 int i;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200870 bool ret = false;
Egbert Eichb543fb02013-04-16 13:36:54 +0200871
872 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
873
874 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +0200875
Egbert Eichb543fb02013-04-16 13:36:54 +0200876 if (!(hpd[i] & hotplug_trigger) ||
877 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
Egbert Eich142e2392013-04-11 15:57:57 +0200878 dev_priv->hpd_event_bits |= (1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200879 continue;
880
881 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
882 dev_priv->hpd_stats[i].hpd_last_jiffies
883 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
884 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
885 dev_priv->hpd_stats[i].hpd_cnt = 0;
886 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
887 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +0200888 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200889 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200890 ret = true;
Egbert Eichb543fb02013-04-16 13:36:54 +0200891 } else {
892 dev_priv->hpd_stats[i].hpd_cnt++;
893 }
894 }
895
896 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200897
898 return ret;
Egbert Eichb543fb02013-04-16 13:36:54 +0200899}
900
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100901static void gmbus_irq_handler(struct drm_device *dev)
902{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100903 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
904
Daniel Vetter28c70f12012-12-01 13:53:45 +0100905 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100906}
907
Daniel Vetterce99c252012-12-01 13:53:47 +0100908static void dp_aux_irq_handler(struct drm_device *dev)
909{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100910 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
911
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100912 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +0100913}
914
Daniel Vetterff1f5252012-10-02 15:10:55 +0200915static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700916{
917 struct drm_device *dev = (struct drm_device *) arg;
918 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
919 u32 iir, gt_iir, pm_iir;
920 irqreturn_t ret = IRQ_NONE;
921 unsigned long irqflags;
922 int pipe;
923 u32 pipe_stats[I915_MAX_PIPES];
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700924
925 atomic_inc(&dev_priv->irq_received);
926
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700927 while (true) {
928 iir = I915_READ(VLV_IIR);
929 gt_iir = I915_READ(GTIIR);
930 pm_iir = I915_READ(GEN6_PMIIR);
931
932 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
933 goto out;
934
935 ret = IRQ_HANDLED;
936
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200937 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700938
939 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
940 for_each_pipe(pipe) {
941 int reg = PIPESTAT(pipe);
942 pipe_stats[pipe] = I915_READ(reg);
943
944 /*
945 * Clear the PIPE*STAT regs before the IIR
946 */
947 if (pipe_stats[pipe] & 0x8000ffff) {
948 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
949 DRM_DEBUG_DRIVER("pipe %c underrun\n",
950 pipe_name(pipe));
951 I915_WRITE(reg, pipe_stats[pipe]);
952 }
953 }
954 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
955
Jesse Barnes31acc7f2012-06-20 10:53:11 -0700956 for_each_pipe(pipe) {
957 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
958 drm_handle_vblank(dev, pipe);
959
960 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
961 intel_prepare_page_flip(dev, pipe);
962 intel_finish_page_flip(dev, pipe);
963 }
964 }
965
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700966 /* Consume port. Then clear IIR or we'll miss events */
967 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
968 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +0200969 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700970
971 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
972 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +0200973 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200974 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
975 i915_hpd_irq_setup(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700976 queue_work(dev_priv->wq,
977 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200978 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700979 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
980 I915_READ(PORT_HOTPLUG_STAT);
981 }
982
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100983 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
984 gmbus_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700985
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100986 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
987 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700988
989 I915_WRITE(GTIIR, gt_iir);
990 I915_WRITE(GEN6_PMIIR, pm_iir);
991 I915_WRITE(VLV_IIR, iir);
992 }
993
994out:
995 return ret;
996}
997
Adam Jackson23e81d62012-06-06 15:45:44 -0400998static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -0800999{
1000 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001001 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001002 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001003
Egbert Eichb543fb02013-04-16 13:36:54 +02001004 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001005 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_ibx))
1006 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +02001007 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001008 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001009 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1010 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1011 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001012 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001013 port_name(port));
1014 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001015
Daniel Vetterce99c252012-12-01 13:53:47 +01001016 if (pch_iir & SDE_AUX_MASK)
1017 dp_aux_irq_handler(dev);
1018
Jesse Barnes776ad802011-01-04 15:09:39 -08001019 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001020 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001021
1022 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1023 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1024
1025 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1026 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1027
1028 if (pch_iir & SDE_POISON)
1029 DRM_ERROR("PCH poison interrupt\n");
1030
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001031 if (pch_iir & SDE_FDI_MASK)
1032 for_each_pipe(pipe)
1033 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1034 pipe_name(pipe),
1035 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001036
1037 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1038 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1039
1040 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1041 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1042
Jesse Barnes776ad802011-01-04 15:09:39 -08001043 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001044 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1045 false))
1046 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1047
1048 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1049 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1050 false))
1051 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1052}
1053
1054static void ivb_err_int_handler(struct drm_device *dev)
1055{
1056 struct drm_i915_private *dev_priv = dev->dev_private;
1057 u32 err_int = I915_READ(GEN7_ERR_INT);
1058
Paulo Zanonide032bf2013-04-12 17:57:58 -03001059 if (err_int & ERR_INT_POISON)
1060 DRM_ERROR("Poison interrupt\n");
1061
Paulo Zanoni86642812013-04-12 17:57:57 -03001062 if (err_int & ERR_INT_FIFO_UNDERRUN_A)
1063 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1064 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1065
1066 if (err_int & ERR_INT_FIFO_UNDERRUN_B)
1067 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1068 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1069
1070 if (err_int & ERR_INT_FIFO_UNDERRUN_C)
1071 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_C, false))
1072 DRM_DEBUG_DRIVER("Pipe C FIFO underrun\n");
1073
1074 I915_WRITE(GEN7_ERR_INT, err_int);
1075}
1076
1077static void cpt_serr_int_handler(struct drm_device *dev)
1078{
1079 struct drm_i915_private *dev_priv = dev->dev_private;
1080 u32 serr_int = I915_READ(SERR_INT);
1081
Paulo Zanonide032bf2013-04-12 17:57:58 -03001082 if (serr_int & SERR_INT_POISON)
1083 DRM_ERROR("PCH poison interrupt\n");
1084
Paulo Zanoni86642812013-04-12 17:57:57 -03001085 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1086 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1087 false))
1088 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1089
1090 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1091 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1092 false))
1093 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1094
1095 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1096 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1097 false))
1098 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1099
1100 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001101}
1102
Adam Jackson23e81d62012-06-06 15:45:44 -04001103static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1104{
1105 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1106 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001107 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001108
Egbert Eichb543fb02013-04-16 13:36:54 +02001109 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001110 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_cpt))
1111 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +02001112 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001113 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001114 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1115 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1116 SDE_AUDIO_POWER_SHIFT_CPT);
1117 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1118 port_name(port));
1119 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001120
1121 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001122 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001123
1124 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001125 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001126
1127 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1128 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1129
1130 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1131 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1132
1133 if (pch_iir & SDE_FDI_MASK_CPT)
1134 for_each_pipe(pipe)
1135 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1136 pipe_name(pipe),
1137 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001138
1139 if (pch_iir & SDE_ERROR_CPT)
1140 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001141}
1142
Daniel Vetterff1f5252012-10-02 15:10:55 +02001143static irqreturn_t ivybridge_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001144{
1145 struct drm_device *dev = (struct drm_device *) arg;
1146 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskyab5c6082013-04-05 13:12:41 -07001147 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01001148 irqreturn_t ret = IRQ_NONE;
1149 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001150
1151 atomic_inc(&dev_priv->irq_received);
1152
Paulo Zanoni86642812013-04-12 17:57:57 -03001153 /* We get interrupts on unclaimed registers, so check for this before we
1154 * do any I915_{READ,WRITE}. */
1155 if (IS_HASWELL(dev) &&
1156 (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
1157 DRM_ERROR("Unclaimed register before interrupt\n");
1158 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
1159 }
1160
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001161 /* disable master interrupt before clearing iir */
1162 de_ier = I915_READ(DEIER);
1163 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +01001164
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001165 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1166 * interrupts will will be stored on its back queue, and then we'll be
1167 * able to process them after we restore SDEIER (as soon as we restore
1168 * it, we'll get an interrupt if SDEIIR still has something to process
1169 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001170 if (!HAS_PCH_NOP(dev)) {
1171 sde_ier = I915_READ(SDEIER);
1172 I915_WRITE(SDEIER, 0);
1173 POSTING_READ(SDEIER);
1174 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001175
Paulo Zanoni86642812013-04-12 17:57:57 -03001176 /* On Haswell, also mask ERR_INT because we don't want to risk
1177 * generating "unclaimed register" interrupts from inside the interrupt
1178 * handler. */
1179 if (IS_HASWELL(dev))
1180 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
1181
Chris Wilson0e434062012-05-09 21:45:44 +01001182 gt_iir = I915_READ(GTIIR);
1183 if (gt_iir) {
1184 snb_gt_irq_handler(dev, dev_priv, gt_iir);
1185 I915_WRITE(GTIIR, gt_iir);
1186 ret = IRQ_HANDLED;
1187 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001188
1189 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001190 if (de_iir) {
Paulo Zanoni86642812013-04-12 17:57:57 -03001191 if (de_iir & DE_ERR_INT_IVB)
1192 ivb_err_int_handler(dev);
1193
Daniel Vetterce99c252012-12-01 13:53:47 +01001194 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1195 dp_aux_irq_handler(dev);
1196
Chris Wilson0e434062012-05-09 21:45:44 +01001197 if (de_iir & DE_GSE_IVB)
Jani Nikula81a07802013-04-24 22:18:44 +03001198 intel_opregion_asle_intr(dev);
Chris Wilson0e434062012-05-09 21:45:44 +01001199
1200 for (i = 0; i < 3; i++) {
Daniel Vetter74d44442012-10-02 17:54:35 +02001201 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1202 drm_handle_vblank(dev, i);
Chris Wilson0e434062012-05-09 21:45:44 +01001203 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1204 intel_prepare_page_flip(dev, i);
1205 intel_finish_page_flip_plane(dev, i);
1206 }
Chris Wilson0e434062012-05-09 21:45:44 +01001207 }
1208
1209 /* check event from PCH */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001210 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
Chris Wilson0e434062012-05-09 21:45:44 +01001211 u32 pch_iir = I915_READ(SDEIIR);
1212
Adam Jackson23e81d62012-06-06 15:45:44 -04001213 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001214
1215 /* clear PCH hotplug event before clear CPU irq */
1216 I915_WRITE(SDEIIR, pch_iir);
1217 }
1218
1219 I915_WRITE(DEIIR, de_iir);
1220 ret = IRQ_HANDLED;
1221 }
1222
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001223 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001224 if (pm_iir) {
1225 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
1226 gen6_queue_rps_work(dev_priv, pm_iir);
1227 I915_WRITE(GEN6_PMIIR, pm_iir);
1228 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001229 }
1230
Paulo Zanoni86642812013-04-12 17:57:57 -03001231 if (IS_HASWELL(dev) && ivb_can_enable_err_int(dev))
1232 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
1233
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001234 I915_WRITE(DEIER, de_ier);
1235 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07001236 if (!HAS_PCH_NOP(dev)) {
1237 I915_WRITE(SDEIER, sde_ier);
1238 POSTING_READ(SDEIER);
1239 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001240
1241 return ret;
1242}
1243
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001244static void ilk_gt_irq_handler(struct drm_device *dev,
1245 struct drm_i915_private *dev_priv,
1246 u32 gt_iir)
1247{
1248 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
1249 notify_ring(dev, &dev_priv->ring[RCS]);
1250 if (gt_iir & GT_BSD_USER_INTERRUPT)
1251 notify_ring(dev, &dev_priv->ring[VCS]);
1252}
1253
Daniel Vetterff1f5252012-10-02 15:10:55 +02001254static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001255{
Jesse Barnes46979952011-04-07 13:53:55 -07001256 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001257 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1258 int ret = IRQ_NONE;
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001259 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001260
Jesse Barnes46979952011-04-07 13:53:55 -07001261 atomic_inc(&dev_priv->irq_received);
1262
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001263 /* disable master interrupt before clearing iir */
1264 de_ier = I915_READ(DEIER);
1265 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001266 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001267
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001268 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1269 * interrupts will will be stored on its back queue, and then we'll be
1270 * able to process them after we restore SDEIER (as soon as we restore
1271 * it, we'll get an interrupt if SDEIIR still has something to process
1272 * due to its back queue). */
1273 sde_ier = I915_READ(SDEIER);
1274 I915_WRITE(SDEIER, 0);
1275 POSTING_READ(SDEIER);
1276
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001277 de_iir = I915_READ(DEIIR);
1278 gt_iir = I915_READ(GTIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001279 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001280
Daniel Vetteracd15b62012-11-30 11:24:50 +01001281 if (de_iir == 0 && gt_iir == 0 && (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +08001282 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001283
Zou Nan haic7c85102010-01-15 10:29:06 +08001284 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001285
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001286 if (IS_GEN5(dev))
1287 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
1288 else
1289 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001290
Daniel Vetterce99c252012-12-01 13:53:47 +01001291 if (de_iir & DE_AUX_CHANNEL_A)
1292 dp_aux_irq_handler(dev);
1293
Zou Nan haic7c85102010-01-15 10:29:06 +08001294 if (de_iir & DE_GSE)
Jani Nikula81a07802013-04-24 22:18:44 +03001295 intel_opregion_asle_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +08001296
Daniel Vetter74d44442012-10-02 17:54:35 +02001297 if (de_iir & DE_PIPEA_VBLANK)
1298 drm_handle_vblank(dev, 0);
1299
1300 if (de_iir & DE_PIPEB_VBLANK)
1301 drm_handle_vblank(dev, 1);
1302
Paulo Zanonide032bf2013-04-12 17:57:58 -03001303 if (de_iir & DE_POISON)
1304 DRM_ERROR("Poison interrupt\n");
1305
Paulo Zanoni86642812013-04-12 17:57:57 -03001306 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1307 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1308 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1309
1310 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1311 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1312 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1313
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001314 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001315 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +01001316 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001317 }
1318
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001319 if (de_iir & DE_PLANEB_FLIP_DONE) {
1320 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +01001321 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001322 }
Li Pengc062df62010-01-23 00:12:58 +08001323
Zou Nan haic7c85102010-01-15 10:29:06 +08001324 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -08001325 if (de_iir & DE_PCH_EVENT) {
Daniel Vetteracd15b62012-11-30 11:24:50 +01001326 u32 pch_iir = I915_READ(SDEIIR);
1327
Adam Jackson23e81d62012-06-06 15:45:44 -04001328 if (HAS_PCH_CPT(dev))
1329 cpt_irq_handler(dev, pch_iir);
1330 else
1331 ibx_irq_handler(dev, pch_iir);
Daniel Vetteracd15b62012-11-30 11:24:50 +01001332
1333 /* should clear PCH hotplug event before clear CPU irq */
1334 I915_WRITE(SDEIIR, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -08001335 }
Zou Nan haic7c85102010-01-15 10:29:06 +08001336
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001337 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
1338 ironlake_handle_rps_change(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001339
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001340 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS)
1341 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001342
Zou Nan haic7c85102010-01-15 10:29:06 +08001343 I915_WRITE(GTIIR, gt_iir);
1344 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -07001345 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001346
1347done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001348 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001349 POSTING_READ(DEIER);
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001350 I915_WRITE(SDEIER, sde_ier);
1351 POSTING_READ(SDEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001352
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001353 return ret;
1354}
1355
Jesse Barnes8a905232009-07-11 16:48:03 -04001356/**
1357 * i915_error_work_func - do process context error handling work
1358 * @work: work struct
1359 *
1360 * Fire an error uevent so userspace can see that a hang or error
1361 * was detected.
1362 */
1363static void i915_error_work_func(struct work_struct *work)
1364{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001365 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1366 work);
1367 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1368 gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04001369 struct drm_device *dev = dev_priv->dev;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001370 struct intel_ring_buffer *ring;
Ben Gamarif316a422009-09-14 17:48:46 -04001371 char *error_event[] = { "ERROR=1", NULL };
1372 char *reset_event[] = { "RESET=1", NULL };
1373 char *reset_done_event[] = { "ERROR=0", NULL };
Daniel Vetterf69061b2012-12-06 09:01:42 +01001374 int i, ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04001375
Ben Gamarif316a422009-09-14 17:48:46 -04001376 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04001377
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001378 /*
1379 * Note that there's only one work item which does gpu resets, so we
1380 * need not worry about concurrent gpu resets potentially incrementing
1381 * error->reset_counter twice. We only need to take care of another
1382 * racing irq/hangcheck declaring the gpu dead for a second time. A
1383 * quick check for that is good enough: schedule_work ensures the
1384 * correct ordering between hang detection and this work item, and since
1385 * the reset in-progress bit is only ever set by code outside of this
1386 * work we don't need to worry about any other races.
1387 */
1388 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01001389 DRM_DEBUG_DRIVER("resetting chip\n");
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001390 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE,
1391 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001392
Daniel Vetterf69061b2012-12-06 09:01:42 +01001393 ret = i915_reset(dev);
1394
1395 if (ret == 0) {
1396 /*
1397 * After all the gem state is reset, increment the reset
1398 * counter and wake up everyone waiting for the reset to
1399 * complete.
1400 *
1401 * Since unlock operations are a one-sided barrier only,
1402 * we need to insert a barrier here to order any seqno
1403 * updates before
1404 * the counter increment.
1405 */
1406 smp_mb__before_atomic_inc();
1407 atomic_inc(&dev_priv->gpu_error.reset_counter);
1408
1409 kobject_uevent_env(&dev->primary->kdev.kobj,
1410 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001411 } else {
1412 atomic_set(&error->reset_counter, I915_WEDGED);
Ben Gamarif316a422009-09-14 17:48:46 -04001413 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001414
Daniel Vetterf69061b2012-12-06 09:01:42 +01001415 for_each_ring(ring, dev_priv, i)
1416 wake_up_all(&ring->irq_queue);
1417
Ville Syrjälä96a02912013-02-18 19:08:49 +02001418 intel_display_handle_reset(dev);
1419
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001420 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04001421 }
Jesse Barnes8a905232009-07-11 16:48:03 -04001422}
1423
Daniel Vetter85f9e502012-08-31 21:42:26 +02001424/* NB: please notice the memset */
1425static void i915_get_extra_instdone(struct drm_device *dev,
1426 uint32_t *instdone)
1427{
1428 struct drm_i915_private *dev_priv = dev->dev_private;
1429 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1430
1431 switch(INTEL_INFO(dev)->gen) {
1432 case 2:
1433 case 3:
1434 instdone[0] = I915_READ(INSTDONE);
1435 break;
1436 case 4:
1437 case 5:
1438 case 6:
1439 instdone[0] = I915_READ(INSTDONE_I965);
1440 instdone[1] = I915_READ(INSTDONE1);
1441 break;
1442 default:
1443 WARN_ONCE(1, "Unsupported platform\n");
1444 case 7:
1445 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1446 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1447 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1448 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1449 break;
1450 }
1451}
1452
Chris Wilson3bd3c932010-08-19 08:19:30 +01001453#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +00001454static struct drm_i915_error_object *
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001455i915_error_object_create_sized(struct drm_i915_private *dev_priv,
1456 struct drm_i915_gem_object *src,
1457 const int num_pages)
Chris Wilson9df30792010-02-18 10:24:56 +00001458{
1459 struct drm_i915_error_object *dst;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001460 int i;
Chris Wilsone56660d2010-08-07 11:01:26 +01001461 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001462
Chris Wilson05394f32010-11-08 19:18:58 +00001463 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +00001464 return NULL;
1465
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001466 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001467 if (dst == NULL)
1468 return NULL;
1469
Chris Wilson05394f32010-11-08 19:18:58 +00001470 reloc_offset = src->gtt_offset;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001471 for (i = 0; i < num_pages; i++) {
Andrew Morton788885a2010-05-11 14:07:05 -07001472 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +01001473 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -07001474
Chris Wilsone56660d2010-08-07 11:01:26 +01001475 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001476 if (d == NULL)
1477 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +01001478
Andrew Morton788885a2010-05-11 14:07:05 -07001479 local_irq_save(flags);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001480 if (reloc_offset < dev_priv->gtt.mappable_end &&
Daniel Vetter74898d72012-02-15 23:50:22 +01001481 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +01001482 void __iomem *s;
1483
1484 /* Simply ignore tiling or any overlapping fence.
1485 * It's part of the error state, and this hopefully
1486 * captures what the GPU read.
1487 */
1488
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001489 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson172975aa2011-12-14 13:57:25 +01001490 reloc_offset);
1491 memcpy_fromio(d, s, PAGE_SIZE);
1492 io_mapping_unmap_atomic(s);
Chris Wilson960e3562012-11-15 11:32:23 +00001493 } else if (src->stolen) {
1494 unsigned long offset;
1495
1496 offset = dev_priv->mm.stolen_base;
1497 offset += src->stolen->start;
1498 offset += i << PAGE_SHIFT;
1499
Daniel Vetter1a240d42012-11-29 22:18:51 +01001500 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
Chris Wilson172975aa2011-12-14 13:57:25 +01001501 } else {
Chris Wilson9da3da62012-06-01 15:20:22 +01001502 struct page *page;
Chris Wilson172975aa2011-12-14 13:57:25 +01001503 void *s;
1504
Chris Wilson9da3da62012-06-01 15:20:22 +01001505 page = i915_gem_object_get_page(src, i);
Chris Wilson172975aa2011-12-14 13:57:25 +01001506
Chris Wilson9da3da62012-06-01 15:20:22 +01001507 drm_clflush_pages(&page, 1);
1508
1509 s = kmap_atomic(page);
Chris Wilson172975aa2011-12-14 13:57:25 +01001510 memcpy(d, s, PAGE_SIZE);
1511 kunmap_atomic(s);
1512
Chris Wilson9da3da62012-06-01 15:20:22 +01001513 drm_clflush_pages(&page, 1);
Chris Wilson172975aa2011-12-14 13:57:25 +01001514 }
Andrew Morton788885a2010-05-11 14:07:05 -07001515 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +01001516
Chris Wilson9da3da62012-06-01 15:20:22 +01001517 dst->pages[i] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +01001518
1519 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +00001520 }
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001521 dst->page_count = num_pages;
Chris Wilson05394f32010-11-08 19:18:58 +00001522 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001523
1524 return dst;
1525
1526unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001527 while (i--)
1528 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001529 kfree(dst);
1530 return NULL;
1531}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001532#define i915_error_object_create(dev_priv, src) \
1533 i915_error_object_create_sized((dev_priv), (src), \
1534 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001535
1536static void
1537i915_error_object_free(struct drm_i915_error_object *obj)
1538{
1539 int page;
1540
1541 if (obj == NULL)
1542 return;
1543
1544 for (page = 0; page < obj->page_count; page++)
1545 kfree(obj->pages[page]);
1546
1547 kfree(obj);
1548}
1549
Daniel Vetter742cbee2012-04-27 15:17:39 +02001550void
1551i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001552{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001553 struct drm_i915_error_state *error = container_of(error_ref,
1554 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001555 int i;
1556
Chris Wilson52d39a22012-02-15 11:25:37 +00001557 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1558 i915_error_object_free(error->ring[i].batchbuffer);
1559 i915_error_object_free(error->ring[i].ringbuffer);
1560 kfree(error->ring[i].requests);
1561 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001562
Chris Wilson9df30792010-02-18 10:24:56 +00001563 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001564 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +00001565 kfree(error);
1566}
Chris Wilson1b502472012-04-24 15:47:30 +01001567static void capture_bo(struct drm_i915_error_buffer *err,
1568 struct drm_i915_gem_object *obj)
1569{
1570 err->size = obj->base.size;
1571 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001572 err->rseqno = obj->last_read_seqno;
1573 err->wseqno = obj->last_write_seqno;
Chris Wilson1b502472012-04-24 15:47:30 +01001574 err->gtt_offset = obj->gtt_offset;
1575 err->read_domains = obj->base.read_domains;
1576 err->write_domain = obj->base.write_domain;
1577 err->fence_reg = obj->fence_reg;
1578 err->pinned = 0;
1579 if (obj->pin_count > 0)
1580 err->pinned = 1;
1581 if (obj->user_pin_count > 0)
1582 err->pinned = -1;
1583 err->tiling = obj->tiling_mode;
1584 err->dirty = obj->dirty;
1585 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1586 err->ring = obj->ring ? obj->ring->id : -1;
1587 err->cache_level = obj->cache_level;
1588}
Chris Wilson9df30792010-02-18 10:24:56 +00001589
Chris Wilson1b502472012-04-24 15:47:30 +01001590static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1591 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001592{
1593 struct drm_i915_gem_object *obj;
1594 int i = 0;
1595
1596 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001597 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001598 if (++i == count)
1599 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001600 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001601
Chris Wilson1b502472012-04-24 15:47:30 +01001602 return i;
1603}
1604
1605static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1606 int count, struct list_head *head)
1607{
1608 struct drm_i915_gem_object *obj;
1609 int i = 0;
1610
1611 list_for_each_entry(obj, head, gtt_list) {
1612 if (obj->pin_count == 0)
1613 continue;
1614
1615 capture_bo(err++, obj);
1616 if (++i == count)
1617 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001618 }
1619
1620 return i;
1621}
1622
Chris Wilson748ebc62010-10-24 10:28:47 +01001623static void i915_gem_record_fences(struct drm_device *dev,
1624 struct drm_i915_error_state *error)
1625{
1626 struct drm_i915_private *dev_priv = dev->dev_private;
1627 int i;
1628
1629 /* Fences */
1630 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001631 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001632 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001633 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001634 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1635 break;
1636 case 5:
1637 case 4:
1638 for (i = 0; i < 16; i++)
1639 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1640 break;
1641 case 3:
1642 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1643 for (i = 0; i < 8; i++)
1644 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1645 case 2:
1646 for (i = 0; i < 8; i++)
1647 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1648 break;
1649
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001650 default:
1651 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001652 }
1653}
1654
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001655static struct drm_i915_error_object *
1656i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1657 struct intel_ring_buffer *ring)
1658{
1659 struct drm_i915_gem_object *obj;
1660 u32 seqno;
1661
1662 if (!ring->get_seqno)
1663 return NULL;
1664
Daniel Vetterb45305f2012-12-17 16:21:27 +01001665 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1666 u32 acthd = I915_READ(ACTHD);
1667
1668 if (WARN_ON(ring->id != RCS))
1669 return NULL;
1670
1671 obj = ring->private;
1672 if (acthd >= obj->gtt_offset &&
1673 acthd < obj->gtt_offset + obj->base.size)
1674 return i915_error_object_create(dev_priv, obj);
1675 }
1676
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001677 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001678 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1679 if (obj->ring != ring)
1680 continue;
1681
Chris Wilson0201f1e2012-07-20 12:41:01 +01001682 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001683 continue;
1684
1685 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1686 continue;
1687
1688 /* We need to copy these to an anonymous buffer as the simplest
1689 * method to avoid being overwritten by userspace.
1690 */
1691 return i915_error_object_create(dev_priv, obj);
1692 }
1693
1694 return NULL;
1695}
1696
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001697static void i915_record_ring_state(struct drm_device *dev,
1698 struct drm_i915_error_state *error,
1699 struct intel_ring_buffer *ring)
1700{
1701 struct drm_i915_private *dev_priv = dev->dev_private;
1702
Daniel Vetter33f3f512011-12-14 13:57:39 +01001703 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001704 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001705 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001706 error->semaphore_mboxes[ring->id][0]
1707 = I915_READ(RING_SYNC_0(ring->mmio_base));
1708 error->semaphore_mboxes[ring->id][1]
1709 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001710 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1711 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001712 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001713
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001714 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001715 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001716 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1717 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1718 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001719 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001720 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001721 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001722 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001723 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001724 error->ipeir[ring->id] = I915_READ(IPEIR);
1725 error->ipehr[ring->id] = I915_READ(IPEHR);
1726 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001727 }
1728
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001729 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001730 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001731 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001732 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001733 error->head[ring->id] = I915_READ_HEAD(ring);
1734 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001735 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001736
1737 error->cpu_ring_head[ring->id] = ring->head;
1738 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001739}
1740
Ben Widawsky8c123e52013-03-04 17:00:29 -08001741
1742static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1743 struct drm_i915_error_state *error,
1744 struct drm_i915_error_ring *ering)
1745{
1746 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1747 struct drm_i915_gem_object *obj;
1748
1749 /* Currently render ring is the only HW context user */
1750 if (ring->id != RCS || !error->ccid)
1751 return;
1752
1753 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list) {
1754 if ((error->ccid & PAGE_MASK) == obj->gtt_offset) {
1755 ering->ctx = i915_error_object_create_sized(dev_priv,
1756 obj, 1);
1757 }
1758 }
1759}
1760
Chris Wilson52d39a22012-02-15 11:25:37 +00001761static void i915_gem_record_rings(struct drm_device *dev,
1762 struct drm_i915_error_state *error)
1763{
1764 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001765 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001766 struct drm_i915_gem_request *request;
1767 int i, count;
1768
Chris Wilsonb4519512012-05-11 14:29:30 +01001769 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001770 i915_record_ring_state(dev, error, ring);
1771
1772 error->ring[i].batchbuffer =
1773 i915_error_first_batchbuffer(dev_priv, ring);
1774
1775 error->ring[i].ringbuffer =
1776 i915_error_object_create(dev_priv, ring->obj);
1777
Ben Widawsky8c123e52013-03-04 17:00:29 -08001778
1779 i915_gem_record_active_context(ring, error, &error->ring[i]);
1780
Chris Wilson52d39a22012-02-15 11:25:37 +00001781 count = 0;
1782 list_for_each_entry(request, &ring->request_list, list)
1783 count++;
1784
1785 error->ring[i].num_requests = count;
1786 error->ring[i].requests =
1787 kmalloc(count*sizeof(struct drm_i915_error_request),
1788 GFP_ATOMIC);
1789 if (error->ring[i].requests == NULL) {
1790 error->ring[i].num_requests = 0;
1791 continue;
1792 }
1793
1794 count = 0;
1795 list_for_each_entry(request, &ring->request_list, list) {
1796 struct drm_i915_error_request *erq;
1797
1798 erq = &error->ring[i].requests[count++];
1799 erq->seqno = request->seqno;
1800 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001801 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001802 }
1803 }
1804}
1805
Jesse Barnes8a905232009-07-11 16:48:03 -04001806/**
1807 * i915_capture_error_state - capture an error record for later analysis
1808 * @dev: drm device
1809 *
1810 * Should be called when an error is detected (either a hang or an error
1811 * interrupt) to capture error state from the time of the error. Fills
1812 * out a structure which becomes available in debugfs for user level tools
1813 * to pick up.
1814 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001815static void i915_capture_error_state(struct drm_device *dev)
1816{
1817 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001818 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001819 struct drm_i915_error_state *error;
1820 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001821 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001822
Daniel Vetter99584db2012-11-14 17:14:04 +01001823 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1824 error = dev_priv->gpu_error.first_error;
1825 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001826 if (error)
1827 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001828
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001829 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001830 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001831 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001832 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1833 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001834 }
1835
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001836 DRM_INFO("capturing error event; look for more information in "
Ben Widawsky2f86f192013-01-28 15:32:15 -08001837 "/sys/kernel/debug/dri/%d/i915_error_state\n",
Chris Wilsonb6f78332011-02-01 14:15:55 +00001838 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001839
Daniel Vetter742cbee2012-04-27 15:17:39 +02001840 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001841 error->eir = I915_READ(EIR);
1842 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001843 if (HAS_HW_CONTEXTS(dev))
1844 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001845
1846 if (HAS_PCH_SPLIT(dev))
1847 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1848 else if (IS_VALLEYVIEW(dev))
1849 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1850 else if (IS_GEN2(dev))
1851 error->ier = I915_READ16(IER);
1852 else
1853 error->ier = I915_READ(IER);
1854
Chris Wilson0f3b6842013-01-15 12:05:55 +00001855 if (INTEL_INFO(dev)->gen >= 6)
1856 error->derrmr = I915_READ(DERRMR);
1857
1858 if (IS_VALLEYVIEW(dev))
1859 error->forcewake = I915_READ(FORCEWAKE_VLV);
1860 else if (INTEL_INFO(dev)->gen >= 7)
1861 error->forcewake = I915_READ(FORCEWAKE_MT);
1862 else if (INTEL_INFO(dev)->gen == 6)
1863 error->forcewake = I915_READ(FORCEWAKE);
1864
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001865 if (!HAS_PCH_SPLIT(dev))
1866 for_each_pipe(pipe)
1867 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001868
Daniel Vetter33f3f512011-12-14 13:57:39 +01001869 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001870 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001871 error->done_reg = I915_READ(DONE_REG);
1872 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001873
Ben Widawsky71e172e2012-08-20 16:15:13 -07001874 if (INTEL_INFO(dev)->gen == 7)
1875 error->err_int = I915_READ(GEN7_ERR_INT);
1876
Ben Widawsky050ee912012-08-22 11:32:15 -07001877 i915_get_extra_instdone(dev, error->extra_instdone);
1878
Chris Wilson748ebc62010-10-24 10:28:47 +01001879 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001880 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001881
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001882 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001883 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001884 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001885
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001886 i = 0;
1887 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1888 i++;
1889 error->active_bo_count = i;
Chris Wilson6c085a72012-08-20 11:40:46 +02001890 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list)
Chris Wilson1b502472012-04-24 15:47:30 +01001891 if (obj->pin_count)
1892 i++;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001893 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001894
Chris Wilson8e934db2011-01-24 12:34:00 +00001895 error->active_bo = NULL;
1896 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001897 if (i) {
1898 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001899 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001900 if (error->active_bo)
1901 error->pinned_bo =
1902 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001903 }
1904
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001905 if (error->active_bo)
1906 error->active_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001907 capture_active_bo(error->active_bo,
1908 error->active_bo_count,
1909 &dev_priv->mm.active_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001910
1911 if (error->pinned_bo)
1912 error->pinned_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001913 capture_pinned_bo(error->pinned_bo,
1914 error->pinned_bo_count,
Chris Wilson6c085a72012-08-20 11:40:46 +02001915 &dev_priv->mm.bound_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001916
Jesse Barnes8a905232009-07-11 16:48:03 -04001917 do_gettimeofday(&error->time);
1918
Chris Wilson6ef3d422010-08-04 20:26:07 +01001919 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001920 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001921
Daniel Vetter99584db2012-11-14 17:14:04 +01001922 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1923 if (dev_priv->gpu_error.first_error == NULL) {
1924 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00001925 error = NULL;
1926 }
Daniel Vetter99584db2012-11-14 17:14:04 +01001927 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001928
1929 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001930 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001931}
1932
1933void i915_destroy_error_state(struct drm_device *dev)
1934{
1935 struct drm_i915_private *dev_priv = dev->dev_private;
1936 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001937 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001938
Daniel Vetter99584db2012-11-14 17:14:04 +01001939 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1940 error = dev_priv->gpu_error.first_error;
1941 dev_priv->gpu_error.first_error = NULL;
1942 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001943
1944 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001945 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001946}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001947#else
1948#define i915_capture_error_state(x)
1949#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001950
Chris Wilson35aed2e2010-05-27 13:18:12 +01001951static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04001952{
1953 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07001954 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04001955 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07001956 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04001957
Chris Wilson35aed2e2010-05-27 13:18:12 +01001958 if (!eir)
1959 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04001960
Joe Perchesa70491c2012-03-18 13:00:11 -07001961 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04001962
Ben Widawskybd9854f2012-08-23 15:18:09 -07001963 i915_get_extra_instdone(dev, instdone);
1964
Jesse Barnes8a905232009-07-11 16:48:03 -04001965 if (IS_G4X(dev)) {
1966 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1967 u32 ipeir = I915_READ(IPEIR_I965);
1968
Joe Perchesa70491c2012-03-18 13:00:11 -07001969 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1970 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07001971 for (i = 0; i < ARRAY_SIZE(instdone); i++)
1972 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07001973 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07001974 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001975 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001976 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001977 }
1978 if (eir & GM45_ERROR_PAGE_TABLE) {
1979 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001980 pr_err("page table error\n");
1981 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001982 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001983 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001984 }
1985 }
1986
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001987 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001988 if (eir & I915_ERROR_PAGE_TABLE) {
1989 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001990 pr_err("page table error\n");
1991 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001992 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001993 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001994 }
1995 }
1996
1997 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001998 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001999 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002000 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002001 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002002 /* pipestat has already been acked */
2003 }
2004 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002005 pr_err("instruction error\n");
2006 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002007 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2008 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002009 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002010 u32 ipeir = I915_READ(IPEIR);
2011
Joe Perchesa70491c2012-03-18 13:00:11 -07002012 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2013 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002014 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002015 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002016 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002017 } else {
2018 u32 ipeir = I915_READ(IPEIR_I965);
2019
Joe Perchesa70491c2012-03-18 13:00:11 -07002020 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2021 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002022 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002023 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002024 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002025 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002026 }
2027 }
2028
2029 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002030 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002031 eir = I915_READ(EIR);
2032 if (eir) {
2033 /*
2034 * some errors might have become stuck,
2035 * mask them.
2036 */
2037 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2038 I915_WRITE(EMR, I915_READ(EMR) | eir);
2039 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2040 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002041}
2042
2043/**
2044 * i915_handle_error - handle an error interrupt
2045 * @dev: drm device
2046 *
2047 * Do some basic checking of regsiter state at error interrupt time and
2048 * dump it to the syslog. Also call i915_capture_error_state() to make
2049 * sure we get a record and make it available in debugfs. Fire a uevent
2050 * so userspace knows something bad happened (should trigger collection
2051 * of a ring dump etc.).
2052 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002053void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002054{
2055 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002056 struct intel_ring_buffer *ring;
2057 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002058
2059 i915_capture_error_state(dev);
2060 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002061
Ben Gamariba1234d2009-09-14 17:48:47 -04002062 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002063 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2064 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002065
Ben Gamari11ed50e2009-09-14 17:48:45 -04002066 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002067 * Wakeup waiting processes so that the reset work item
2068 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002069 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002070 for_each_ring(ring, dev_priv, i)
2071 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002072 }
2073
Daniel Vetter99584db2012-11-14 17:14:04 +01002074 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002075}
2076
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002077static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002078{
2079 drm_i915_private_t *dev_priv = dev->dev_private;
2080 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2081 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002082 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002083 struct intel_unpin_work *work;
2084 unsigned long flags;
2085 bool stall_detected;
2086
2087 /* Ignore early vblank irqs */
2088 if (intel_crtc == NULL)
2089 return;
2090
2091 spin_lock_irqsave(&dev->event_lock, flags);
2092 work = intel_crtc->unpin_work;
2093
Chris Wilsone7d841c2012-12-03 11:36:30 +00002094 if (work == NULL ||
2095 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2096 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002097 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2098 spin_unlock_irqrestore(&dev->event_lock, flags);
2099 return;
2100 }
2101
2102 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002103 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002104 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002105 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002106 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
2107 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002108 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002109 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00002110 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002111 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002112 crtc->x * crtc->fb->bits_per_pixel/8);
2113 }
2114
2115 spin_unlock_irqrestore(&dev->event_lock, flags);
2116
2117 if (stall_detected) {
2118 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2119 intel_prepare_page_flip(dev, intel_crtc->plane);
2120 }
2121}
2122
Keith Packard42f52ef2008-10-18 19:39:29 -07002123/* Called from drm generic code, passed 'crtc' which
2124 * we use as a pipe index
2125 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002126static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002127{
2128 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002129 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002130
Chris Wilson5eddb702010-09-11 13:48:45 +01002131 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002132 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002133
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002134 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002135 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002136 i915_enable_pipestat(dev_priv, pipe,
2137 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002138 else
Keith Packard7c463582008-11-04 02:03:27 -08002139 i915_enable_pipestat(dev_priv, pipe,
2140 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002141
2142 /* maintain vblank delivery even in deep C-states */
2143 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002144 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002145 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002146
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002147 return 0;
2148}
2149
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002150static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002151{
2152 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2153 unsigned long irqflags;
2154
2155 if (!i915_pipe_enabled(dev, pipe))
2156 return -EINVAL;
2157
2158 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2159 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002160 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002161 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2162
2163 return 0;
2164}
2165
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002166static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002167{
2168 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2169 unsigned long irqflags;
2170
2171 if (!i915_pipe_enabled(dev, pipe))
2172 return -EINVAL;
2173
2174 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002175 ironlake_enable_display_irq(dev_priv,
2176 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002177 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2178
2179 return 0;
2180}
2181
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002182static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2183{
2184 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2185 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002186 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002187
2188 if (!i915_pipe_enabled(dev, pipe))
2189 return -EINVAL;
2190
2191 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002192 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002193 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002194 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002195 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002196 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002197 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002198 i915_enable_pipestat(dev_priv, pipe,
2199 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002200 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2201
2202 return 0;
2203}
2204
Keith Packard42f52ef2008-10-18 19:39:29 -07002205/* Called from drm generic code, passed 'crtc' which
2206 * we use as a pipe index
2207 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002208static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002209{
2210 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002211 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002212
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002213 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002214 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002215 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002216
Jesse Barnesf796cf82011-04-07 13:58:17 -07002217 i915_disable_pipestat(dev_priv, pipe,
2218 PIPE_VBLANK_INTERRUPT_ENABLE |
2219 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2220 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2221}
2222
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002223static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002224{
2225 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2226 unsigned long irqflags;
2227
2228 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2229 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002230 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002231 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002232}
2233
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002234static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002235{
2236 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2237 unsigned long irqflags;
2238
2239 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002240 ironlake_disable_display_irq(dev_priv,
2241 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002242 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2243}
2244
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002245static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2246{
2247 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2248 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002249 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002250
2251 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002252 i915_disable_pipestat(dev_priv, pipe,
2253 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002254 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002255 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002256 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002257 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002258 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002259 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002260 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2261}
2262
Chris Wilson893eead2010-10-27 14:44:35 +01002263static u32
2264ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002265{
Chris Wilson893eead2010-10-27 14:44:35 +01002266 return list_entry(ring->request_list.prev,
2267 struct drm_i915_gem_request, list)->seqno;
2268}
2269
2270static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
2271{
2272 if (list_empty(&ring->request_list) ||
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002273 i915_seqno_passed(ring->get_seqno(ring, false),
2274 ring_last_seqno(ring))) {
Chris Wilson893eead2010-10-27 14:44:35 +01002275 /* Issue a wake-up to catch stuck h/w. */
Ben Widawsky9574b3f2012-04-26 16:03:01 -07002276 if (waitqueue_active(&ring->irq_queue)) {
2277 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2278 ring->name);
Chris Wilson893eead2010-10-27 14:44:35 +01002279 wake_up_all(&ring->irq_queue);
2280 *err = true;
2281 }
2282 return true;
2283 }
2284 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04002285}
2286
Chris Wilsona24a11e2013-03-14 17:52:05 +02002287static bool semaphore_passed(struct intel_ring_buffer *ring)
2288{
2289 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2290 u32 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
2291 struct intel_ring_buffer *signaller;
2292 u32 cmd, ipehr, acthd_min;
2293
2294 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2295 if ((ipehr & ~(0x3 << 16)) !=
2296 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
2297 return false;
2298
2299 /* ACTHD is likely pointing to the dword after the actual command,
2300 * so scan backwards until we find the MBOX.
2301 */
2302 acthd_min = max((int)acthd - 3 * 4, 0);
2303 do {
2304 cmd = ioread32(ring->virtual_start + acthd);
2305 if (cmd == ipehr)
2306 break;
2307
2308 acthd -= 4;
2309 if (acthd < acthd_min)
2310 return false;
2311 } while (1);
2312
2313 signaller = &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
2314 return i915_seqno_passed(signaller->get_seqno(signaller, false),
2315 ioread32(ring->virtual_start+acthd+4)+1);
2316}
2317
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002318static bool kick_ring(struct intel_ring_buffer *ring)
2319{
2320 struct drm_device *dev = ring->dev;
2321 struct drm_i915_private *dev_priv = dev->dev_private;
2322 u32 tmp = I915_READ_CTL(ring);
2323 if (tmp & RING_WAIT) {
2324 DRM_ERROR("Kicking stuck wait on %s\n",
2325 ring->name);
2326 I915_WRITE_CTL(ring, tmp);
2327 return true;
2328 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002329
2330 if (INTEL_INFO(dev)->gen >= 6 &&
2331 tmp & RING_WAIT_SEMAPHORE &&
2332 semaphore_passed(ring)) {
2333 DRM_ERROR("Kicking stuck semaphore on %s\n",
2334 ring->name);
2335 I915_WRITE_CTL(ring, tmp);
2336 return true;
2337 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002338 return false;
2339}
2340
Chris Wilsond1e61e72012-04-10 17:00:41 +01002341static bool i915_hangcheck_hung(struct drm_device *dev)
2342{
2343 drm_i915_private_t *dev_priv = dev->dev_private;
2344
Daniel Vetter99584db2012-11-14 17:14:04 +01002345 if (dev_priv->gpu_error.hangcheck_count++ > 1) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002346 bool hung = true;
2347
Chris Wilsond1e61e72012-04-10 17:00:41 +01002348 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
2349 i915_handle_error(dev, true);
2350
2351 if (!IS_GEN2(dev)) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002352 struct intel_ring_buffer *ring;
2353 int i;
2354
Chris Wilsond1e61e72012-04-10 17:00:41 +01002355 /* Is the chip hanging on a WAIT_FOR_EVENT?
2356 * If so we can simply poke the RB_WAIT bit
2357 * and break the hang. This should work on
2358 * all but the second generation chipsets.
2359 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002360 for_each_ring(ring, dev_priv, i)
2361 hung &= !kick_ring(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002362 }
2363
Chris Wilsonb4519512012-05-11 14:29:30 +01002364 return hung;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002365 }
2366
2367 return false;
2368}
2369
Ben Gamarif65d9422009-09-14 17:48:44 -04002370/**
2371 * This is called when the chip hasn't reported back with completed
2372 * batchbuffers in a long time. The first time this is called we simply record
2373 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
2374 * again, we assume the chip is wedged and try to fix it.
2375 */
2376void i915_hangcheck_elapsed(unsigned long data)
2377{
2378 struct drm_device *dev = (struct drm_device *)data;
2379 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002380 uint32_t acthd[I915_NUM_RINGS], instdone[I915_NUM_INSTDONE_REG];
Chris Wilsonb4519512012-05-11 14:29:30 +01002381 struct intel_ring_buffer *ring;
2382 bool err = false, idle;
2383 int i;
Chris Wilson893eead2010-10-27 14:44:35 +01002384
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002385 if (!i915_enable_hangcheck)
2386 return;
2387
Chris Wilsonb4519512012-05-11 14:29:30 +01002388 memset(acthd, 0, sizeof(acthd));
2389 idle = true;
2390 for_each_ring(ring, dev_priv, i) {
2391 idle &= i915_hangcheck_ring_idle(ring, &err);
2392 acthd[i] = intel_ring_get_active_head(ring);
2393 }
2394
Chris Wilson893eead2010-10-27 14:44:35 +01002395 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002396 if (idle) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002397 if (err) {
2398 if (i915_hangcheck_hung(dev))
2399 return;
2400
Chris Wilson893eead2010-10-27 14:44:35 +01002401 goto repeat;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002402 }
2403
Daniel Vetter99584db2012-11-14 17:14:04 +01002404 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilson893eead2010-10-27 14:44:35 +01002405 return;
2406 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002407
Ben Widawskybd9854f2012-08-23 15:18:09 -07002408 i915_get_extra_instdone(dev, instdone);
Daniel Vetter99584db2012-11-14 17:14:04 +01002409 if (memcmp(dev_priv->gpu_error.last_acthd, acthd,
2410 sizeof(acthd)) == 0 &&
2411 memcmp(dev_priv->gpu_error.prev_instdone, instdone,
2412 sizeof(instdone)) == 0) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002413 if (i915_hangcheck_hung(dev))
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002414 return;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002415 } else {
Daniel Vetter99584db2012-11-14 17:14:04 +01002416 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002417
Daniel Vetter99584db2012-11-14 17:14:04 +01002418 memcpy(dev_priv->gpu_error.last_acthd, acthd,
2419 sizeof(acthd));
2420 memcpy(dev_priv->gpu_error.prev_instdone, instdone,
2421 sizeof(instdone));
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002422 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002423
Chris Wilson893eead2010-10-27 14:44:35 +01002424repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04002425 /* Reset timer case chip hangs without another request being added */
Daniel Vetter99584db2012-11-14 17:14:04 +01002426 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +01002427 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002428}
2429
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430/* drm_dma.h hooks
2431*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002432static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002433{
2434 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2435
Jesse Barnes46979952011-04-07 13:53:55 -07002436 atomic_set(&dev_priv->irq_received, 0);
2437
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002438 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002439
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002440 /* XXX hotplug from PCH */
2441
2442 I915_WRITE(DEIMR, 0xffffffff);
2443 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002444 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002445
2446 /* and GT */
2447 I915_WRITE(GTIMR, 0xffffffff);
2448 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002449 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002450
Ben Widawskyab5c6082013-04-05 13:12:41 -07002451 if (HAS_PCH_NOP(dev))
2452 return;
2453
Zhenyu Wangc6501562009-11-03 18:57:21 +00002454 /* south display irq */
2455 I915_WRITE(SDEIMR, 0xffffffff);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002456 /*
2457 * SDEIER is also touched by the interrupt handler to work around missed
2458 * PCH interrupts. Hence we can't update it after the interrupt handler
2459 * is enabled - instead we unconditionally enable all PCH interrupt
2460 * sources here, but then only unmask them as needed with SDEIMR.
2461 */
2462 I915_WRITE(SDEIER, 0xffffffff);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002463 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002464}
2465
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002466static void valleyview_irq_preinstall(struct drm_device *dev)
2467{
2468 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2469 int pipe;
2470
2471 atomic_set(&dev_priv->irq_received, 0);
2472
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002473 /* VLV magic */
2474 I915_WRITE(VLV_IMR, 0);
2475 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2476 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2477 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2478
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002479 /* and GT */
2480 I915_WRITE(GTIIR, I915_READ(GTIIR));
2481 I915_WRITE(GTIIR, I915_READ(GTIIR));
2482 I915_WRITE(GTIMR, 0xffffffff);
2483 I915_WRITE(GTIER, 0x0);
2484 POSTING_READ(GTIER);
2485
2486 I915_WRITE(DPINVGTT, 0xff);
2487
2488 I915_WRITE(PORT_HOTPLUG_EN, 0);
2489 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2490 for_each_pipe(pipe)
2491 I915_WRITE(PIPESTAT(pipe), 0xffff);
2492 I915_WRITE(VLV_IIR, 0xffffffff);
2493 I915_WRITE(VLV_IMR, 0xffffffff);
2494 I915_WRITE(VLV_IER, 0x0);
2495 POSTING_READ(VLV_IER);
2496}
2497
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002498static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002499{
2500 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002501 struct drm_mode_config *mode_config = &dev->mode_config;
2502 struct intel_encoder *intel_encoder;
2503 u32 mask = ~I915_READ(SDEIMR);
2504 u32 hotplug;
Keith Packard7fe0b972011-09-19 13:31:02 -07002505
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002506 if (HAS_PCH_IBX(dev)) {
Egbert Eich995e6b32013-04-16 13:36:56 +02002507 mask &= ~SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002508 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002509 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2510 mask |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002511 } else {
Egbert Eich995e6b32013-04-16 13:36:56 +02002512 mask &= ~SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002513 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002514 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2515 mask |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002516 }
2517
2518 I915_WRITE(SDEIMR, ~mask);
2519
2520 /*
2521 * Enable digital hotplug on the PCH, and configure the DP short pulse
2522 * duration to 2ms (which is the minimum in the Display Port spec)
2523 *
2524 * This register is the same on all known PCH chips.
2525 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002526 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2527 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2528 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2529 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2530 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2531 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2532}
2533
Paulo Zanonid46da432013-02-08 17:35:15 -02002534static void ibx_irq_postinstall(struct drm_device *dev)
2535{
2536 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002537 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002538
Paulo Zanoni86642812013-04-12 17:57:57 -03002539 if (HAS_PCH_IBX(dev)) {
2540 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002541 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002542 } else {
2543 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2544
2545 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2546 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002547
2548 if (HAS_PCH_NOP(dev))
2549 return;
2550
Paulo Zanonid46da432013-02-08 17:35:15 -02002551 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2552 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002553}
2554
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002555static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002556{
2557 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2558 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002559 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002560 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002561 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002562 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002563 u32 render_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002564
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002565 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002566
2567 /* should always can generate irq */
2568 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002569 I915_WRITE(DEIMR, dev_priv->irq_mask);
2570 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002571 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002572
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002573 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002574
2575 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002576 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002577
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002578 if (IS_GEN6(dev))
2579 render_irqs =
2580 GT_USER_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002581 GEN6_BSD_USER_INTERRUPT |
2582 GEN6_BLITTER_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002583 else
2584 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00002585 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00002586 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002587 GT_BSD_USER_INTERRUPT;
2588 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002589 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002590
Paulo Zanonid46da432013-02-08 17:35:15 -02002591 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002592
Jesse Barnesf97108d2010-01-29 11:27:07 -08002593 if (IS_IRONLAKE_M(dev)) {
2594 /* Clear & enable PCU event interrupts */
2595 I915_WRITE(DEIIR, DE_PCU_EVENT);
2596 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
2597 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
2598 }
2599
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002600 return 0;
2601}
2602
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002603static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002604{
2605 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2606 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002607 u32 display_mask =
2608 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2609 DE_PLANEC_FLIP_DONE_IVB |
2610 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002611 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002612 DE_AUX_CHANNEL_A_IVB |
2613 DE_ERR_INT_IVB;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002614 u32 render_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002615
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002616 dev_priv->irq_mask = ~display_mask;
2617
2618 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002619 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002620 I915_WRITE(DEIIR, I915_READ(DEIIR));
2621 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002622 I915_WRITE(DEIER,
2623 display_mask |
2624 DE_PIPEC_VBLANK_IVB |
2625 DE_PIPEB_VBLANK_IVB |
2626 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002627 POSTING_READ(DEIER);
2628
Ben Widawsky15b9f802012-05-25 16:56:23 -07002629 dev_priv->gt_irq_mask = ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002630
2631 I915_WRITE(GTIIR, I915_READ(GTIIR));
2632 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2633
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002634 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
Ben Widawsky15b9f802012-05-25 16:56:23 -07002635 GEN6_BLITTER_USER_INTERRUPT | GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002636 I915_WRITE(GTIER, render_irqs);
2637 POSTING_READ(GTIER);
2638
Paulo Zanonid46da432013-02-08 17:35:15 -02002639 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002640
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002641 return 0;
2642}
2643
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002644static int valleyview_irq_postinstall(struct drm_device *dev)
2645{
2646 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002647 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002648 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002649 u32 render_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002650
2651 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002652 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2653 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2654 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002655 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2656
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002657 /*
2658 *Leave vblank interrupts masked initially. enable/disable will
2659 * toggle them based on usage.
2660 */
2661 dev_priv->irq_mask = (~enable_mask) |
2662 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2663 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002664
Daniel Vetter20afbda2012-12-11 14:05:07 +01002665 I915_WRITE(PORT_HOTPLUG_EN, 0);
2666 POSTING_READ(PORT_HOTPLUG_EN);
2667
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002668 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2669 I915_WRITE(VLV_IER, enable_mask);
2670 I915_WRITE(VLV_IIR, 0xffffffff);
2671 I915_WRITE(PIPESTAT(0), 0xffff);
2672 I915_WRITE(PIPESTAT(1), 0xffff);
2673 POSTING_READ(VLV_IER);
2674
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002675 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002676 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002677 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
2678
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002679 I915_WRITE(VLV_IIR, 0xffffffff);
2680 I915_WRITE(VLV_IIR, 0xffffffff);
2681
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002682 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002683 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002684
2685 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
2686 GEN6_BLITTER_USER_INTERRUPT;
2687 I915_WRITE(GTIER, render_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002688 POSTING_READ(GTIER);
2689
2690 /* ack & enable invalid PTE error interrupts */
2691#if 0 /* FIXME: add support to irq handler for checking these bits */
2692 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2693 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2694#endif
2695
2696 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002697
2698 return 0;
2699}
2700
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002701static void valleyview_irq_uninstall(struct drm_device *dev)
2702{
2703 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2704 int pipe;
2705
2706 if (!dev_priv)
2707 return;
2708
Egbert Eichac4c16c2013-04-16 13:36:58 +02002709 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2710
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002711 for_each_pipe(pipe)
2712 I915_WRITE(PIPESTAT(pipe), 0xffff);
2713
2714 I915_WRITE(HWSTAM, 0xffffffff);
2715 I915_WRITE(PORT_HOTPLUG_EN, 0);
2716 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2717 for_each_pipe(pipe)
2718 I915_WRITE(PIPESTAT(pipe), 0xffff);
2719 I915_WRITE(VLV_IIR, 0xffffffff);
2720 I915_WRITE(VLV_IMR, 0xffffffff);
2721 I915_WRITE(VLV_IER, 0x0);
2722 POSTING_READ(VLV_IER);
2723}
2724
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002725static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002726{
2727 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002728
2729 if (!dev_priv)
2730 return;
2731
Egbert Eichac4c16c2013-04-16 13:36:58 +02002732 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2733
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002734 I915_WRITE(HWSTAM, 0xffffffff);
2735
2736 I915_WRITE(DEIMR, 0xffffffff);
2737 I915_WRITE(DEIER, 0x0);
2738 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002739 if (IS_GEN7(dev))
2740 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002741
2742 I915_WRITE(GTIMR, 0xffffffff);
2743 I915_WRITE(GTIER, 0x0);
2744 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002745
Ben Widawskyab5c6082013-04-05 13:12:41 -07002746 if (HAS_PCH_NOP(dev))
2747 return;
2748
Keith Packard192aac1f2011-09-20 10:12:44 -07002749 I915_WRITE(SDEIMR, 0xffffffff);
2750 I915_WRITE(SDEIER, 0x0);
2751 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002752 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2753 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002754}
2755
Chris Wilsonc2798b12012-04-22 21:13:57 +01002756static void i8xx_irq_preinstall(struct drm_device * dev)
2757{
2758 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2759 int pipe;
2760
2761 atomic_set(&dev_priv->irq_received, 0);
2762
2763 for_each_pipe(pipe)
2764 I915_WRITE(PIPESTAT(pipe), 0);
2765 I915_WRITE16(IMR, 0xffff);
2766 I915_WRITE16(IER, 0x0);
2767 POSTING_READ16(IER);
2768}
2769
2770static int i8xx_irq_postinstall(struct drm_device *dev)
2771{
2772 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2773
Chris Wilsonc2798b12012-04-22 21:13:57 +01002774 I915_WRITE16(EMR,
2775 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2776
2777 /* Unmask the interrupts that we always want on. */
2778 dev_priv->irq_mask =
2779 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2780 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2781 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2782 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2783 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2784 I915_WRITE16(IMR, dev_priv->irq_mask);
2785
2786 I915_WRITE16(IER,
2787 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2788 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2789 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2790 I915_USER_INTERRUPT);
2791 POSTING_READ16(IER);
2792
2793 return 0;
2794}
2795
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002796/*
2797 * Returns true when a page flip has completed.
2798 */
2799static bool i8xx_handle_vblank(struct drm_device *dev,
2800 int pipe, u16 iir)
2801{
2802 drm_i915_private_t *dev_priv = dev->dev_private;
2803 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2804
2805 if (!drm_handle_vblank(dev, pipe))
2806 return false;
2807
2808 if ((iir & flip_pending) == 0)
2809 return false;
2810
2811 intel_prepare_page_flip(dev, pipe);
2812
2813 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2814 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2815 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2816 * the flip is completed (no longer pending). Since this doesn't raise
2817 * an interrupt per se, we watch for the change at vblank.
2818 */
2819 if (I915_READ16(ISR) & flip_pending)
2820 return false;
2821
2822 intel_finish_page_flip(dev, pipe);
2823
2824 return true;
2825}
2826
Daniel Vetterff1f5252012-10-02 15:10:55 +02002827static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01002828{
2829 struct drm_device *dev = (struct drm_device *) arg;
2830 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002831 u16 iir, new_iir;
2832 u32 pipe_stats[2];
2833 unsigned long irqflags;
2834 int irq_received;
2835 int pipe;
2836 u16 flip_mask =
2837 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2838 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2839
2840 atomic_inc(&dev_priv->irq_received);
2841
2842 iir = I915_READ16(IIR);
2843 if (iir == 0)
2844 return IRQ_NONE;
2845
2846 while (iir & ~flip_mask) {
2847 /* Can't rely on pipestat interrupt bit in iir as it might
2848 * have been cleared after the pipestat interrupt was received.
2849 * It doesn't set the bit in iir again, but it still produces
2850 * interrupts (for non-MSI).
2851 */
2852 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2853 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2854 i915_handle_error(dev, false);
2855
2856 for_each_pipe(pipe) {
2857 int reg = PIPESTAT(pipe);
2858 pipe_stats[pipe] = I915_READ(reg);
2859
2860 /*
2861 * Clear the PIPE*STAT regs before the IIR
2862 */
2863 if (pipe_stats[pipe] & 0x8000ffff) {
2864 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2865 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2866 pipe_name(pipe));
2867 I915_WRITE(reg, pipe_stats[pipe]);
2868 irq_received = 1;
2869 }
2870 }
2871 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2872
2873 I915_WRITE16(IIR, iir & ~flip_mask);
2874 new_iir = I915_READ16(IIR); /* Flush posted writes */
2875
Daniel Vetterd05c6172012-04-26 23:28:09 +02002876 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002877
2878 if (iir & I915_USER_INTERRUPT)
2879 notify_ring(dev, &dev_priv->ring[RCS]);
2880
2881 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002882 i8xx_handle_vblank(dev, 0, iir))
2883 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002884
2885 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002886 i8xx_handle_vblank(dev, 1, iir))
2887 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002888
2889 iir = new_iir;
2890 }
2891
2892 return IRQ_HANDLED;
2893}
2894
2895static void i8xx_irq_uninstall(struct drm_device * dev)
2896{
2897 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2898 int pipe;
2899
Chris Wilsonc2798b12012-04-22 21:13:57 +01002900 for_each_pipe(pipe) {
2901 /* Clear enable bits; then clear status bits */
2902 I915_WRITE(PIPESTAT(pipe), 0);
2903 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2904 }
2905 I915_WRITE16(IMR, 0xffff);
2906 I915_WRITE16(IER, 0x0);
2907 I915_WRITE16(IIR, I915_READ16(IIR));
2908}
2909
Chris Wilsona266c7d2012-04-24 22:59:44 +01002910static void i915_irq_preinstall(struct drm_device * dev)
2911{
2912 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2913 int pipe;
2914
2915 atomic_set(&dev_priv->irq_received, 0);
2916
2917 if (I915_HAS_HOTPLUG(dev)) {
2918 I915_WRITE(PORT_HOTPLUG_EN, 0);
2919 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2920 }
2921
Chris Wilson00d98eb2012-04-24 22:59:48 +01002922 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002923 for_each_pipe(pipe)
2924 I915_WRITE(PIPESTAT(pipe), 0);
2925 I915_WRITE(IMR, 0xffffffff);
2926 I915_WRITE(IER, 0x0);
2927 POSTING_READ(IER);
2928}
2929
2930static int i915_irq_postinstall(struct drm_device *dev)
2931{
2932 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01002933 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002934
Chris Wilson38bde182012-04-24 22:59:50 +01002935 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2936
2937 /* Unmask the interrupts that we always want on. */
2938 dev_priv->irq_mask =
2939 ~(I915_ASLE_INTERRUPT |
2940 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2941 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2942 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2943 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2944 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2945
2946 enable_mask =
2947 I915_ASLE_INTERRUPT |
2948 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2949 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2950 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2951 I915_USER_INTERRUPT;
2952
Chris Wilsona266c7d2012-04-24 22:59:44 +01002953 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01002954 I915_WRITE(PORT_HOTPLUG_EN, 0);
2955 POSTING_READ(PORT_HOTPLUG_EN);
2956
Chris Wilsona266c7d2012-04-24 22:59:44 +01002957 /* Enable in IER... */
2958 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2959 /* and unmask in IMR */
2960 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2961 }
2962
Chris Wilsona266c7d2012-04-24 22:59:44 +01002963 I915_WRITE(IMR, dev_priv->irq_mask);
2964 I915_WRITE(IER, enable_mask);
2965 POSTING_READ(IER);
2966
Daniel Vetter20afbda2012-12-11 14:05:07 +01002967 intel_opregion_enable_asle(dev);
2968
2969 return 0;
2970}
2971
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002972/*
2973 * Returns true when a page flip has completed.
2974 */
2975static bool i915_handle_vblank(struct drm_device *dev,
2976 int plane, int pipe, u32 iir)
2977{
2978 drm_i915_private_t *dev_priv = dev->dev_private;
2979 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
2980
2981 if (!drm_handle_vblank(dev, pipe))
2982 return false;
2983
2984 if ((iir & flip_pending) == 0)
2985 return false;
2986
2987 intel_prepare_page_flip(dev, plane);
2988
2989 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2990 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2991 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2992 * the flip is completed (no longer pending). Since this doesn't raise
2993 * an interrupt per se, we watch for the change at vblank.
2994 */
2995 if (I915_READ(ISR) & flip_pending)
2996 return false;
2997
2998 intel_finish_page_flip(dev, pipe);
2999
3000 return true;
3001}
3002
Daniel Vetterff1f5252012-10-02 15:10:55 +02003003static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003004{
3005 struct drm_device *dev = (struct drm_device *) arg;
3006 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003007 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003008 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003009 u32 flip_mask =
3010 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3011 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003012 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003013
3014 atomic_inc(&dev_priv->irq_received);
3015
3016 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003017 do {
3018 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003019 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003020
3021 /* Can't rely on pipestat interrupt bit in iir as it might
3022 * have been cleared after the pipestat interrupt was received.
3023 * It doesn't set the bit in iir again, but it still produces
3024 * interrupts (for non-MSI).
3025 */
3026 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3027 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3028 i915_handle_error(dev, false);
3029
3030 for_each_pipe(pipe) {
3031 int reg = PIPESTAT(pipe);
3032 pipe_stats[pipe] = I915_READ(reg);
3033
Chris Wilson38bde182012-04-24 22:59:50 +01003034 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003035 if (pipe_stats[pipe] & 0x8000ffff) {
3036 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3037 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3038 pipe_name(pipe));
3039 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003040 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003041 }
3042 }
3043 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3044
3045 if (!irq_received)
3046 break;
3047
Chris Wilsona266c7d2012-04-24 22:59:44 +01003048 /* Consume port. Then clear IIR or we'll miss events */
3049 if ((I915_HAS_HOTPLUG(dev)) &&
3050 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3051 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003052 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003053
3054 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3055 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003056 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003057 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
3058 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003059 queue_work(dev_priv->wq,
3060 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003061 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003062 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003063 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003064 }
3065
Chris Wilson38bde182012-04-24 22:59:50 +01003066 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003067 new_iir = I915_READ(IIR); /* Flush posted writes */
3068
Chris Wilsona266c7d2012-04-24 22:59:44 +01003069 if (iir & I915_USER_INTERRUPT)
3070 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003071
Chris Wilsona266c7d2012-04-24 22:59:44 +01003072 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003073 int plane = pipe;
3074 if (IS_MOBILE(dev))
3075 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003076
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003077 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3078 i915_handle_vblank(dev, plane, pipe, iir))
3079 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003080
3081 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3082 blc_event = true;
3083 }
3084
Chris Wilsona266c7d2012-04-24 22:59:44 +01003085 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3086 intel_opregion_asle_intr(dev);
3087
3088 /* With MSI, interrupts are only generated when iir
3089 * transitions from zero to nonzero. If another bit got
3090 * set while we were handling the existing iir bits, then
3091 * we would never get another interrupt.
3092 *
3093 * This is fine on non-MSI as well, as if we hit this path
3094 * we avoid exiting the interrupt handler only to generate
3095 * another one.
3096 *
3097 * Note that for MSI this could cause a stray interrupt report
3098 * if an interrupt landed in the time between writing IIR and
3099 * the posting read. This should be rare enough to never
3100 * trigger the 99% of 100,000 interrupts test for disabling
3101 * stray interrupts.
3102 */
Chris Wilson38bde182012-04-24 22:59:50 +01003103 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003104 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003105 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003106
Daniel Vetterd05c6172012-04-26 23:28:09 +02003107 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003108
Chris Wilsona266c7d2012-04-24 22:59:44 +01003109 return ret;
3110}
3111
3112static void i915_irq_uninstall(struct drm_device * dev)
3113{
3114 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3115 int pipe;
3116
Egbert Eichac4c16c2013-04-16 13:36:58 +02003117 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3118
Chris Wilsona266c7d2012-04-24 22:59:44 +01003119 if (I915_HAS_HOTPLUG(dev)) {
3120 I915_WRITE(PORT_HOTPLUG_EN, 0);
3121 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3122 }
3123
Chris Wilson00d98eb2012-04-24 22:59:48 +01003124 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003125 for_each_pipe(pipe) {
3126 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003127 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003128 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3129 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003130 I915_WRITE(IMR, 0xffffffff);
3131 I915_WRITE(IER, 0x0);
3132
Chris Wilsona266c7d2012-04-24 22:59:44 +01003133 I915_WRITE(IIR, I915_READ(IIR));
3134}
3135
3136static void i965_irq_preinstall(struct drm_device * dev)
3137{
3138 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3139 int pipe;
3140
3141 atomic_set(&dev_priv->irq_received, 0);
3142
Chris Wilsonadca4732012-05-11 18:01:31 +01003143 I915_WRITE(PORT_HOTPLUG_EN, 0);
3144 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003145
3146 I915_WRITE(HWSTAM, 0xeffe);
3147 for_each_pipe(pipe)
3148 I915_WRITE(PIPESTAT(pipe), 0);
3149 I915_WRITE(IMR, 0xffffffff);
3150 I915_WRITE(IER, 0x0);
3151 POSTING_READ(IER);
3152}
3153
3154static int i965_irq_postinstall(struct drm_device *dev)
3155{
3156 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003157 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003158 u32 error_mask;
3159
Chris Wilsona266c7d2012-04-24 22:59:44 +01003160 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003161 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003162 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003163 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3164 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3165 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3166 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3167 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3168
3169 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003170 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3171 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003172 enable_mask |= I915_USER_INTERRUPT;
3173
3174 if (IS_G4X(dev))
3175 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003176
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003177 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003178
Chris Wilsona266c7d2012-04-24 22:59:44 +01003179 /*
3180 * Enable some error detection, note the instruction error mask
3181 * bit is reserved, so we leave it masked.
3182 */
3183 if (IS_G4X(dev)) {
3184 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3185 GM45_ERROR_MEM_PRIV |
3186 GM45_ERROR_CP_PRIV |
3187 I915_ERROR_MEMORY_REFRESH);
3188 } else {
3189 error_mask = ~(I915_ERROR_PAGE_TABLE |
3190 I915_ERROR_MEMORY_REFRESH);
3191 }
3192 I915_WRITE(EMR, error_mask);
3193
3194 I915_WRITE(IMR, dev_priv->irq_mask);
3195 I915_WRITE(IER, enable_mask);
3196 POSTING_READ(IER);
3197
Daniel Vetter20afbda2012-12-11 14:05:07 +01003198 I915_WRITE(PORT_HOTPLUG_EN, 0);
3199 POSTING_READ(PORT_HOTPLUG_EN);
3200
3201 intel_opregion_enable_asle(dev);
3202
3203 return 0;
3204}
3205
Egbert Eichbac56d52013-02-25 12:06:51 -05003206static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003207{
3208 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003209 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003210 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003211 u32 hotplug_en;
3212
Egbert Eichbac56d52013-02-25 12:06:51 -05003213 if (I915_HAS_HOTPLUG(dev)) {
3214 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3215 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3216 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003217 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003218 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3219 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3220 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003221 /* Programming the CRT detection parameters tends
3222 to generate a spurious hotplug event about three
3223 seconds later. So just do it once.
3224 */
3225 if (IS_G4X(dev))
3226 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003227 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003228 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003229
Egbert Eichbac56d52013-02-25 12:06:51 -05003230 /* Ignore TV since it's buggy */
3231 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3232 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003233}
3234
Daniel Vetterff1f5252012-10-02 15:10:55 +02003235static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003236{
3237 struct drm_device *dev = (struct drm_device *) arg;
3238 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003239 u32 iir, new_iir;
3240 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003241 unsigned long irqflags;
3242 int irq_received;
3243 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003244 u32 flip_mask =
3245 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3246 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003247
3248 atomic_inc(&dev_priv->irq_received);
3249
3250 iir = I915_READ(IIR);
3251
Chris Wilsona266c7d2012-04-24 22:59:44 +01003252 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003253 bool blc_event = false;
3254
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003255 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003256
3257 /* Can't rely on pipestat interrupt bit in iir as it might
3258 * have been cleared after the pipestat interrupt was received.
3259 * It doesn't set the bit in iir again, but it still produces
3260 * interrupts (for non-MSI).
3261 */
3262 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3263 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3264 i915_handle_error(dev, false);
3265
3266 for_each_pipe(pipe) {
3267 int reg = PIPESTAT(pipe);
3268 pipe_stats[pipe] = I915_READ(reg);
3269
3270 /*
3271 * Clear the PIPE*STAT regs before the IIR
3272 */
3273 if (pipe_stats[pipe] & 0x8000ffff) {
3274 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3275 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3276 pipe_name(pipe));
3277 I915_WRITE(reg, pipe_stats[pipe]);
3278 irq_received = 1;
3279 }
3280 }
3281 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3282
3283 if (!irq_received)
3284 break;
3285
3286 ret = IRQ_HANDLED;
3287
3288 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003289 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003290 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003291 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3292 HOTPLUG_INT_STATUS_G4X :
3293 HOTPLUG_INT_STATUS_I965);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003294
3295 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3296 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003297 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003298 if (hotplug_irq_storm_detect(dev, hotplug_trigger,
3299 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i965))
3300 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003301 queue_work(dev_priv->wq,
3302 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003303 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003304 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3305 I915_READ(PORT_HOTPLUG_STAT);
3306 }
3307
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003308 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003309 new_iir = I915_READ(IIR); /* Flush posted writes */
3310
Chris Wilsona266c7d2012-04-24 22:59:44 +01003311 if (iir & I915_USER_INTERRUPT)
3312 notify_ring(dev, &dev_priv->ring[RCS]);
3313 if (iir & I915_BSD_USER_INTERRUPT)
3314 notify_ring(dev, &dev_priv->ring[VCS]);
3315
Chris Wilsona266c7d2012-04-24 22:59:44 +01003316 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003317 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003318 i915_handle_vblank(dev, pipe, pipe, iir))
3319 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003320
3321 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3322 blc_event = true;
3323 }
3324
3325
3326 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3327 intel_opregion_asle_intr(dev);
3328
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003329 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3330 gmbus_irq_handler(dev);
3331
Chris Wilsona266c7d2012-04-24 22:59:44 +01003332 /* With MSI, interrupts are only generated when iir
3333 * transitions from zero to nonzero. If another bit got
3334 * set while we were handling the existing iir bits, then
3335 * we would never get another interrupt.
3336 *
3337 * This is fine on non-MSI as well, as if we hit this path
3338 * we avoid exiting the interrupt handler only to generate
3339 * another one.
3340 *
3341 * Note that for MSI this could cause a stray interrupt report
3342 * if an interrupt landed in the time between writing IIR and
3343 * the posting read. This should be rare enough to never
3344 * trigger the 99% of 100,000 interrupts test for disabling
3345 * stray interrupts.
3346 */
3347 iir = new_iir;
3348 }
3349
Daniel Vetterd05c6172012-04-26 23:28:09 +02003350 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003351
Chris Wilsona266c7d2012-04-24 22:59:44 +01003352 return ret;
3353}
3354
3355static void i965_irq_uninstall(struct drm_device * dev)
3356{
3357 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3358 int pipe;
3359
3360 if (!dev_priv)
3361 return;
3362
Egbert Eichac4c16c2013-04-16 13:36:58 +02003363 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3364
Chris Wilsonadca4732012-05-11 18:01:31 +01003365 I915_WRITE(PORT_HOTPLUG_EN, 0);
3366 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003367
3368 I915_WRITE(HWSTAM, 0xffffffff);
3369 for_each_pipe(pipe)
3370 I915_WRITE(PIPESTAT(pipe), 0);
3371 I915_WRITE(IMR, 0xffffffff);
3372 I915_WRITE(IER, 0x0);
3373
3374 for_each_pipe(pipe)
3375 I915_WRITE(PIPESTAT(pipe),
3376 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3377 I915_WRITE(IIR, I915_READ(IIR));
3378}
3379
Egbert Eichac4c16c2013-04-16 13:36:58 +02003380static void i915_reenable_hotplug_timer_func(unsigned long data)
3381{
3382 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3383 struct drm_device *dev = dev_priv->dev;
3384 struct drm_mode_config *mode_config = &dev->mode_config;
3385 unsigned long irqflags;
3386 int i;
3387
3388 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3389 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3390 struct drm_connector *connector;
3391
3392 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3393 continue;
3394
3395 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3396
3397 list_for_each_entry(connector, &mode_config->connector_list, head) {
3398 struct intel_connector *intel_connector = to_intel_connector(connector);
3399
3400 if (intel_connector->encoder->hpd_pin == i) {
3401 if (connector->polled != intel_connector->polled)
3402 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3403 drm_get_connector_name(connector));
3404 connector->polled = intel_connector->polled;
3405 if (!connector->polled)
3406 connector->polled = DRM_CONNECTOR_POLL_HPD;
3407 }
3408 }
3409 }
3410 if (dev_priv->display.hpd_irq_setup)
3411 dev_priv->display.hpd_irq_setup(dev);
3412 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3413}
3414
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003415void intel_irq_init(struct drm_device *dev)
3416{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003417 struct drm_i915_private *dev_priv = dev->dev_private;
3418
3419 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003420 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003421 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003422 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003423
Daniel Vetter99584db2012-11-14 17:14:04 +01003424 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3425 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003426 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003427 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3428 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003429
Tomas Janousek97a19a22012-12-08 13:48:13 +01003430 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003431
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003432 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3433 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003434 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003435 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3436 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3437 }
3438
Keith Packardc3613de2011-08-12 17:05:54 -07003439 if (drm_core_check_feature(dev, DRIVER_MODESET))
3440 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3441 else
3442 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003443 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3444
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003445 if (IS_VALLEYVIEW(dev)) {
3446 dev->driver->irq_handler = valleyview_irq_handler;
3447 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3448 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3449 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3450 dev->driver->enable_vblank = valleyview_enable_vblank;
3451 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003452 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003453 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003454 /* Share pre & uninstall handlers with ILK/SNB */
3455 dev->driver->irq_handler = ivybridge_irq_handler;
3456 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3457 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3458 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3459 dev->driver->enable_vblank = ivybridge_enable_vblank;
3460 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003461 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003462 } else if (HAS_PCH_SPLIT(dev)) {
3463 dev->driver->irq_handler = ironlake_irq_handler;
3464 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3465 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3466 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3467 dev->driver->enable_vblank = ironlake_enable_vblank;
3468 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003469 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003470 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003471 if (INTEL_INFO(dev)->gen == 2) {
3472 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3473 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3474 dev->driver->irq_handler = i8xx_irq_handler;
3475 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003476 } else if (INTEL_INFO(dev)->gen == 3) {
3477 dev->driver->irq_preinstall = i915_irq_preinstall;
3478 dev->driver->irq_postinstall = i915_irq_postinstall;
3479 dev->driver->irq_uninstall = i915_irq_uninstall;
3480 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003481 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003482 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003483 dev->driver->irq_preinstall = i965_irq_preinstall;
3484 dev->driver->irq_postinstall = i965_irq_postinstall;
3485 dev->driver->irq_uninstall = i965_irq_uninstall;
3486 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003487 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003488 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003489 dev->driver->enable_vblank = i915_enable_vblank;
3490 dev->driver->disable_vblank = i915_disable_vblank;
3491 }
3492}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003493
3494void intel_hpd_init(struct drm_device *dev)
3495{
3496 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003497 struct drm_mode_config *mode_config = &dev->mode_config;
3498 struct drm_connector *connector;
3499 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003500
Egbert Eich821450c2013-04-16 13:36:55 +02003501 for (i = 1; i < HPD_NUM_PINS; i++) {
3502 dev_priv->hpd_stats[i].hpd_cnt = 0;
3503 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3504 }
3505 list_for_each_entry(connector, &mode_config->connector_list, head) {
3506 struct intel_connector *intel_connector = to_intel_connector(connector);
3507 connector->polled = intel_connector->polled;
3508 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3509 connector->polled = DRM_CONNECTOR_POLL_HPD;
3510 }
Daniel Vetter20afbda2012-12-11 14:05:07 +01003511 if (dev_priv->display.hpd_irq_setup)
3512 dev_priv->display.hpd_irq_setup(dev);
3513}