blob: dae8953d29128583514b5762a59e5a20e9e0a21d [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
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700359 /* FIXME: opregion/asle for VLV */
360 if (IS_VALLEYVIEW(dev))
361 return;
362
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000363 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000364
Eric Anholtc619eed2010-01-28 16:45:52 -0800365 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500366 ironlake_enable_display_irq(dev_priv, DE_GSE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800367 else {
Zhao Yakui01c66882009-10-28 05:10:00 +0000368 i915_enable_pipestat(dev_priv, 1,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700369 PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100370 if (INTEL_INFO(dev)->gen >= 4)
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800371 i915_enable_pipestat(dev_priv, 0,
Jesse Barnesd874bcf2010-06-30 13:16:00 -0700372 PIPE_LEGACY_BLC_EVENT_ENABLE);
Zhao Yakuiedcb49c2010-04-07 17:11:21 +0800373 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000374
375 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000376}
377
378/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700379 * i915_pipe_enabled - check if a pipe is enabled
380 * @dev: DRM device
381 * @pipe: pipe to check
382 *
383 * Reading certain registers when the pipe is disabled can hang the chip.
384 * Use this routine to make sure the PLL is running and the pipe is active
385 * before reading such registers if unsure.
386 */
387static int
388i915_pipe_enabled(struct drm_device *dev, int pipe)
389{
390 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200391 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
392 pipe);
393
394 return I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700395}
396
Keith Packard42f52ef2008-10-18 19:39:29 -0700397/* Called from drm generic code, passed a 'crtc', which
398 * we use as a pipe index
399 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700400static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700401{
402 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
403 unsigned long high_frame;
404 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100405 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700406
407 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800408 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800409 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700410 return 0;
411 }
412
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800413 high_frame = PIPEFRAME(pipe);
414 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100415
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700416 /*
417 * High & low register fields aren't synchronized, so make sure
418 * we get a low value that's stable across two reads of the high
419 * register.
420 */
421 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100422 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
423 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
424 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700425 } while (high1 != high2);
426
Chris Wilson5eddb702010-09-11 13:48:45 +0100427 high1 >>= PIPE_FRAME_HIGH_SHIFT;
428 low >>= PIPE_FRAME_LOW_SHIFT;
429 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700430}
431
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700432static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800433{
434 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800435 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800436
437 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800438 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800439 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800440 return 0;
441 }
442
443 return I915_READ(reg);
444}
445
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700446static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100447 int *vpos, int *hpos)
448{
449 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
450 u32 vbl = 0, position = 0;
451 int vbl_start, vbl_end, htotal, vtotal;
452 bool in_vbl = true;
453 int ret = 0;
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200454 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
455 pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100456
457 if (!i915_pipe_enabled(dev, pipe)) {
458 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800459 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100460 return 0;
461 }
462
463 /* Get vtotal. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200464 vtotal = 1 + ((I915_READ(VTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100465
466 if (INTEL_INFO(dev)->gen >= 4) {
467 /* No obvious pixelcount register. Only query vertical
468 * scanout position from Display scan line register.
469 */
470 position = I915_READ(PIPEDSL(pipe));
471
472 /* Decode into vertical scanout position. Don't have
473 * horizontal scanout position.
474 */
475 *vpos = position & 0x1fff;
476 *hpos = 0;
477 } else {
478 /* Have access to pixelcount since start of frame.
479 * We can split this into vertical and horizontal
480 * scanout position.
481 */
482 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
483
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200484 htotal = 1 + ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100485 *vpos = position / htotal;
486 *hpos = position - (*vpos * htotal);
487 }
488
489 /* Query vblank area. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200490 vbl = I915_READ(VBLANK(cpu_transcoder));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100491
492 /* Test position against vblank region. */
493 vbl_start = vbl & 0x1fff;
494 vbl_end = (vbl >> 16) & 0x1fff;
495
496 if ((*vpos < vbl_start) || (*vpos > vbl_end))
497 in_vbl = false;
498
499 /* Inside "upper part" of vblank area? Apply corrective offset: */
500 if (in_vbl && (*vpos >= vbl_start))
501 *vpos = *vpos - vtotal;
502
503 /* Readouts valid? */
504 if (vbl > 0)
505 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
506
507 /* In vblank? */
508 if (in_vbl)
509 ret |= DRM_SCANOUTPOS_INVBL;
510
511 return ret;
512}
513
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700514static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100515 int *max_error,
516 struct timeval *vblank_time,
517 unsigned flags)
518{
Chris Wilson4041b852011-01-22 10:07:56 +0000519 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100520
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700521 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000522 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100523 return -EINVAL;
524 }
525
526 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000527 crtc = intel_get_crtc_for_pipe(dev, pipe);
528 if (crtc == NULL) {
529 DRM_ERROR("Invalid crtc %d\n", pipe);
530 return -EINVAL;
531 }
532
533 if (!crtc->enabled) {
534 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
535 return -EBUSY;
536 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100537
538 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000539 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
540 vblank_time, flags,
541 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100542}
543
Jesse Barnes5ca58282009-03-31 14:11:15 -0700544/*
545 * Handle hotplug events outside the interrupt handler proper.
546 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200547#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
548
Jesse Barnes5ca58282009-03-31 14:11:15 -0700549static void i915_hotplug_work_func(struct work_struct *work)
550{
551 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
552 hotplug_work);
553 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700554 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200555 struct intel_connector *intel_connector;
556 struct intel_encoder *intel_encoder;
557 struct drm_connector *connector;
558 unsigned long irqflags;
559 bool hpd_disabled = false;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700560
Daniel Vetter52d7ece2012-12-01 21:03:22 +0100561 /* HPD irq before everything is fully set up. */
562 if (!dev_priv->enable_hotplug_processing)
563 return;
564
Keith Packarda65e34c2011-07-25 10:04:56 -0700565 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800566 DRM_DEBUG_KMS("running encoder hotplug functions\n");
567
Egbert Eichcd569ae2013-04-16 13:36:57 +0200568 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
569 list_for_each_entry(connector, &mode_config->connector_list, head) {
570 intel_connector = to_intel_connector(connector);
571 intel_encoder = intel_connector->encoder;
572 if (intel_encoder->hpd_pin > HPD_NONE &&
573 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
574 connector->polled == DRM_CONNECTOR_POLL_HPD) {
575 DRM_INFO("HPD interrupt storm detected on connector %s: "
576 "switching from hotplug detection to polling\n",
577 drm_get_connector_name(connector));
578 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
579 connector->polled = DRM_CONNECTOR_POLL_CONNECT
580 | DRM_CONNECTOR_POLL_DISCONNECT;
581 hpd_disabled = true;
582 }
583 }
584 /* if there were no outputs to poll, poll was disabled,
585 * therefore make sure it's enabled when disabling HPD on
586 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200587 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200588 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +0200589 mod_timer(&dev_priv->hotplug_reenable_timer,
590 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
591 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200592
593 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
594
595 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
596 if (intel_encoder->hot_plug)
597 intel_encoder->hot_plug(intel_encoder);
Chris Wilson4ef69c72010-09-09 15:14:28 +0100598
Keith Packard40ee3382011-07-28 15:31:19 -0700599 mutex_unlock(&mode_config->mutex);
600
Jesse Barnes5ca58282009-03-31 14:11:15 -0700601 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000602 drm_helper_hpd_irq_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700603}
604
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200605static void ironlake_handle_rps_change(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800606{
607 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000608 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200609 u8 new_delay;
610 unsigned long flags;
611
612 spin_lock_irqsave(&mchdev_lock, flags);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800613
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200614 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
615
Daniel Vetter20e4d402012-08-08 23:35:39 +0200616 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200617
Jesse Barnes7648fa92010-05-20 14:28:11 -0700618 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000619 busy_up = I915_READ(RCPREVBSYTUPAVG);
620 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800621 max_avg = I915_READ(RCBMAXAVG);
622 min_avg = I915_READ(RCBMINAVG);
623
624 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000625 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200626 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
627 new_delay = dev_priv->ips.cur_delay - 1;
628 if (new_delay < dev_priv->ips.max_delay)
629 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000630 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200631 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
632 new_delay = dev_priv->ips.cur_delay + 1;
633 if (new_delay > dev_priv->ips.min_delay)
634 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800635 }
636
Jesse Barnes7648fa92010-05-20 14:28:11 -0700637 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200638 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800639
Daniel Vetter92703882012-08-09 16:46:01 +0200640 spin_unlock_irqrestore(&mchdev_lock, flags);
641
Jesse Barnesf97108d2010-01-29 11:27:07 -0800642 return;
643}
644
Chris Wilson549f7362010-10-19 11:19:32 +0100645static void notify_ring(struct drm_device *dev,
646 struct intel_ring_buffer *ring)
647{
648 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9862e602011-01-04 22:22:17 +0000649
Chris Wilson475553d2011-01-20 09:52:56 +0000650 if (ring->obj == NULL)
651 return;
652
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100653 trace_i915_gem_request_complete(ring, ring->get_seqno(ring, false));
Chris Wilson9862e602011-01-04 22:22:17 +0000654
Chris Wilson549f7362010-10-19 11:19:32 +0100655 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700656 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +0100657 dev_priv->gpu_error.hangcheck_count = 0;
658 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +0100659 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700660 }
Chris Wilson549f7362010-10-19 11:19:32 +0100661}
662
Ben Widawsky4912d042011-04-25 11:25:20 -0700663static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800664{
Ben Widawsky4912d042011-04-25 11:25:20 -0700665 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200666 rps.work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700667 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100668 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800669
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200670 spin_lock_irq(&dev_priv->rps.lock);
671 pm_iir = dev_priv->rps.pm_iir;
672 dev_priv->rps.pm_iir = 0;
Ben Widawsky4912d042011-04-25 11:25:20 -0700673 pm_imr = I915_READ(GEN6_PMIMR);
Daniel Vettera9e26412011-09-08 14:00:21 +0200674 I915_WRITE(GEN6_PMIMR, 0);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200675 spin_unlock_irq(&dev_priv->rps.lock);
Ben Widawsky4912d042011-04-25 11:25:20 -0700676
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100677 if ((pm_iir & GEN6_PM_DEFERRED_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800678 return;
679
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700680 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100681
682 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD)
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200683 new_delay = dev_priv->rps.cur_delay + 1;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100684 else
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200685 new_delay = dev_priv->rps.cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800686
Ben Widawsky79249632012-09-07 19:43:42 -0700687 /* sysfs frequency interfaces may have snuck in while servicing the
688 * interrupt
689 */
690 if (!(new_delay > dev_priv->rps.max_delay ||
691 new_delay < dev_priv->rps.min_delay)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -0700692 if (IS_VALLEYVIEW(dev_priv->dev))
693 valleyview_set_rps(dev_priv->dev, new_delay);
694 else
695 gen6_set_rps(dev_priv->dev, new_delay);
Ben Widawsky79249632012-09-07 19:43:42 -0700696 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800697
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700698 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800699}
700
Ben Widawskye3689192012-05-25 16:56:22 -0700701
702/**
703 * ivybridge_parity_work - Workqueue called when a parity error interrupt
704 * occurred.
705 * @work: workqueue struct
706 *
707 * Doesn't actually do anything except notify userspace. As a consequence of
708 * this event, userspace should try to remap the bad rows since statistically
709 * it is likely the same row is more likely to go bad again.
710 */
711static void ivybridge_parity_work(struct work_struct *work)
712{
713 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100714 l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700715 u32 error_status, row, bank, subbank;
716 char *parity_event[5];
717 uint32_t misccpctl;
718 unsigned long flags;
719
720 /* We must turn off DOP level clock gating to access the L3 registers.
721 * In order to prevent a get/put style interface, acquire struct mutex
722 * any time we access those registers.
723 */
724 mutex_lock(&dev_priv->dev->struct_mutex);
725
726 misccpctl = I915_READ(GEN7_MISCCPCTL);
727 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
728 POSTING_READ(GEN7_MISCCPCTL);
729
730 error_status = I915_READ(GEN7_L3CDERRST1);
731 row = GEN7_PARITY_ERROR_ROW(error_status);
732 bank = GEN7_PARITY_ERROR_BANK(error_status);
733 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
734
735 I915_WRITE(GEN7_L3CDERRST1, GEN7_PARITY_ERROR_VALID |
736 GEN7_L3CDERRST1_ENABLE);
737 POSTING_READ(GEN7_L3CDERRST1);
738
739 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
740
741 spin_lock_irqsave(&dev_priv->irq_lock, flags);
742 dev_priv->gt_irq_mask &= ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
743 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
744 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
745
746 mutex_unlock(&dev_priv->dev->struct_mutex);
747
748 parity_event[0] = "L3_PARITY_ERROR=1";
749 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
750 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
751 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
752 parity_event[4] = NULL;
753
754 kobject_uevent_env(&dev_priv->dev->primary->kdev.kobj,
755 KOBJ_CHANGE, parity_event);
756
757 DRM_DEBUG("Parity error: Row = %d, Bank = %d, Sub bank = %d.\n",
758 row, bank, subbank);
759
760 kfree(parity_event[3]);
761 kfree(parity_event[2]);
762 kfree(parity_event[1]);
763}
764
Daniel Vetterd2ba8472012-05-31 14:57:41 +0200765static void ivybridge_handle_parity_error(struct drm_device *dev)
Ben Widawskye3689192012-05-25 16:56:22 -0700766{
767 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
768 unsigned long flags;
769
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700770 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskye3689192012-05-25 16:56:22 -0700771 return;
772
773 spin_lock_irqsave(&dev_priv->irq_lock, flags);
774 dev_priv->gt_irq_mask |= GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
775 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
776 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
777
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100778 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700779}
780
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200781static void snb_gt_irq_handler(struct drm_device *dev,
782 struct drm_i915_private *dev_priv,
783 u32 gt_iir)
784{
785
786 if (gt_iir & (GEN6_RENDER_USER_INTERRUPT |
787 GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT))
788 notify_ring(dev, &dev_priv->ring[RCS]);
789 if (gt_iir & GEN6_BSD_USER_INTERRUPT)
790 notify_ring(dev, &dev_priv->ring[VCS]);
791 if (gt_iir & GEN6_BLITTER_USER_INTERRUPT)
792 notify_ring(dev, &dev_priv->ring[BCS]);
793
794 if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT |
795 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
796 GT_RENDER_CS_ERROR_INTERRUPT)) {
797 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
798 i915_handle_error(dev, false);
799 }
Ben Widawskye3689192012-05-25 16:56:22 -0700800
801 if (gt_iir & GT_GEN7_L3_PARITY_ERROR_INTERRUPT)
802 ivybridge_handle_parity_error(dev);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200803}
804
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100805static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
806 u32 pm_iir)
807{
808 unsigned long flags;
809
810 /*
811 * IIR bits should never already be set because IMR should
812 * prevent an interrupt from being shown in IIR. The warning
813 * displays a case where we've unsafely cleared
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200814 * dev_priv->rps.pm_iir. Although missing an interrupt of the same
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100815 * type is not a problem, it displays a problem in the logic.
816 *
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200817 * The mask bit in IMR is cleared by dev_priv->rps.work.
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100818 */
819
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200820 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200821 dev_priv->rps.pm_iir |= pm_iir;
822 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100823 POSTING_READ(GEN6_PMIMR);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200824 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100825
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200826 queue_work(dev_priv->wq, &dev_priv->rps.work);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100827}
828
Egbert Eichb543fb02013-04-16 13:36:54 +0200829#define HPD_STORM_DETECT_PERIOD 1000
830#define HPD_STORM_THRESHOLD 5
831
Egbert Eichcd569ae2013-04-16 13:36:57 +0200832static inline bool hotplug_irq_storm_detect(struct drm_device *dev,
Egbert Eichb543fb02013-04-16 13:36:54 +0200833 u32 hotplug_trigger,
834 const u32 *hpd)
835{
836 drm_i915_private_t *dev_priv = dev->dev_private;
837 unsigned long irqflags;
838 int i;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200839 bool ret = false;
Egbert Eichb543fb02013-04-16 13:36:54 +0200840
841 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
842
843 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +0200844
Egbert Eichb543fb02013-04-16 13:36:54 +0200845 if (!(hpd[i] & hotplug_trigger) ||
846 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
847 continue;
848
849 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
850 dev_priv->hpd_stats[i].hpd_last_jiffies
851 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
852 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
853 dev_priv->hpd_stats[i].hpd_cnt = 0;
854 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
855 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
856 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200857 ret = true;
Egbert Eichb543fb02013-04-16 13:36:54 +0200858 } else {
859 dev_priv->hpd_stats[i].hpd_cnt++;
860 }
861 }
862
863 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200864
865 return ret;
Egbert Eichb543fb02013-04-16 13:36:54 +0200866}
867
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100868static void gmbus_irq_handler(struct drm_device *dev)
869{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100870 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
871
Daniel Vetter28c70f12012-12-01 13:53:45 +0100872 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100873}
874
Daniel Vetterce99c252012-12-01 13:53:47 +0100875static void dp_aux_irq_handler(struct drm_device *dev)
876{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100877 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
878
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100879 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +0100880}
881
Daniel Vetterff1f5252012-10-02 15:10:55 +0200882static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700883{
884 struct drm_device *dev = (struct drm_device *) arg;
885 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
886 u32 iir, gt_iir, pm_iir;
887 irqreturn_t ret = IRQ_NONE;
888 unsigned long irqflags;
889 int pipe;
890 u32 pipe_stats[I915_MAX_PIPES];
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700891
892 atomic_inc(&dev_priv->irq_received);
893
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700894 while (true) {
895 iir = I915_READ(VLV_IIR);
896 gt_iir = I915_READ(GTIIR);
897 pm_iir = I915_READ(GEN6_PMIIR);
898
899 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
900 goto out;
901
902 ret = IRQ_HANDLED;
903
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200904 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700905
906 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
907 for_each_pipe(pipe) {
908 int reg = PIPESTAT(pipe);
909 pipe_stats[pipe] = I915_READ(reg);
910
911 /*
912 * Clear the PIPE*STAT regs before the IIR
913 */
914 if (pipe_stats[pipe] & 0x8000ffff) {
915 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
916 DRM_DEBUG_DRIVER("pipe %c underrun\n",
917 pipe_name(pipe));
918 I915_WRITE(reg, pipe_stats[pipe]);
919 }
920 }
921 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
922
Jesse Barnes31acc7f2012-06-20 10:53:11 -0700923 for_each_pipe(pipe) {
924 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
925 drm_handle_vblank(dev, pipe);
926
927 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
928 intel_prepare_page_flip(dev, pipe);
929 intel_finish_page_flip(dev, pipe);
930 }
931 }
932
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700933 /* Consume port. Then clear IIR or we'll miss events */
934 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
935 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +0200936 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700937
938 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
939 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +0200940 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200941 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
942 i915_hpd_irq_setup(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700943 queue_work(dev_priv->wq,
944 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200945 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700946 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
947 I915_READ(PORT_HOTPLUG_STAT);
948 }
949
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100950 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
951 gmbus_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700952
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100953 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
954 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700955
956 I915_WRITE(GTIIR, gt_iir);
957 I915_WRITE(GEN6_PMIIR, pm_iir);
958 I915_WRITE(VLV_IIR, iir);
959 }
960
961out:
962 return ret;
963}
964
Adam Jackson23e81d62012-06-06 15:45:44 -0400965static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -0800966{
967 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800968 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +0200969 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -0800970
Egbert Eichb543fb02013-04-16 13:36:54 +0200971 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200972 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_ibx))
973 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +0200974 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200975 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +0300976 if (pch_iir & SDE_AUDIO_POWER_MASK) {
977 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
978 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -0800979 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +0300980 port_name(port));
981 }
Jesse Barnes776ad802011-01-04 15:09:39 -0800982
Daniel Vetterce99c252012-12-01 13:53:47 +0100983 if (pch_iir & SDE_AUX_MASK)
984 dp_aux_irq_handler(dev);
985
Jesse Barnes776ad802011-01-04 15:09:39 -0800986 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100987 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -0800988
989 if (pch_iir & SDE_AUDIO_HDCP_MASK)
990 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
991
992 if (pch_iir & SDE_AUDIO_TRANS_MASK)
993 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
994
995 if (pch_iir & SDE_POISON)
996 DRM_ERROR("PCH poison interrupt\n");
997
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800998 if (pch_iir & SDE_FDI_MASK)
999 for_each_pipe(pipe)
1000 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1001 pipe_name(pipe),
1002 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001003
1004 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1005 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1006
1007 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1008 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1009
Jesse Barnes776ad802011-01-04 15:09:39 -08001010 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001011 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1012 false))
1013 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1014
1015 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1016 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1017 false))
1018 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1019}
1020
1021static void ivb_err_int_handler(struct drm_device *dev)
1022{
1023 struct drm_i915_private *dev_priv = dev->dev_private;
1024 u32 err_int = I915_READ(GEN7_ERR_INT);
1025
Paulo Zanonide032bf2013-04-12 17:57:58 -03001026 if (err_int & ERR_INT_POISON)
1027 DRM_ERROR("Poison interrupt\n");
1028
Paulo Zanoni86642812013-04-12 17:57:57 -03001029 if (err_int & ERR_INT_FIFO_UNDERRUN_A)
1030 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1031 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1032
1033 if (err_int & ERR_INT_FIFO_UNDERRUN_B)
1034 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1035 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1036
1037 if (err_int & ERR_INT_FIFO_UNDERRUN_C)
1038 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_C, false))
1039 DRM_DEBUG_DRIVER("Pipe C FIFO underrun\n");
1040
1041 I915_WRITE(GEN7_ERR_INT, err_int);
1042}
1043
1044static void cpt_serr_int_handler(struct drm_device *dev)
1045{
1046 struct drm_i915_private *dev_priv = dev->dev_private;
1047 u32 serr_int = I915_READ(SERR_INT);
1048
Paulo Zanonide032bf2013-04-12 17:57:58 -03001049 if (serr_int & SERR_INT_POISON)
1050 DRM_ERROR("PCH poison interrupt\n");
1051
Paulo Zanoni86642812013-04-12 17:57:57 -03001052 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1053 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1054 false))
1055 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1056
1057 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1058 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1059 false))
1060 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1061
1062 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1063 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1064 false))
1065 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1066
1067 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001068}
1069
Adam Jackson23e81d62012-06-06 15:45:44 -04001070static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1071{
1072 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1073 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001074 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001075
Egbert Eichb543fb02013-04-16 13:36:54 +02001076 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001077 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_cpt))
1078 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +02001079 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001080 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001081 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1082 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1083 SDE_AUDIO_POWER_SHIFT_CPT);
1084 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1085 port_name(port));
1086 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001087
1088 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001089 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001090
1091 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001092 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001093
1094 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1095 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1096
1097 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1098 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1099
1100 if (pch_iir & SDE_FDI_MASK_CPT)
1101 for_each_pipe(pipe)
1102 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1103 pipe_name(pipe),
1104 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001105
1106 if (pch_iir & SDE_ERROR_CPT)
1107 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001108}
1109
Daniel Vetterff1f5252012-10-02 15:10:55 +02001110static irqreturn_t ivybridge_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001111{
1112 struct drm_device *dev = (struct drm_device *) arg;
1113 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskyab5c6082013-04-05 13:12:41 -07001114 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01001115 irqreturn_t ret = IRQ_NONE;
1116 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001117
1118 atomic_inc(&dev_priv->irq_received);
1119
Paulo Zanoni86642812013-04-12 17:57:57 -03001120 /* We get interrupts on unclaimed registers, so check for this before we
1121 * do any I915_{READ,WRITE}. */
1122 if (IS_HASWELL(dev) &&
1123 (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
1124 DRM_ERROR("Unclaimed register before interrupt\n");
1125 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
1126 }
1127
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001128 /* disable master interrupt before clearing iir */
1129 de_ier = I915_READ(DEIER);
1130 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +01001131
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001132 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1133 * interrupts will will be stored on its back queue, and then we'll be
1134 * able to process them after we restore SDEIER (as soon as we restore
1135 * it, we'll get an interrupt if SDEIIR still has something to process
1136 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001137 if (!HAS_PCH_NOP(dev)) {
1138 sde_ier = I915_READ(SDEIER);
1139 I915_WRITE(SDEIER, 0);
1140 POSTING_READ(SDEIER);
1141 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001142
Paulo Zanoni86642812013-04-12 17:57:57 -03001143 /* On Haswell, also mask ERR_INT because we don't want to risk
1144 * generating "unclaimed register" interrupts from inside the interrupt
1145 * handler. */
1146 if (IS_HASWELL(dev))
1147 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
1148
Chris Wilson0e434062012-05-09 21:45:44 +01001149 gt_iir = I915_READ(GTIIR);
1150 if (gt_iir) {
1151 snb_gt_irq_handler(dev, dev_priv, gt_iir);
1152 I915_WRITE(GTIIR, gt_iir);
1153 ret = IRQ_HANDLED;
1154 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001155
1156 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001157 if (de_iir) {
Paulo Zanoni86642812013-04-12 17:57:57 -03001158 if (de_iir & DE_ERR_INT_IVB)
1159 ivb_err_int_handler(dev);
1160
Daniel Vetterce99c252012-12-01 13:53:47 +01001161 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1162 dp_aux_irq_handler(dev);
1163
Chris Wilson0e434062012-05-09 21:45:44 +01001164 if (de_iir & DE_GSE_IVB)
1165 intel_opregion_gse_intr(dev);
1166
1167 for (i = 0; i < 3; i++) {
Daniel Vetter74d44442012-10-02 17:54:35 +02001168 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1169 drm_handle_vblank(dev, i);
Chris Wilson0e434062012-05-09 21:45:44 +01001170 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1171 intel_prepare_page_flip(dev, i);
1172 intel_finish_page_flip_plane(dev, i);
1173 }
Chris Wilson0e434062012-05-09 21:45:44 +01001174 }
1175
1176 /* check event from PCH */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001177 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
Chris Wilson0e434062012-05-09 21:45:44 +01001178 u32 pch_iir = I915_READ(SDEIIR);
1179
Adam Jackson23e81d62012-06-06 15:45:44 -04001180 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001181
1182 /* clear PCH hotplug event before clear CPU irq */
1183 I915_WRITE(SDEIIR, pch_iir);
1184 }
1185
1186 I915_WRITE(DEIIR, de_iir);
1187 ret = IRQ_HANDLED;
1188 }
1189
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001190 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001191 if (pm_iir) {
1192 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
1193 gen6_queue_rps_work(dev_priv, pm_iir);
1194 I915_WRITE(GEN6_PMIIR, pm_iir);
1195 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001196 }
1197
Paulo Zanoni86642812013-04-12 17:57:57 -03001198 if (IS_HASWELL(dev) && ivb_can_enable_err_int(dev))
1199 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
1200
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001201 I915_WRITE(DEIER, de_ier);
1202 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07001203 if (!HAS_PCH_NOP(dev)) {
1204 I915_WRITE(SDEIER, sde_ier);
1205 POSTING_READ(SDEIER);
1206 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001207
1208 return ret;
1209}
1210
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001211static void ilk_gt_irq_handler(struct drm_device *dev,
1212 struct drm_i915_private *dev_priv,
1213 u32 gt_iir)
1214{
1215 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
1216 notify_ring(dev, &dev_priv->ring[RCS]);
1217 if (gt_iir & GT_BSD_USER_INTERRUPT)
1218 notify_ring(dev, &dev_priv->ring[VCS]);
1219}
1220
Daniel Vetterff1f5252012-10-02 15:10:55 +02001221static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001222{
Jesse Barnes46979952011-04-07 13:53:55 -07001223 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001224 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1225 int ret = IRQ_NONE;
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001226 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001227
Jesse Barnes46979952011-04-07 13:53:55 -07001228 atomic_inc(&dev_priv->irq_received);
1229
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001230 /* disable master interrupt before clearing iir */
1231 de_ier = I915_READ(DEIER);
1232 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001233 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001234
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001235 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1236 * interrupts will will be stored on its back queue, and then we'll be
1237 * able to process them after we restore SDEIER (as soon as we restore
1238 * it, we'll get an interrupt if SDEIIR still has something to process
1239 * due to its back queue). */
1240 sde_ier = I915_READ(SDEIER);
1241 I915_WRITE(SDEIER, 0);
1242 POSTING_READ(SDEIER);
1243
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001244 de_iir = I915_READ(DEIIR);
1245 gt_iir = I915_READ(GTIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001246 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001247
Daniel Vetteracd15b62012-11-30 11:24:50 +01001248 if (de_iir == 0 && gt_iir == 0 && (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +08001249 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001250
Zou Nan haic7c85102010-01-15 10:29:06 +08001251 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001252
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001253 if (IS_GEN5(dev))
1254 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
1255 else
1256 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001257
Daniel Vetterce99c252012-12-01 13:53:47 +01001258 if (de_iir & DE_AUX_CHANNEL_A)
1259 dp_aux_irq_handler(dev);
1260
Zou Nan haic7c85102010-01-15 10:29:06 +08001261 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +01001262 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +08001263
Daniel Vetter74d44442012-10-02 17:54:35 +02001264 if (de_iir & DE_PIPEA_VBLANK)
1265 drm_handle_vblank(dev, 0);
1266
1267 if (de_iir & DE_PIPEB_VBLANK)
1268 drm_handle_vblank(dev, 1);
1269
Paulo Zanonide032bf2013-04-12 17:57:58 -03001270 if (de_iir & DE_POISON)
1271 DRM_ERROR("Poison interrupt\n");
1272
Paulo Zanoni86642812013-04-12 17:57:57 -03001273 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1274 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1275 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1276
1277 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1278 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1279 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1280
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001281 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001282 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +01001283 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001284 }
1285
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001286 if (de_iir & DE_PLANEB_FLIP_DONE) {
1287 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +01001288 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001289 }
Li Pengc062df62010-01-23 00:12:58 +08001290
Zou Nan haic7c85102010-01-15 10:29:06 +08001291 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -08001292 if (de_iir & DE_PCH_EVENT) {
Daniel Vetteracd15b62012-11-30 11:24:50 +01001293 u32 pch_iir = I915_READ(SDEIIR);
1294
Adam Jackson23e81d62012-06-06 15:45:44 -04001295 if (HAS_PCH_CPT(dev))
1296 cpt_irq_handler(dev, pch_iir);
1297 else
1298 ibx_irq_handler(dev, pch_iir);
Daniel Vetteracd15b62012-11-30 11:24:50 +01001299
1300 /* should clear PCH hotplug event before clear CPU irq */
1301 I915_WRITE(SDEIIR, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -08001302 }
Zou Nan haic7c85102010-01-15 10:29:06 +08001303
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001304 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
1305 ironlake_handle_rps_change(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001306
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001307 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS)
1308 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001309
Zou Nan haic7c85102010-01-15 10:29:06 +08001310 I915_WRITE(GTIIR, gt_iir);
1311 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -07001312 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001313
1314done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001315 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001316 POSTING_READ(DEIER);
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001317 I915_WRITE(SDEIER, sde_ier);
1318 POSTING_READ(SDEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001319
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001320 return ret;
1321}
1322
Jesse Barnes8a905232009-07-11 16:48:03 -04001323/**
1324 * i915_error_work_func - do process context error handling work
1325 * @work: work struct
1326 *
1327 * Fire an error uevent so userspace can see that a hang or error
1328 * was detected.
1329 */
1330static void i915_error_work_func(struct work_struct *work)
1331{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001332 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1333 work);
1334 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1335 gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04001336 struct drm_device *dev = dev_priv->dev;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001337 struct intel_ring_buffer *ring;
Ben Gamarif316a422009-09-14 17:48:46 -04001338 char *error_event[] = { "ERROR=1", NULL };
1339 char *reset_event[] = { "RESET=1", NULL };
1340 char *reset_done_event[] = { "ERROR=0", NULL };
Daniel Vetterf69061b2012-12-06 09:01:42 +01001341 int i, ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04001342
Ben Gamarif316a422009-09-14 17:48:46 -04001343 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04001344
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001345 /*
1346 * Note that there's only one work item which does gpu resets, so we
1347 * need not worry about concurrent gpu resets potentially incrementing
1348 * error->reset_counter twice. We only need to take care of another
1349 * racing irq/hangcheck declaring the gpu dead for a second time. A
1350 * quick check for that is good enough: schedule_work ensures the
1351 * correct ordering between hang detection and this work item, and since
1352 * the reset in-progress bit is only ever set by code outside of this
1353 * work we don't need to worry about any other races.
1354 */
1355 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01001356 DRM_DEBUG_DRIVER("resetting chip\n");
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001357 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE,
1358 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001359
Daniel Vetterf69061b2012-12-06 09:01:42 +01001360 ret = i915_reset(dev);
1361
1362 if (ret == 0) {
1363 /*
1364 * After all the gem state is reset, increment the reset
1365 * counter and wake up everyone waiting for the reset to
1366 * complete.
1367 *
1368 * Since unlock operations are a one-sided barrier only,
1369 * we need to insert a barrier here to order any seqno
1370 * updates before
1371 * the counter increment.
1372 */
1373 smp_mb__before_atomic_inc();
1374 atomic_inc(&dev_priv->gpu_error.reset_counter);
1375
1376 kobject_uevent_env(&dev->primary->kdev.kobj,
1377 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001378 } else {
1379 atomic_set(&error->reset_counter, I915_WEDGED);
Ben Gamarif316a422009-09-14 17:48:46 -04001380 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001381
Daniel Vetterf69061b2012-12-06 09:01:42 +01001382 for_each_ring(ring, dev_priv, i)
1383 wake_up_all(&ring->irq_queue);
1384
Ville Syrjälä96a02912013-02-18 19:08:49 +02001385 intel_display_handle_reset(dev);
1386
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001387 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04001388 }
Jesse Barnes8a905232009-07-11 16:48:03 -04001389}
1390
Daniel Vetter85f9e502012-08-31 21:42:26 +02001391/* NB: please notice the memset */
1392static void i915_get_extra_instdone(struct drm_device *dev,
1393 uint32_t *instdone)
1394{
1395 struct drm_i915_private *dev_priv = dev->dev_private;
1396 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1397
1398 switch(INTEL_INFO(dev)->gen) {
1399 case 2:
1400 case 3:
1401 instdone[0] = I915_READ(INSTDONE);
1402 break;
1403 case 4:
1404 case 5:
1405 case 6:
1406 instdone[0] = I915_READ(INSTDONE_I965);
1407 instdone[1] = I915_READ(INSTDONE1);
1408 break;
1409 default:
1410 WARN_ONCE(1, "Unsupported platform\n");
1411 case 7:
1412 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1413 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1414 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1415 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1416 break;
1417 }
1418}
1419
Chris Wilson3bd3c932010-08-19 08:19:30 +01001420#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +00001421static struct drm_i915_error_object *
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001422i915_error_object_create_sized(struct drm_i915_private *dev_priv,
1423 struct drm_i915_gem_object *src,
1424 const int num_pages)
Chris Wilson9df30792010-02-18 10:24:56 +00001425{
1426 struct drm_i915_error_object *dst;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001427 int i;
Chris Wilsone56660d2010-08-07 11:01:26 +01001428 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001429
Chris Wilson05394f32010-11-08 19:18:58 +00001430 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +00001431 return NULL;
1432
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001433 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001434 if (dst == NULL)
1435 return NULL;
1436
Chris Wilson05394f32010-11-08 19:18:58 +00001437 reloc_offset = src->gtt_offset;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001438 for (i = 0; i < num_pages; i++) {
Andrew Morton788885a2010-05-11 14:07:05 -07001439 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +01001440 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -07001441
Chris Wilsone56660d2010-08-07 11:01:26 +01001442 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001443 if (d == NULL)
1444 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +01001445
Andrew Morton788885a2010-05-11 14:07:05 -07001446 local_irq_save(flags);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001447 if (reloc_offset < dev_priv->gtt.mappable_end &&
Daniel Vetter74898d72012-02-15 23:50:22 +01001448 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +01001449 void __iomem *s;
1450
1451 /* Simply ignore tiling or any overlapping fence.
1452 * It's part of the error state, and this hopefully
1453 * captures what the GPU read.
1454 */
1455
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001456 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson172975aa2011-12-14 13:57:25 +01001457 reloc_offset);
1458 memcpy_fromio(d, s, PAGE_SIZE);
1459 io_mapping_unmap_atomic(s);
Chris Wilson960e3562012-11-15 11:32:23 +00001460 } else if (src->stolen) {
1461 unsigned long offset;
1462
1463 offset = dev_priv->mm.stolen_base;
1464 offset += src->stolen->start;
1465 offset += i << PAGE_SHIFT;
1466
Daniel Vetter1a240d42012-11-29 22:18:51 +01001467 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
Chris Wilson172975aa2011-12-14 13:57:25 +01001468 } else {
Chris Wilson9da3da62012-06-01 15:20:22 +01001469 struct page *page;
Chris Wilson172975aa2011-12-14 13:57:25 +01001470 void *s;
1471
Chris Wilson9da3da62012-06-01 15:20:22 +01001472 page = i915_gem_object_get_page(src, i);
Chris Wilson172975aa2011-12-14 13:57:25 +01001473
Chris Wilson9da3da62012-06-01 15:20:22 +01001474 drm_clflush_pages(&page, 1);
1475
1476 s = kmap_atomic(page);
Chris Wilson172975aa2011-12-14 13:57:25 +01001477 memcpy(d, s, PAGE_SIZE);
1478 kunmap_atomic(s);
1479
Chris Wilson9da3da62012-06-01 15:20:22 +01001480 drm_clflush_pages(&page, 1);
Chris Wilson172975aa2011-12-14 13:57:25 +01001481 }
Andrew Morton788885a2010-05-11 14:07:05 -07001482 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +01001483
Chris Wilson9da3da62012-06-01 15:20:22 +01001484 dst->pages[i] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +01001485
1486 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +00001487 }
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001488 dst->page_count = num_pages;
Chris Wilson05394f32010-11-08 19:18:58 +00001489 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001490
1491 return dst;
1492
1493unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001494 while (i--)
1495 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001496 kfree(dst);
1497 return NULL;
1498}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001499#define i915_error_object_create(dev_priv, src) \
1500 i915_error_object_create_sized((dev_priv), (src), \
1501 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001502
1503static void
1504i915_error_object_free(struct drm_i915_error_object *obj)
1505{
1506 int page;
1507
1508 if (obj == NULL)
1509 return;
1510
1511 for (page = 0; page < obj->page_count; page++)
1512 kfree(obj->pages[page]);
1513
1514 kfree(obj);
1515}
1516
Daniel Vetter742cbee2012-04-27 15:17:39 +02001517void
1518i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001519{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001520 struct drm_i915_error_state *error = container_of(error_ref,
1521 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001522 int i;
1523
Chris Wilson52d39a22012-02-15 11:25:37 +00001524 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1525 i915_error_object_free(error->ring[i].batchbuffer);
1526 i915_error_object_free(error->ring[i].ringbuffer);
1527 kfree(error->ring[i].requests);
1528 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001529
Chris Wilson9df30792010-02-18 10:24:56 +00001530 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001531 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +00001532 kfree(error);
1533}
Chris Wilson1b502472012-04-24 15:47:30 +01001534static void capture_bo(struct drm_i915_error_buffer *err,
1535 struct drm_i915_gem_object *obj)
1536{
1537 err->size = obj->base.size;
1538 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001539 err->rseqno = obj->last_read_seqno;
1540 err->wseqno = obj->last_write_seqno;
Chris Wilson1b502472012-04-24 15:47:30 +01001541 err->gtt_offset = obj->gtt_offset;
1542 err->read_domains = obj->base.read_domains;
1543 err->write_domain = obj->base.write_domain;
1544 err->fence_reg = obj->fence_reg;
1545 err->pinned = 0;
1546 if (obj->pin_count > 0)
1547 err->pinned = 1;
1548 if (obj->user_pin_count > 0)
1549 err->pinned = -1;
1550 err->tiling = obj->tiling_mode;
1551 err->dirty = obj->dirty;
1552 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1553 err->ring = obj->ring ? obj->ring->id : -1;
1554 err->cache_level = obj->cache_level;
1555}
Chris Wilson9df30792010-02-18 10:24:56 +00001556
Chris Wilson1b502472012-04-24 15:47:30 +01001557static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1558 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001559{
1560 struct drm_i915_gem_object *obj;
1561 int i = 0;
1562
1563 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001564 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001565 if (++i == count)
1566 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001567 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001568
Chris Wilson1b502472012-04-24 15:47:30 +01001569 return i;
1570}
1571
1572static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1573 int count, struct list_head *head)
1574{
1575 struct drm_i915_gem_object *obj;
1576 int i = 0;
1577
1578 list_for_each_entry(obj, head, gtt_list) {
1579 if (obj->pin_count == 0)
1580 continue;
1581
1582 capture_bo(err++, obj);
1583 if (++i == count)
1584 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001585 }
1586
1587 return i;
1588}
1589
Chris Wilson748ebc62010-10-24 10:28:47 +01001590static void i915_gem_record_fences(struct drm_device *dev,
1591 struct drm_i915_error_state *error)
1592{
1593 struct drm_i915_private *dev_priv = dev->dev_private;
1594 int i;
1595
1596 /* Fences */
1597 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001598 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001599 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001600 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001601 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1602 break;
1603 case 5:
1604 case 4:
1605 for (i = 0; i < 16; i++)
1606 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1607 break;
1608 case 3:
1609 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1610 for (i = 0; i < 8; i++)
1611 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1612 case 2:
1613 for (i = 0; i < 8; i++)
1614 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1615 break;
1616
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001617 default:
1618 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001619 }
1620}
1621
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001622static struct drm_i915_error_object *
1623i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1624 struct intel_ring_buffer *ring)
1625{
1626 struct drm_i915_gem_object *obj;
1627 u32 seqno;
1628
1629 if (!ring->get_seqno)
1630 return NULL;
1631
Daniel Vetterb45305f2012-12-17 16:21:27 +01001632 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1633 u32 acthd = I915_READ(ACTHD);
1634
1635 if (WARN_ON(ring->id != RCS))
1636 return NULL;
1637
1638 obj = ring->private;
1639 if (acthd >= obj->gtt_offset &&
1640 acthd < obj->gtt_offset + obj->base.size)
1641 return i915_error_object_create(dev_priv, obj);
1642 }
1643
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001644 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001645 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1646 if (obj->ring != ring)
1647 continue;
1648
Chris Wilson0201f1e2012-07-20 12:41:01 +01001649 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001650 continue;
1651
1652 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1653 continue;
1654
1655 /* We need to copy these to an anonymous buffer as the simplest
1656 * method to avoid being overwritten by userspace.
1657 */
1658 return i915_error_object_create(dev_priv, obj);
1659 }
1660
1661 return NULL;
1662}
1663
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001664static void i915_record_ring_state(struct drm_device *dev,
1665 struct drm_i915_error_state *error,
1666 struct intel_ring_buffer *ring)
1667{
1668 struct drm_i915_private *dev_priv = dev->dev_private;
1669
Daniel Vetter33f3f512011-12-14 13:57:39 +01001670 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001671 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001672 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001673 error->semaphore_mboxes[ring->id][0]
1674 = I915_READ(RING_SYNC_0(ring->mmio_base));
1675 error->semaphore_mboxes[ring->id][1]
1676 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001677 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1678 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001679 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001680
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001681 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001682 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001683 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1684 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1685 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001686 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001687 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001688 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001689 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001690 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001691 error->ipeir[ring->id] = I915_READ(IPEIR);
1692 error->ipehr[ring->id] = I915_READ(IPEHR);
1693 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001694 }
1695
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001696 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001697 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001698 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001699 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001700 error->head[ring->id] = I915_READ_HEAD(ring);
1701 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001702 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001703
1704 error->cpu_ring_head[ring->id] = ring->head;
1705 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001706}
1707
Ben Widawsky8c123e52013-03-04 17:00:29 -08001708
1709static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1710 struct drm_i915_error_state *error,
1711 struct drm_i915_error_ring *ering)
1712{
1713 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1714 struct drm_i915_gem_object *obj;
1715
1716 /* Currently render ring is the only HW context user */
1717 if (ring->id != RCS || !error->ccid)
1718 return;
1719
1720 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list) {
1721 if ((error->ccid & PAGE_MASK) == obj->gtt_offset) {
1722 ering->ctx = i915_error_object_create_sized(dev_priv,
1723 obj, 1);
1724 }
1725 }
1726}
1727
Chris Wilson52d39a22012-02-15 11:25:37 +00001728static void i915_gem_record_rings(struct drm_device *dev,
1729 struct drm_i915_error_state *error)
1730{
1731 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001732 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001733 struct drm_i915_gem_request *request;
1734 int i, count;
1735
Chris Wilsonb4519512012-05-11 14:29:30 +01001736 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001737 i915_record_ring_state(dev, error, ring);
1738
1739 error->ring[i].batchbuffer =
1740 i915_error_first_batchbuffer(dev_priv, ring);
1741
1742 error->ring[i].ringbuffer =
1743 i915_error_object_create(dev_priv, ring->obj);
1744
Ben Widawsky8c123e52013-03-04 17:00:29 -08001745
1746 i915_gem_record_active_context(ring, error, &error->ring[i]);
1747
Chris Wilson52d39a22012-02-15 11:25:37 +00001748 count = 0;
1749 list_for_each_entry(request, &ring->request_list, list)
1750 count++;
1751
1752 error->ring[i].num_requests = count;
1753 error->ring[i].requests =
1754 kmalloc(count*sizeof(struct drm_i915_error_request),
1755 GFP_ATOMIC);
1756 if (error->ring[i].requests == NULL) {
1757 error->ring[i].num_requests = 0;
1758 continue;
1759 }
1760
1761 count = 0;
1762 list_for_each_entry(request, &ring->request_list, list) {
1763 struct drm_i915_error_request *erq;
1764
1765 erq = &error->ring[i].requests[count++];
1766 erq->seqno = request->seqno;
1767 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001768 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001769 }
1770 }
1771}
1772
Jesse Barnes8a905232009-07-11 16:48:03 -04001773/**
1774 * i915_capture_error_state - capture an error record for later analysis
1775 * @dev: drm device
1776 *
1777 * Should be called when an error is detected (either a hang or an error
1778 * interrupt) to capture error state from the time of the error. Fills
1779 * out a structure which becomes available in debugfs for user level tools
1780 * to pick up.
1781 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001782static void i915_capture_error_state(struct drm_device *dev)
1783{
1784 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001785 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001786 struct drm_i915_error_state *error;
1787 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001788 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001789
Daniel Vetter99584db2012-11-14 17:14:04 +01001790 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1791 error = dev_priv->gpu_error.first_error;
1792 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001793 if (error)
1794 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001795
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001796 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001797 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001798 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001799 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1800 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001801 }
1802
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001803 DRM_INFO("capturing error event; look for more information in "
Ben Widawsky2f86f192013-01-28 15:32:15 -08001804 "/sys/kernel/debug/dri/%d/i915_error_state\n",
Chris Wilsonb6f78332011-02-01 14:15:55 +00001805 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001806
Daniel Vetter742cbee2012-04-27 15:17:39 +02001807 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001808 error->eir = I915_READ(EIR);
1809 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001810 if (HAS_HW_CONTEXTS(dev))
1811 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001812
1813 if (HAS_PCH_SPLIT(dev))
1814 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1815 else if (IS_VALLEYVIEW(dev))
1816 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1817 else if (IS_GEN2(dev))
1818 error->ier = I915_READ16(IER);
1819 else
1820 error->ier = I915_READ(IER);
1821
Chris Wilson0f3b6842013-01-15 12:05:55 +00001822 if (INTEL_INFO(dev)->gen >= 6)
1823 error->derrmr = I915_READ(DERRMR);
1824
1825 if (IS_VALLEYVIEW(dev))
1826 error->forcewake = I915_READ(FORCEWAKE_VLV);
1827 else if (INTEL_INFO(dev)->gen >= 7)
1828 error->forcewake = I915_READ(FORCEWAKE_MT);
1829 else if (INTEL_INFO(dev)->gen == 6)
1830 error->forcewake = I915_READ(FORCEWAKE);
1831
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001832 if (!HAS_PCH_SPLIT(dev))
1833 for_each_pipe(pipe)
1834 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001835
Daniel Vetter33f3f512011-12-14 13:57:39 +01001836 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001837 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001838 error->done_reg = I915_READ(DONE_REG);
1839 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001840
Ben Widawsky71e172e2012-08-20 16:15:13 -07001841 if (INTEL_INFO(dev)->gen == 7)
1842 error->err_int = I915_READ(GEN7_ERR_INT);
1843
Ben Widawsky050ee912012-08-22 11:32:15 -07001844 i915_get_extra_instdone(dev, error->extra_instdone);
1845
Chris Wilson748ebc62010-10-24 10:28:47 +01001846 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001847 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001848
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001849 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001850 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001851 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001852
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001853 i = 0;
1854 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1855 i++;
1856 error->active_bo_count = i;
Chris Wilson6c085a72012-08-20 11:40:46 +02001857 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list)
Chris Wilson1b502472012-04-24 15:47:30 +01001858 if (obj->pin_count)
1859 i++;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001860 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001861
Chris Wilson8e934db2011-01-24 12:34:00 +00001862 error->active_bo = NULL;
1863 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001864 if (i) {
1865 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001866 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001867 if (error->active_bo)
1868 error->pinned_bo =
1869 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001870 }
1871
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001872 if (error->active_bo)
1873 error->active_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001874 capture_active_bo(error->active_bo,
1875 error->active_bo_count,
1876 &dev_priv->mm.active_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001877
1878 if (error->pinned_bo)
1879 error->pinned_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001880 capture_pinned_bo(error->pinned_bo,
1881 error->pinned_bo_count,
Chris Wilson6c085a72012-08-20 11:40:46 +02001882 &dev_priv->mm.bound_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001883
Jesse Barnes8a905232009-07-11 16:48:03 -04001884 do_gettimeofday(&error->time);
1885
Chris Wilson6ef3d422010-08-04 20:26:07 +01001886 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001887 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001888
Daniel Vetter99584db2012-11-14 17:14:04 +01001889 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1890 if (dev_priv->gpu_error.first_error == NULL) {
1891 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00001892 error = NULL;
1893 }
Daniel Vetter99584db2012-11-14 17:14:04 +01001894 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001895
1896 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001897 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001898}
1899
1900void i915_destroy_error_state(struct drm_device *dev)
1901{
1902 struct drm_i915_private *dev_priv = dev->dev_private;
1903 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001904 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001905
Daniel Vetter99584db2012-11-14 17:14:04 +01001906 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1907 error = dev_priv->gpu_error.first_error;
1908 dev_priv->gpu_error.first_error = NULL;
1909 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001910
1911 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001912 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001913}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001914#else
1915#define i915_capture_error_state(x)
1916#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001917
Chris Wilson35aed2e2010-05-27 13:18:12 +01001918static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04001919{
1920 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07001921 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04001922 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07001923 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04001924
Chris Wilson35aed2e2010-05-27 13:18:12 +01001925 if (!eir)
1926 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04001927
Joe Perchesa70491c2012-03-18 13:00:11 -07001928 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04001929
Ben Widawskybd9854f2012-08-23 15:18:09 -07001930 i915_get_extra_instdone(dev, instdone);
1931
Jesse Barnes8a905232009-07-11 16:48:03 -04001932 if (IS_G4X(dev)) {
1933 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1934 u32 ipeir = I915_READ(IPEIR_I965);
1935
Joe Perchesa70491c2012-03-18 13:00:11 -07001936 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1937 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07001938 for (i = 0; i < ARRAY_SIZE(instdone); i++)
1939 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07001940 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07001941 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001942 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001943 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001944 }
1945 if (eir & GM45_ERROR_PAGE_TABLE) {
1946 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001947 pr_err("page table error\n");
1948 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001949 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001950 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001951 }
1952 }
1953
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001954 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001955 if (eir & I915_ERROR_PAGE_TABLE) {
1956 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001957 pr_err("page table error\n");
1958 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001959 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001960 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001961 }
1962 }
1963
1964 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001965 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001966 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07001967 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001968 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04001969 /* pipestat has already been acked */
1970 }
1971 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001972 pr_err("instruction error\n");
1973 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07001974 for (i = 0; i < ARRAY_SIZE(instdone); i++)
1975 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001976 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001977 u32 ipeir = I915_READ(IPEIR);
1978
Joe Perchesa70491c2012-03-18 13:00:11 -07001979 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
1980 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07001981 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04001982 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001983 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001984 } else {
1985 u32 ipeir = I915_READ(IPEIR_I965);
1986
Joe Perchesa70491c2012-03-18 13:00:11 -07001987 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1988 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07001989 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07001990 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001991 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001992 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001993 }
1994 }
1995
1996 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001997 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04001998 eir = I915_READ(EIR);
1999 if (eir) {
2000 /*
2001 * some errors might have become stuck,
2002 * mask them.
2003 */
2004 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2005 I915_WRITE(EMR, I915_READ(EMR) | eir);
2006 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2007 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002008}
2009
2010/**
2011 * i915_handle_error - handle an error interrupt
2012 * @dev: drm device
2013 *
2014 * Do some basic checking of regsiter state at error interrupt time and
2015 * dump it to the syslog. Also call i915_capture_error_state() to make
2016 * sure we get a record and make it available in debugfs. Fire a uevent
2017 * so userspace knows something bad happened (should trigger collection
2018 * of a ring dump etc.).
2019 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002020void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002021{
2022 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002023 struct intel_ring_buffer *ring;
2024 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002025
2026 i915_capture_error_state(dev);
2027 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002028
Ben Gamariba1234d2009-09-14 17:48:47 -04002029 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002030 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2031 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002032
Ben Gamari11ed50e2009-09-14 17:48:45 -04002033 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002034 * Wakeup waiting processes so that the reset work item
2035 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002036 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002037 for_each_ring(ring, dev_priv, i)
2038 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002039 }
2040
Daniel Vetter99584db2012-11-14 17:14:04 +01002041 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002042}
2043
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002044static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002045{
2046 drm_i915_private_t *dev_priv = dev->dev_private;
2047 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2048 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002049 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002050 struct intel_unpin_work *work;
2051 unsigned long flags;
2052 bool stall_detected;
2053
2054 /* Ignore early vblank irqs */
2055 if (intel_crtc == NULL)
2056 return;
2057
2058 spin_lock_irqsave(&dev->event_lock, flags);
2059 work = intel_crtc->unpin_work;
2060
Chris Wilsone7d841c2012-12-03 11:36:30 +00002061 if (work == NULL ||
2062 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2063 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002064 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2065 spin_unlock_irqrestore(&dev->event_lock, flags);
2066 return;
2067 }
2068
2069 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002070 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002071 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002072 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002073 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
2074 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002075 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002076 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00002077 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002078 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002079 crtc->x * crtc->fb->bits_per_pixel/8);
2080 }
2081
2082 spin_unlock_irqrestore(&dev->event_lock, flags);
2083
2084 if (stall_detected) {
2085 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2086 intel_prepare_page_flip(dev, intel_crtc->plane);
2087 }
2088}
2089
Keith Packard42f52ef2008-10-18 19:39:29 -07002090/* Called from drm generic code, passed 'crtc' which
2091 * we use as a pipe index
2092 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002093static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002094{
2095 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002096 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002097
Chris Wilson5eddb702010-09-11 13:48:45 +01002098 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002099 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002100
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002101 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002102 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002103 i915_enable_pipestat(dev_priv, pipe,
2104 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002105 else
Keith Packard7c463582008-11-04 02:03:27 -08002106 i915_enable_pipestat(dev_priv, pipe,
2107 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002108
2109 /* maintain vblank delivery even in deep C-states */
2110 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002111 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002112 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002113
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002114 return 0;
2115}
2116
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002117static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002118{
2119 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2120 unsigned long irqflags;
2121
2122 if (!i915_pipe_enabled(dev, pipe))
2123 return -EINVAL;
2124
2125 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2126 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002127 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002128 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2129
2130 return 0;
2131}
2132
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002133static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002134{
2135 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2136 unsigned long irqflags;
2137
2138 if (!i915_pipe_enabled(dev, pipe))
2139 return -EINVAL;
2140
2141 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002142 ironlake_enable_display_irq(dev_priv,
2143 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002144 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2145
2146 return 0;
2147}
2148
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002149static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2150{
2151 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2152 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002153 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002154
2155 if (!i915_pipe_enabled(dev, pipe))
2156 return -EINVAL;
2157
2158 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002159 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002160 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002161 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002162 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002163 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002164 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002165 i915_enable_pipestat(dev_priv, pipe,
2166 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002167 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2168
2169 return 0;
2170}
2171
Keith Packard42f52ef2008-10-18 19:39:29 -07002172/* Called from drm generic code, passed 'crtc' which
2173 * we use as a pipe index
2174 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002175static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002176{
2177 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002178 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002179
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002180 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002181 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002182 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002183
Jesse Barnesf796cf82011-04-07 13:58:17 -07002184 i915_disable_pipestat(dev_priv, pipe,
2185 PIPE_VBLANK_INTERRUPT_ENABLE |
2186 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2187 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2188}
2189
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002190static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002191{
2192 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2193 unsigned long irqflags;
2194
2195 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2196 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002197 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002198 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002199}
2200
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002201static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002202{
2203 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2204 unsigned long irqflags;
2205
2206 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002207 ironlake_disable_display_irq(dev_priv,
2208 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002209 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2210}
2211
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002212static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2213{
2214 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2215 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002216 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002217
2218 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002219 i915_disable_pipestat(dev_priv, pipe,
2220 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002221 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002222 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002223 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002224 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002225 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002226 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002227 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2228}
2229
Chris Wilson893eead2010-10-27 14:44:35 +01002230static u32
2231ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002232{
Chris Wilson893eead2010-10-27 14:44:35 +01002233 return list_entry(ring->request_list.prev,
2234 struct drm_i915_gem_request, list)->seqno;
2235}
2236
2237static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
2238{
2239 if (list_empty(&ring->request_list) ||
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002240 i915_seqno_passed(ring->get_seqno(ring, false),
2241 ring_last_seqno(ring))) {
Chris Wilson893eead2010-10-27 14:44:35 +01002242 /* Issue a wake-up to catch stuck h/w. */
Ben Widawsky9574b3f2012-04-26 16:03:01 -07002243 if (waitqueue_active(&ring->irq_queue)) {
2244 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2245 ring->name);
Chris Wilson893eead2010-10-27 14:44:35 +01002246 wake_up_all(&ring->irq_queue);
2247 *err = true;
2248 }
2249 return true;
2250 }
2251 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04002252}
2253
Chris Wilsona24a11e2013-03-14 17:52:05 +02002254static bool semaphore_passed(struct intel_ring_buffer *ring)
2255{
2256 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2257 u32 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
2258 struct intel_ring_buffer *signaller;
2259 u32 cmd, ipehr, acthd_min;
2260
2261 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2262 if ((ipehr & ~(0x3 << 16)) !=
2263 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
2264 return false;
2265
2266 /* ACTHD is likely pointing to the dword after the actual command,
2267 * so scan backwards until we find the MBOX.
2268 */
2269 acthd_min = max((int)acthd - 3 * 4, 0);
2270 do {
2271 cmd = ioread32(ring->virtual_start + acthd);
2272 if (cmd == ipehr)
2273 break;
2274
2275 acthd -= 4;
2276 if (acthd < acthd_min)
2277 return false;
2278 } while (1);
2279
2280 signaller = &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
2281 return i915_seqno_passed(signaller->get_seqno(signaller, false),
2282 ioread32(ring->virtual_start+acthd+4)+1);
2283}
2284
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002285static bool kick_ring(struct intel_ring_buffer *ring)
2286{
2287 struct drm_device *dev = ring->dev;
2288 struct drm_i915_private *dev_priv = dev->dev_private;
2289 u32 tmp = I915_READ_CTL(ring);
2290 if (tmp & RING_WAIT) {
2291 DRM_ERROR("Kicking stuck wait on %s\n",
2292 ring->name);
2293 I915_WRITE_CTL(ring, tmp);
2294 return true;
2295 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002296
2297 if (INTEL_INFO(dev)->gen >= 6 &&
2298 tmp & RING_WAIT_SEMAPHORE &&
2299 semaphore_passed(ring)) {
2300 DRM_ERROR("Kicking stuck semaphore on %s\n",
2301 ring->name);
2302 I915_WRITE_CTL(ring, tmp);
2303 return true;
2304 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002305 return false;
2306}
2307
Chris Wilsond1e61e72012-04-10 17:00:41 +01002308static bool i915_hangcheck_hung(struct drm_device *dev)
2309{
2310 drm_i915_private_t *dev_priv = dev->dev_private;
2311
Daniel Vetter99584db2012-11-14 17:14:04 +01002312 if (dev_priv->gpu_error.hangcheck_count++ > 1) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002313 bool hung = true;
2314
Chris Wilsond1e61e72012-04-10 17:00:41 +01002315 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
2316 i915_handle_error(dev, true);
2317
2318 if (!IS_GEN2(dev)) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002319 struct intel_ring_buffer *ring;
2320 int i;
2321
Chris Wilsond1e61e72012-04-10 17:00:41 +01002322 /* Is the chip hanging on a WAIT_FOR_EVENT?
2323 * If so we can simply poke the RB_WAIT bit
2324 * and break the hang. This should work on
2325 * all but the second generation chipsets.
2326 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002327 for_each_ring(ring, dev_priv, i)
2328 hung &= !kick_ring(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002329 }
2330
Chris Wilsonb4519512012-05-11 14:29:30 +01002331 return hung;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002332 }
2333
2334 return false;
2335}
2336
Ben Gamarif65d9422009-09-14 17:48:44 -04002337/**
2338 * This is called when the chip hasn't reported back with completed
2339 * batchbuffers in a long time. The first time this is called we simply record
2340 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
2341 * again, we assume the chip is wedged and try to fix it.
2342 */
2343void i915_hangcheck_elapsed(unsigned long data)
2344{
2345 struct drm_device *dev = (struct drm_device *)data;
2346 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002347 uint32_t acthd[I915_NUM_RINGS], instdone[I915_NUM_INSTDONE_REG];
Chris Wilsonb4519512012-05-11 14:29:30 +01002348 struct intel_ring_buffer *ring;
2349 bool err = false, idle;
2350 int i;
Chris Wilson893eead2010-10-27 14:44:35 +01002351
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002352 if (!i915_enable_hangcheck)
2353 return;
2354
Chris Wilsonb4519512012-05-11 14:29:30 +01002355 memset(acthd, 0, sizeof(acthd));
2356 idle = true;
2357 for_each_ring(ring, dev_priv, i) {
2358 idle &= i915_hangcheck_ring_idle(ring, &err);
2359 acthd[i] = intel_ring_get_active_head(ring);
2360 }
2361
Chris Wilson893eead2010-10-27 14:44:35 +01002362 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002363 if (idle) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002364 if (err) {
2365 if (i915_hangcheck_hung(dev))
2366 return;
2367
Chris Wilson893eead2010-10-27 14:44:35 +01002368 goto repeat;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002369 }
2370
Daniel Vetter99584db2012-11-14 17:14:04 +01002371 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilson893eead2010-10-27 14:44:35 +01002372 return;
2373 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002374
Ben Widawskybd9854f2012-08-23 15:18:09 -07002375 i915_get_extra_instdone(dev, instdone);
Daniel Vetter99584db2012-11-14 17:14:04 +01002376 if (memcmp(dev_priv->gpu_error.last_acthd, acthd,
2377 sizeof(acthd)) == 0 &&
2378 memcmp(dev_priv->gpu_error.prev_instdone, instdone,
2379 sizeof(instdone)) == 0) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002380 if (i915_hangcheck_hung(dev))
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002381 return;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002382 } else {
Daniel Vetter99584db2012-11-14 17:14:04 +01002383 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002384
Daniel Vetter99584db2012-11-14 17:14:04 +01002385 memcpy(dev_priv->gpu_error.last_acthd, acthd,
2386 sizeof(acthd));
2387 memcpy(dev_priv->gpu_error.prev_instdone, instdone,
2388 sizeof(instdone));
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002389 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002390
Chris Wilson893eead2010-10-27 14:44:35 +01002391repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04002392 /* Reset timer case chip hangs without another request being added */
Daniel Vetter99584db2012-11-14 17:14:04 +01002393 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +01002394 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002395}
2396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397/* drm_dma.h hooks
2398*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002399static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002400{
2401 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2402
Jesse Barnes46979952011-04-07 13:53:55 -07002403 atomic_set(&dev_priv->irq_received, 0);
2404
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002405 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002406
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002407 /* XXX hotplug from PCH */
2408
2409 I915_WRITE(DEIMR, 0xffffffff);
2410 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002411 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002412
2413 /* and GT */
2414 I915_WRITE(GTIMR, 0xffffffff);
2415 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002416 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002417
Ben Widawskyab5c6082013-04-05 13:12:41 -07002418 if (HAS_PCH_NOP(dev))
2419 return;
2420
Zhenyu Wangc6501562009-11-03 18:57:21 +00002421 /* south display irq */
2422 I915_WRITE(SDEIMR, 0xffffffff);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002423 /*
2424 * SDEIER is also touched by the interrupt handler to work around missed
2425 * PCH interrupts. Hence we can't update it after the interrupt handler
2426 * is enabled - instead we unconditionally enable all PCH interrupt
2427 * sources here, but then only unmask them as needed with SDEIMR.
2428 */
2429 I915_WRITE(SDEIER, 0xffffffff);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002430 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002431}
2432
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002433static void valleyview_irq_preinstall(struct drm_device *dev)
2434{
2435 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2436 int pipe;
2437
2438 atomic_set(&dev_priv->irq_received, 0);
2439
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002440 /* VLV magic */
2441 I915_WRITE(VLV_IMR, 0);
2442 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2443 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2444 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2445
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002446 /* and GT */
2447 I915_WRITE(GTIIR, I915_READ(GTIIR));
2448 I915_WRITE(GTIIR, I915_READ(GTIIR));
2449 I915_WRITE(GTIMR, 0xffffffff);
2450 I915_WRITE(GTIER, 0x0);
2451 POSTING_READ(GTIER);
2452
2453 I915_WRITE(DPINVGTT, 0xff);
2454
2455 I915_WRITE(PORT_HOTPLUG_EN, 0);
2456 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2457 for_each_pipe(pipe)
2458 I915_WRITE(PIPESTAT(pipe), 0xffff);
2459 I915_WRITE(VLV_IIR, 0xffffffff);
2460 I915_WRITE(VLV_IMR, 0xffffffff);
2461 I915_WRITE(VLV_IER, 0x0);
2462 POSTING_READ(VLV_IER);
2463}
2464
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002465static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002466{
2467 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002468 struct drm_mode_config *mode_config = &dev->mode_config;
2469 struct intel_encoder *intel_encoder;
2470 u32 mask = ~I915_READ(SDEIMR);
2471 u32 hotplug;
Keith Packard7fe0b972011-09-19 13:31:02 -07002472
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002473 if (HAS_PCH_IBX(dev)) {
Egbert Eich995e6b32013-04-16 13:36:56 +02002474 mask &= ~SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002475 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002476 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2477 mask |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002478 } else {
Egbert Eich995e6b32013-04-16 13:36:56 +02002479 mask &= ~SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002480 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002481 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2482 mask |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002483 }
2484
2485 I915_WRITE(SDEIMR, ~mask);
2486
2487 /*
2488 * Enable digital hotplug on the PCH, and configure the DP short pulse
2489 * duration to 2ms (which is the minimum in the Display Port spec)
2490 *
2491 * This register is the same on all known PCH chips.
2492 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002493 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2494 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2495 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2496 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2497 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2498 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2499}
2500
Paulo Zanonid46da432013-02-08 17:35:15 -02002501static void ibx_irq_postinstall(struct drm_device *dev)
2502{
2503 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002504 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002505
Paulo Zanoni86642812013-04-12 17:57:57 -03002506 if (HAS_PCH_IBX(dev)) {
2507 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002508 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002509 } else {
2510 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2511
2512 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2513 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002514
2515 if (HAS_PCH_NOP(dev))
2516 return;
2517
Paulo Zanonid46da432013-02-08 17:35:15 -02002518 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2519 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002520}
2521
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002522static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002523{
2524 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2525 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002526 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002527 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002528 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002529 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002530 u32 render_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002531
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002532 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002533
2534 /* should always can generate irq */
2535 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002536 I915_WRITE(DEIMR, dev_priv->irq_mask);
2537 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002538 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002539
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002540 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002541
2542 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002543 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002544
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002545 if (IS_GEN6(dev))
2546 render_irqs =
2547 GT_USER_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002548 GEN6_BSD_USER_INTERRUPT |
2549 GEN6_BLITTER_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002550 else
2551 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00002552 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00002553 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002554 GT_BSD_USER_INTERRUPT;
2555 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002556 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002557
Paulo Zanonid46da432013-02-08 17:35:15 -02002558 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002559
Jesse Barnesf97108d2010-01-29 11:27:07 -08002560 if (IS_IRONLAKE_M(dev)) {
2561 /* Clear & enable PCU event interrupts */
2562 I915_WRITE(DEIIR, DE_PCU_EVENT);
2563 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
2564 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
2565 }
2566
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002567 return 0;
2568}
2569
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002570static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002571{
2572 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2573 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002574 u32 display_mask =
2575 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2576 DE_PLANEC_FLIP_DONE_IVB |
2577 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002578 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002579 DE_AUX_CHANNEL_A_IVB |
2580 DE_ERR_INT_IVB;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002581 u32 render_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002582
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002583 dev_priv->irq_mask = ~display_mask;
2584
2585 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002586 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002587 I915_WRITE(DEIIR, I915_READ(DEIIR));
2588 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002589 I915_WRITE(DEIER,
2590 display_mask |
2591 DE_PIPEC_VBLANK_IVB |
2592 DE_PIPEB_VBLANK_IVB |
2593 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002594 POSTING_READ(DEIER);
2595
Ben Widawsky15b9f802012-05-25 16:56:23 -07002596 dev_priv->gt_irq_mask = ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002597
2598 I915_WRITE(GTIIR, I915_READ(GTIIR));
2599 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2600
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002601 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
Ben Widawsky15b9f802012-05-25 16:56:23 -07002602 GEN6_BLITTER_USER_INTERRUPT | GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002603 I915_WRITE(GTIER, render_irqs);
2604 POSTING_READ(GTIER);
2605
Paulo Zanonid46da432013-02-08 17:35:15 -02002606 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002607
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002608 return 0;
2609}
2610
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002611static int valleyview_irq_postinstall(struct drm_device *dev)
2612{
2613 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002614 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002615 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002616 u32 render_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002617 u16 msid;
2618
2619 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002620 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2621 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2622 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002623 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2624
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002625 /*
2626 *Leave vblank interrupts masked initially. enable/disable will
2627 * toggle them based on usage.
2628 */
2629 dev_priv->irq_mask = (~enable_mask) |
2630 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2631 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002632
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002633 /* Hack for broken MSIs on VLV */
2634 pci_write_config_dword(dev_priv->dev->pdev, 0x94, 0xfee00000);
2635 pci_read_config_word(dev->pdev, 0x98, &msid);
2636 msid &= 0xff; /* mask out delivery bits */
2637 msid |= (1<<14);
2638 pci_write_config_word(dev_priv->dev->pdev, 0x98, msid);
2639
Daniel Vetter20afbda2012-12-11 14:05:07 +01002640 I915_WRITE(PORT_HOTPLUG_EN, 0);
2641 POSTING_READ(PORT_HOTPLUG_EN);
2642
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002643 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2644 I915_WRITE(VLV_IER, enable_mask);
2645 I915_WRITE(VLV_IIR, 0xffffffff);
2646 I915_WRITE(PIPESTAT(0), 0xffff);
2647 I915_WRITE(PIPESTAT(1), 0xffff);
2648 POSTING_READ(VLV_IER);
2649
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002650 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002651 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002652 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
2653
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002654 I915_WRITE(VLV_IIR, 0xffffffff);
2655 I915_WRITE(VLV_IIR, 0xffffffff);
2656
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002657 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002658 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002659
2660 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
2661 GEN6_BLITTER_USER_INTERRUPT;
2662 I915_WRITE(GTIER, render_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002663 POSTING_READ(GTIER);
2664
2665 /* ack & enable invalid PTE error interrupts */
2666#if 0 /* FIXME: add support to irq handler for checking these bits */
2667 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2668 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2669#endif
2670
2671 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002672
2673 return 0;
2674}
2675
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002676static void valleyview_irq_uninstall(struct drm_device *dev)
2677{
2678 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2679 int pipe;
2680
2681 if (!dev_priv)
2682 return;
2683
Egbert Eichac4c16c2013-04-16 13:36:58 +02002684 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2685
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002686 for_each_pipe(pipe)
2687 I915_WRITE(PIPESTAT(pipe), 0xffff);
2688
2689 I915_WRITE(HWSTAM, 0xffffffff);
2690 I915_WRITE(PORT_HOTPLUG_EN, 0);
2691 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2692 for_each_pipe(pipe)
2693 I915_WRITE(PIPESTAT(pipe), 0xffff);
2694 I915_WRITE(VLV_IIR, 0xffffffff);
2695 I915_WRITE(VLV_IMR, 0xffffffff);
2696 I915_WRITE(VLV_IER, 0x0);
2697 POSTING_READ(VLV_IER);
2698}
2699
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002700static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002701{
2702 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002703
2704 if (!dev_priv)
2705 return;
2706
Egbert Eichac4c16c2013-04-16 13:36:58 +02002707 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2708
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002709 I915_WRITE(HWSTAM, 0xffffffff);
2710
2711 I915_WRITE(DEIMR, 0xffffffff);
2712 I915_WRITE(DEIER, 0x0);
2713 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002714 if (IS_GEN7(dev))
2715 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002716
2717 I915_WRITE(GTIMR, 0xffffffff);
2718 I915_WRITE(GTIER, 0x0);
2719 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002720
Ben Widawskyab5c6082013-04-05 13:12:41 -07002721 if (HAS_PCH_NOP(dev))
2722 return;
2723
Keith Packard192aac1f2011-09-20 10:12:44 -07002724 I915_WRITE(SDEIMR, 0xffffffff);
2725 I915_WRITE(SDEIER, 0x0);
2726 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002727 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2728 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002729}
2730
Chris Wilsonc2798b12012-04-22 21:13:57 +01002731static void i8xx_irq_preinstall(struct drm_device * dev)
2732{
2733 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2734 int pipe;
2735
2736 atomic_set(&dev_priv->irq_received, 0);
2737
2738 for_each_pipe(pipe)
2739 I915_WRITE(PIPESTAT(pipe), 0);
2740 I915_WRITE16(IMR, 0xffff);
2741 I915_WRITE16(IER, 0x0);
2742 POSTING_READ16(IER);
2743}
2744
2745static int i8xx_irq_postinstall(struct drm_device *dev)
2746{
2747 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2748
Chris Wilsonc2798b12012-04-22 21:13:57 +01002749 I915_WRITE16(EMR,
2750 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2751
2752 /* Unmask the interrupts that we always want on. */
2753 dev_priv->irq_mask =
2754 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2755 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2756 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2757 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2758 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2759 I915_WRITE16(IMR, dev_priv->irq_mask);
2760
2761 I915_WRITE16(IER,
2762 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2763 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2764 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2765 I915_USER_INTERRUPT);
2766 POSTING_READ16(IER);
2767
2768 return 0;
2769}
2770
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002771/*
2772 * Returns true when a page flip has completed.
2773 */
2774static bool i8xx_handle_vblank(struct drm_device *dev,
2775 int pipe, u16 iir)
2776{
2777 drm_i915_private_t *dev_priv = dev->dev_private;
2778 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2779
2780 if (!drm_handle_vblank(dev, pipe))
2781 return false;
2782
2783 if ((iir & flip_pending) == 0)
2784 return false;
2785
2786 intel_prepare_page_flip(dev, pipe);
2787
2788 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2789 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2790 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2791 * the flip is completed (no longer pending). Since this doesn't raise
2792 * an interrupt per se, we watch for the change at vblank.
2793 */
2794 if (I915_READ16(ISR) & flip_pending)
2795 return false;
2796
2797 intel_finish_page_flip(dev, pipe);
2798
2799 return true;
2800}
2801
Daniel Vetterff1f5252012-10-02 15:10:55 +02002802static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01002803{
2804 struct drm_device *dev = (struct drm_device *) arg;
2805 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002806 u16 iir, new_iir;
2807 u32 pipe_stats[2];
2808 unsigned long irqflags;
2809 int irq_received;
2810 int pipe;
2811 u16 flip_mask =
2812 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2813 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2814
2815 atomic_inc(&dev_priv->irq_received);
2816
2817 iir = I915_READ16(IIR);
2818 if (iir == 0)
2819 return IRQ_NONE;
2820
2821 while (iir & ~flip_mask) {
2822 /* Can't rely on pipestat interrupt bit in iir as it might
2823 * have been cleared after the pipestat interrupt was received.
2824 * It doesn't set the bit in iir again, but it still produces
2825 * interrupts (for non-MSI).
2826 */
2827 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2828 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2829 i915_handle_error(dev, false);
2830
2831 for_each_pipe(pipe) {
2832 int reg = PIPESTAT(pipe);
2833 pipe_stats[pipe] = I915_READ(reg);
2834
2835 /*
2836 * Clear the PIPE*STAT regs before the IIR
2837 */
2838 if (pipe_stats[pipe] & 0x8000ffff) {
2839 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2840 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2841 pipe_name(pipe));
2842 I915_WRITE(reg, pipe_stats[pipe]);
2843 irq_received = 1;
2844 }
2845 }
2846 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2847
2848 I915_WRITE16(IIR, iir & ~flip_mask);
2849 new_iir = I915_READ16(IIR); /* Flush posted writes */
2850
Daniel Vetterd05c6172012-04-26 23:28:09 +02002851 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002852
2853 if (iir & I915_USER_INTERRUPT)
2854 notify_ring(dev, &dev_priv->ring[RCS]);
2855
2856 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002857 i8xx_handle_vblank(dev, 0, iir))
2858 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002859
2860 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002861 i8xx_handle_vblank(dev, 1, iir))
2862 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002863
2864 iir = new_iir;
2865 }
2866
2867 return IRQ_HANDLED;
2868}
2869
2870static void i8xx_irq_uninstall(struct drm_device * dev)
2871{
2872 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2873 int pipe;
2874
Chris Wilsonc2798b12012-04-22 21:13:57 +01002875 for_each_pipe(pipe) {
2876 /* Clear enable bits; then clear status bits */
2877 I915_WRITE(PIPESTAT(pipe), 0);
2878 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2879 }
2880 I915_WRITE16(IMR, 0xffff);
2881 I915_WRITE16(IER, 0x0);
2882 I915_WRITE16(IIR, I915_READ16(IIR));
2883}
2884
Chris Wilsona266c7d2012-04-24 22:59:44 +01002885static void i915_irq_preinstall(struct drm_device * dev)
2886{
2887 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2888 int pipe;
2889
2890 atomic_set(&dev_priv->irq_received, 0);
2891
2892 if (I915_HAS_HOTPLUG(dev)) {
2893 I915_WRITE(PORT_HOTPLUG_EN, 0);
2894 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2895 }
2896
Chris Wilson00d98eb2012-04-24 22:59:48 +01002897 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002898 for_each_pipe(pipe)
2899 I915_WRITE(PIPESTAT(pipe), 0);
2900 I915_WRITE(IMR, 0xffffffff);
2901 I915_WRITE(IER, 0x0);
2902 POSTING_READ(IER);
2903}
2904
2905static int i915_irq_postinstall(struct drm_device *dev)
2906{
2907 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01002908 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002909
Chris Wilson38bde182012-04-24 22:59:50 +01002910 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2911
2912 /* Unmask the interrupts that we always want on. */
2913 dev_priv->irq_mask =
2914 ~(I915_ASLE_INTERRUPT |
2915 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2916 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2917 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2918 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2919 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2920
2921 enable_mask =
2922 I915_ASLE_INTERRUPT |
2923 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2924 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2925 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2926 I915_USER_INTERRUPT;
2927
Chris Wilsona266c7d2012-04-24 22:59:44 +01002928 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01002929 I915_WRITE(PORT_HOTPLUG_EN, 0);
2930 POSTING_READ(PORT_HOTPLUG_EN);
2931
Chris Wilsona266c7d2012-04-24 22:59:44 +01002932 /* Enable in IER... */
2933 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2934 /* and unmask in IMR */
2935 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2936 }
2937
Chris Wilsona266c7d2012-04-24 22:59:44 +01002938 I915_WRITE(IMR, dev_priv->irq_mask);
2939 I915_WRITE(IER, enable_mask);
2940 POSTING_READ(IER);
2941
Daniel Vetter20afbda2012-12-11 14:05:07 +01002942 intel_opregion_enable_asle(dev);
2943
2944 return 0;
2945}
2946
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002947/*
2948 * Returns true when a page flip has completed.
2949 */
2950static bool i915_handle_vblank(struct drm_device *dev,
2951 int plane, int pipe, u32 iir)
2952{
2953 drm_i915_private_t *dev_priv = dev->dev_private;
2954 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
2955
2956 if (!drm_handle_vblank(dev, pipe))
2957 return false;
2958
2959 if ((iir & flip_pending) == 0)
2960 return false;
2961
2962 intel_prepare_page_flip(dev, plane);
2963
2964 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2965 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2966 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2967 * the flip is completed (no longer pending). Since this doesn't raise
2968 * an interrupt per se, we watch for the change at vblank.
2969 */
2970 if (I915_READ(ISR) & flip_pending)
2971 return false;
2972
2973 intel_finish_page_flip(dev, pipe);
2974
2975 return true;
2976}
2977
Daniel Vetterff1f5252012-10-02 15:10:55 +02002978static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01002979{
2980 struct drm_device *dev = (struct drm_device *) arg;
2981 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01002982 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01002983 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01002984 u32 flip_mask =
2985 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2986 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01002987 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002988
2989 atomic_inc(&dev_priv->irq_received);
2990
2991 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01002992 do {
2993 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01002994 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002995
2996 /* Can't rely on pipestat interrupt bit in iir as it might
2997 * have been cleared after the pipestat interrupt was received.
2998 * It doesn't set the bit in iir again, but it still produces
2999 * interrupts (for non-MSI).
3000 */
3001 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3002 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3003 i915_handle_error(dev, false);
3004
3005 for_each_pipe(pipe) {
3006 int reg = PIPESTAT(pipe);
3007 pipe_stats[pipe] = I915_READ(reg);
3008
Chris Wilson38bde182012-04-24 22:59:50 +01003009 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003010 if (pipe_stats[pipe] & 0x8000ffff) {
3011 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3012 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3013 pipe_name(pipe));
3014 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003015 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003016 }
3017 }
3018 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3019
3020 if (!irq_received)
3021 break;
3022
Chris Wilsona266c7d2012-04-24 22:59:44 +01003023 /* Consume port. Then clear IIR or we'll miss events */
3024 if ((I915_HAS_HOTPLUG(dev)) &&
3025 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3026 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003027 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003028
3029 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3030 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003031 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003032 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
3033 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003034 queue_work(dev_priv->wq,
3035 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003036 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003037 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003038 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003039 }
3040
Chris Wilson38bde182012-04-24 22:59:50 +01003041 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003042 new_iir = I915_READ(IIR); /* Flush posted writes */
3043
Chris Wilsona266c7d2012-04-24 22:59:44 +01003044 if (iir & I915_USER_INTERRUPT)
3045 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003046
Chris Wilsona266c7d2012-04-24 22:59:44 +01003047 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003048 int plane = pipe;
3049 if (IS_MOBILE(dev))
3050 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003051
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003052 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3053 i915_handle_vblank(dev, plane, pipe, iir))
3054 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003055
3056 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3057 blc_event = true;
3058 }
3059
Chris Wilsona266c7d2012-04-24 22:59:44 +01003060 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3061 intel_opregion_asle_intr(dev);
3062
3063 /* With MSI, interrupts are only generated when iir
3064 * transitions from zero to nonzero. If another bit got
3065 * set while we were handling the existing iir bits, then
3066 * we would never get another interrupt.
3067 *
3068 * This is fine on non-MSI as well, as if we hit this path
3069 * we avoid exiting the interrupt handler only to generate
3070 * another one.
3071 *
3072 * Note that for MSI this could cause a stray interrupt report
3073 * if an interrupt landed in the time between writing IIR and
3074 * the posting read. This should be rare enough to never
3075 * trigger the 99% of 100,000 interrupts test for disabling
3076 * stray interrupts.
3077 */
Chris Wilson38bde182012-04-24 22:59:50 +01003078 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003079 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003080 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003081
Daniel Vetterd05c6172012-04-26 23:28:09 +02003082 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003083
Chris Wilsona266c7d2012-04-24 22:59:44 +01003084 return ret;
3085}
3086
3087static void i915_irq_uninstall(struct drm_device * dev)
3088{
3089 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3090 int pipe;
3091
Egbert Eichac4c16c2013-04-16 13:36:58 +02003092 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3093
Chris Wilsona266c7d2012-04-24 22:59:44 +01003094 if (I915_HAS_HOTPLUG(dev)) {
3095 I915_WRITE(PORT_HOTPLUG_EN, 0);
3096 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3097 }
3098
Chris Wilson00d98eb2012-04-24 22:59:48 +01003099 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003100 for_each_pipe(pipe) {
3101 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003102 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003103 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3104 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003105 I915_WRITE(IMR, 0xffffffff);
3106 I915_WRITE(IER, 0x0);
3107
Chris Wilsona266c7d2012-04-24 22:59:44 +01003108 I915_WRITE(IIR, I915_READ(IIR));
3109}
3110
3111static void i965_irq_preinstall(struct drm_device * dev)
3112{
3113 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3114 int pipe;
3115
3116 atomic_set(&dev_priv->irq_received, 0);
3117
Chris Wilsonadca4732012-05-11 18:01:31 +01003118 I915_WRITE(PORT_HOTPLUG_EN, 0);
3119 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003120
3121 I915_WRITE(HWSTAM, 0xeffe);
3122 for_each_pipe(pipe)
3123 I915_WRITE(PIPESTAT(pipe), 0);
3124 I915_WRITE(IMR, 0xffffffff);
3125 I915_WRITE(IER, 0x0);
3126 POSTING_READ(IER);
3127}
3128
3129static int i965_irq_postinstall(struct drm_device *dev)
3130{
3131 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003132 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003133 u32 error_mask;
3134
Chris Wilsona266c7d2012-04-24 22:59:44 +01003135 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003136 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003137 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003138 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3139 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3140 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3141 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3142 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3143
3144 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003145 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3146 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003147 enable_mask |= I915_USER_INTERRUPT;
3148
3149 if (IS_G4X(dev))
3150 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003151
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003152 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003153
Chris Wilsona266c7d2012-04-24 22:59:44 +01003154 /*
3155 * Enable some error detection, note the instruction error mask
3156 * bit is reserved, so we leave it masked.
3157 */
3158 if (IS_G4X(dev)) {
3159 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3160 GM45_ERROR_MEM_PRIV |
3161 GM45_ERROR_CP_PRIV |
3162 I915_ERROR_MEMORY_REFRESH);
3163 } else {
3164 error_mask = ~(I915_ERROR_PAGE_TABLE |
3165 I915_ERROR_MEMORY_REFRESH);
3166 }
3167 I915_WRITE(EMR, error_mask);
3168
3169 I915_WRITE(IMR, dev_priv->irq_mask);
3170 I915_WRITE(IER, enable_mask);
3171 POSTING_READ(IER);
3172
Daniel Vetter20afbda2012-12-11 14:05:07 +01003173 I915_WRITE(PORT_HOTPLUG_EN, 0);
3174 POSTING_READ(PORT_HOTPLUG_EN);
3175
3176 intel_opregion_enable_asle(dev);
3177
3178 return 0;
3179}
3180
Egbert Eichbac56d52013-02-25 12:06:51 -05003181static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003182{
3183 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003184 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003185 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003186 u32 hotplug_en;
3187
Egbert Eichbac56d52013-02-25 12:06:51 -05003188 if (I915_HAS_HOTPLUG(dev)) {
3189 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3190 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3191 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003192 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003193 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3194 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3195 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003196 /* Programming the CRT detection parameters tends
3197 to generate a spurious hotplug event about three
3198 seconds later. So just do it once.
3199 */
3200 if (IS_G4X(dev))
3201 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003202 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003203 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003204
Egbert Eichbac56d52013-02-25 12:06:51 -05003205 /* Ignore TV since it's buggy */
3206 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3207 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003208}
3209
Daniel Vetterff1f5252012-10-02 15:10:55 +02003210static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003211{
3212 struct drm_device *dev = (struct drm_device *) arg;
3213 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003214 u32 iir, new_iir;
3215 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003216 unsigned long irqflags;
3217 int irq_received;
3218 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003219 u32 flip_mask =
3220 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3221 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003222
3223 atomic_inc(&dev_priv->irq_received);
3224
3225 iir = I915_READ(IIR);
3226
Chris Wilsona266c7d2012-04-24 22:59:44 +01003227 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003228 bool blc_event = false;
3229
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003230 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003231
3232 /* Can't rely on pipestat interrupt bit in iir as it might
3233 * have been cleared after the pipestat interrupt was received.
3234 * It doesn't set the bit in iir again, but it still produces
3235 * interrupts (for non-MSI).
3236 */
3237 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3238 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3239 i915_handle_error(dev, false);
3240
3241 for_each_pipe(pipe) {
3242 int reg = PIPESTAT(pipe);
3243 pipe_stats[pipe] = I915_READ(reg);
3244
3245 /*
3246 * Clear the PIPE*STAT regs before the IIR
3247 */
3248 if (pipe_stats[pipe] & 0x8000ffff) {
3249 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3250 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3251 pipe_name(pipe));
3252 I915_WRITE(reg, pipe_stats[pipe]);
3253 irq_received = 1;
3254 }
3255 }
3256 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3257
3258 if (!irq_received)
3259 break;
3260
3261 ret = IRQ_HANDLED;
3262
3263 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003264 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003265 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003266 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3267 HOTPLUG_INT_STATUS_G4X :
3268 HOTPLUG_INT_STATUS_I965);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003269
3270 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3271 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003272 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003273 if (hotplug_irq_storm_detect(dev, hotplug_trigger,
3274 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i965))
3275 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003276 queue_work(dev_priv->wq,
3277 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003278 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003279 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3280 I915_READ(PORT_HOTPLUG_STAT);
3281 }
3282
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003283 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003284 new_iir = I915_READ(IIR); /* Flush posted writes */
3285
Chris Wilsona266c7d2012-04-24 22:59:44 +01003286 if (iir & I915_USER_INTERRUPT)
3287 notify_ring(dev, &dev_priv->ring[RCS]);
3288 if (iir & I915_BSD_USER_INTERRUPT)
3289 notify_ring(dev, &dev_priv->ring[VCS]);
3290
Chris Wilsona266c7d2012-04-24 22:59:44 +01003291 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003292 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003293 i915_handle_vblank(dev, pipe, pipe, iir))
3294 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003295
3296 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3297 blc_event = true;
3298 }
3299
3300
3301 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3302 intel_opregion_asle_intr(dev);
3303
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003304 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3305 gmbus_irq_handler(dev);
3306
Chris Wilsona266c7d2012-04-24 22:59:44 +01003307 /* With MSI, interrupts are only generated when iir
3308 * transitions from zero to nonzero. If another bit got
3309 * set while we were handling the existing iir bits, then
3310 * we would never get another interrupt.
3311 *
3312 * This is fine on non-MSI as well, as if we hit this path
3313 * we avoid exiting the interrupt handler only to generate
3314 * another one.
3315 *
3316 * Note that for MSI this could cause a stray interrupt report
3317 * if an interrupt landed in the time between writing IIR and
3318 * the posting read. This should be rare enough to never
3319 * trigger the 99% of 100,000 interrupts test for disabling
3320 * stray interrupts.
3321 */
3322 iir = new_iir;
3323 }
3324
Daniel Vetterd05c6172012-04-26 23:28:09 +02003325 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003326
Chris Wilsona266c7d2012-04-24 22:59:44 +01003327 return ret;
3328}
3329
3330static void i965_irq_uninstall(struct drm_device * dev)
3331{
3332 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3333 int pipe;
3334
3335 if (!dev_priv)
3336 return;
3337
Egbert Eichac4c16c2013-04-16 13:36:58 +02003338 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3339
Chris Wilsonadca4732012-05-11 18:01:31 +01003340 I915_WRITE(PORT_HOTPLUG_EN, 0);
3341 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003342
3343 I915_WRITE(HWSTAM, 0xffffffff);
3344 for_each_pipe(pipe)
3345 I915_WRITE(PIPESTAT(pipe), 0);
3346 I915_WRITE(IMR, 0xffffffff);
3347 I915_WRITE(IER, 0x0);
3348
3349 for_each_pipe(pipe)
3350 I915_WRITE(PIPESTAT(pipe),
3351 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3352 I915_WRITE(IIR, I915_READ(IIR));
3353}
3354
Egbert Eichac4c16c2013-04-16 13:36:58 +02003355static void i915_reenable_hotplug_timer_func(unsigned long data)
3356{
3357 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3358 struct drm_device *dev = dev_priv->dev;
3359 struct drm_mode_config *mode_config = &dev->mode_config;
3360 unsigned long irqflags;
3361 int i;
3362
3363 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3364 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3365 struct drm_connector *connector;
3366
3367 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3368 continue;
3369
3370 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3371
3372 list_for_each_entry(connector, &mode_config->connector_list, head) {
3373 struct intel_connector *intel_connector = to_intel_connector(connector);
3374
3375 if (intel_connector->encoder->hpd_pin == i) {
3376 if (connector->polled != intel_connector->polled)
3377 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3378 drm_get_connector_name(connector));
3379 connector->polled = intel_connector->polled;
3380 if (!connector->polled)
3381 connector->polled = DRM_CONNECTOR_POLL_HPD;
3382 }
3383 }
3384 }
3385 if (dev_priv->display.hpd_irq_setup)
3386 dev_priv->display.hpd_irq_setup(dev);
3387 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3388}
3389
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003390void intel_irq_init(struct drm_device *dev)
3391{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003392 struct drm_i915_private *dev_priv = dev->dev_private;
3393
3394 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003395 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003396 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003397 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003398
Daniel Vetter99584db2012-11-14 17:14:04 +01003399 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3400 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003401 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003402 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3403 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003404
Tomas Janousek97a19a22012-12-08 13:48:13 +01003405 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003406
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003407 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3408 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003409 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003410 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3411 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3412 }
3413
Keith Packardc3613de2011-08-12 17:05:54 -07003414 if (drm_core_check_feature(dev, DRIVER_MODESET))
3415 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3416 else
3417 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003418 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3419
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003420 if (IS_VALLEYVIEW(dev)) {
3421 dev->driver->irq_handler = valleyview_irq_handler;
3422 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3423 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3424 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3425 dev->driver->enable_vblank = valleyview_enable_vblank;
3426 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003427 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003428 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003429 /* Share pre & uninstall handlers with ILK/SNB */
3430 dev->driver->irq_handler = ivybridge_irq_handler;
3431 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3432 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3433 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3434 dev->driver->enable_vblank = ivybridge_enable_vblank;
3435 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003436 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003437 } else if (HAS_PCH_SPLIT(dev)) {
3438 dev->driver->irq_handler = ironlake_irq_handler;
3439 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3440 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3441 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3442 dev->driver->enable_vblank = ironlake_enable_vblank;
3443 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003444 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003445 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003446 if (INTEL_INFO(dev)->gen == 2) {
3447 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3448 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3449 dev->driver->irq_handler = i8xx_irq_handler;
3450 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003451 } else if (INTEL_INFO(dev)->gen == 3) {
3452 dev->driver->irq_preinstall = i915_irq_preinstall;
3453 dev->driver->irq_postinstall = i915_irq_postinstall;
3454 dev->driver->irq_uninstall = i915_irq_uninstall;
3455 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003456 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003457 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003458 dev->driver->irq_preinstall = i965_irq_preinstall;
3459 dev->driver->irq_postinstall = i965_irq_postinstall;
3460 dev->driver->irq_uninstall = i965_irq_uninstall;
3461 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003462 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003463 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003464 dev->driver->enable_vblank = i915_enable_vblank;
3465 dev->driver->disable_vblank = i915_disable_vblank;
3466 }
3467}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003468
3469void intel_hpd_init(struct drm_device *dev)
3470{
3471 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003472 struct drm_mode_config *mode_config = &dev->mode_config;
3473 struct drm_connector *connector;
3474 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003475
Egbert Eich821450c2013-04-16 13:36:55 +02003476 for (i = 1; i < HPD_NUM_PINS; i++) {
3477 dev_priv->hpd_stats[i].hpd_cnt = 0;
3478 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3479 }
3480 list_for_each_entry(connector, &mode_config->connector_list, head) {
3481 struct intel_connector *intel_connector = to_intel_connector(connector);
3482 connector->polled = intel_connector->polled;
3483 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3484 connector->polled = DRM_CONNECTOR_POLL_HPD;
3485 }
Daniel Vetter20afbda2012-12-11 14:05:07 +01003486 if (dev_priv->display.hpd_irq_setup)
3487 dev_priv->display.hpd_irq_setup(dev);
3488}