blob: 7c81f0fb721a788eb35f1901e65f4432c98a180b [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
Egbert Eich321a1b32013-04-11 16:00:26 +0200544static int intel_hpd_irq_event(struct drm_device *dev, struct drm_connector *connector)
545{
546 enum drm_connector_status old_status;
547
548 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
549 old_status = connector->status;
550
551 connector->status = connector->funcs->detect(connector, false);
552 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
553 connector->base.id,
554 drm_get_connector_name(connector),
555 old_status, connector->status);
556 return (old_status != connector->status);
557}
558
Jesse Barnes5ca58282009-03-31 14:11:15 -0700559/*
560 * Handle hotplug events outside the interrupt handler proper.
561 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200562#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
563
Jesse Barnes5ca58282009-03-31 14:11:15 -0700564static void i915_hotplug_work_func(struct work_struct *work)
565{
566 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
567 hotplug_work);
568 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700569 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200570 struct intel_connector *intel_connector;
571 struct intel_encoder *intel_encoder;
572 struct drm_connector *connector;
573 unsigned long irqflags;
574 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200575 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200576 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700577
Daniel Vetter52d7ece2012-12-01 21:03:22 +0100578 /* HPD irq before everything is fully set up. */
579 if (!dev_priv->enable_hotplug_processing)
580 return;
581
Keith Packarda65e34c2011-07-25 10:04:56 -0700582 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800583 DRM_DEBUG_KMS("running encoder hotplug functions\n");
584
Egbert Eichcd569ae2013-04-16 13:36:57 +0200585 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +0200586
587 hpd_event_bits = dev_priv->hpd_event_bits;
588 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200589 list_for_each_entry(connector, &mode_config->connector_list, head) {
590 intel_connector = to_intel_connector(connector);
591 intel_encoder = intel_connector->encoder;
592 if (intel_encoder->hpd_pin > HPD_NONE &&
593 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
594 connector->polled == DRM_CONNECTOR_POLL_HPD) {
595 DRM_INFO("HPD interrupt storm detected on connector %s: "
596 "switching from hotplug detection to polling\n",
597 drm_get_connector_name(connector));
598 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
599 connector->polled = DRM_CONNECTOR_POLL_CONNECT
600 | DRM_CONNECTOR_POLL_DISCONNECT;
601 hpd_disabled = true;
602 }
Egbert Eich142e2392013-04-11 15:57:57 +0200603 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
604 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
605 drm_get_connector_name(connector), intel_encoder->hpd_pin);
606 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200607 }
608 /* if there were no outputs to poll, poll was disabled,
609 * therefore make sure it's enabled when disabling HPD on
610 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200611 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200612 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +0200613 mod_timer(&dev_priv->hotplug_reenable_timer,
614 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
615 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200616
617 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
618
Egbert Eich321a1b32013-04-11 16:00:26 +0200619 list_for_each_entry(connector, &mode_config->connector_list, head) {
620 intel_connector = to_intel_connector(connector);
621 intel_encoder = intel_connector->encoder;
622 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
623 if (intel_encoder->hot_plug)
624 intel_encoder->hot_plug(intel_encoder);
625 if (intel_hpd_irq_event(dev, connector))
626 changed = true;
627 }
628 }
Keith Packard40ee3382011-07-28 15:31:19 -0700629 mutex_unlock(&mode_config->mutex);
630
Egbert Eich321a1b32013-04-11 16:00:26 +0200631 if (changed)
632 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700633}
634
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200635static void ironlake_handle_rps_change(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800636{
637 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000638 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200639 u8 new_delay;
640 unsigned long flags;
641
642 spin_lock_irqsave(&mchdev_lock, flags);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800643
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200644 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
645
Daniel Vetter20e4d402012-08-08 23:35:39 +0200646 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200647
Jesse Barnes7648fa92010-05-20 14:28:11 -0700648 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000649 busy_up = I915_READ(RCPREVBSYTUPAVG);
650 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800651 max_avg = I915_READ(RCBMAXAVG);
652 min_avg = I915_READ(RCBMINAVG);
653
654 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000655 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200656 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
657 new_delay = dev_priv->ips.cur_delay - 1;
658 if (new_delay < dev_priv->ips.max_delay)
659 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000660 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200661 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
662 new_delay = dev_priv->ips.cur_delay + 1;
663 if (new_delay > dev_priv->ips.min_delay)
664 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800665 }
666
Jesse Barnes7648fa92010-05-20 14:28:11 -0700667 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200668 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800669
Daniel Vetter92703882012-08-09 16:46:01 +0200670 spin_unlock_irqrestore(&mchdev_lock, flags);
671
Jesse Barnesf97108d2010-01-29 11:27:07 -0800672 return;
673}
674
Chris Wilson549f7362010-10-19 11:19:32 +0100675static void notify_ring(struct drm_device *dev,
676 struct intel_ring_buffer *ring)
677{
678 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9862e602011-01-04 22:22:17 +0000679
Chris Wilson475553d2011-01-20 09:52:56 +0000680 if (ring->obj == NULL)
681 return;
682
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100683 trace_i915_gem_request_complete(ring, ring->get_seqno(ring, false));
Chris Wilson9862e602011-01-04 22:22:17 +0000684
Chris Wilson549f7362010-10-19 11:19:32 +0100685 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700686 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +0100687 dev_priv->gpu_error.hangcheck_count = 0;
688 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +0100689 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700690 }
Chris Wilson549f7362010-10-19 11:19:32 +0100691}
692
Ben Widawsky4912d042011-04-25 11:25:20 -0700693static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800694{
Ben Widawsky4912d042011-04-25 11:25:20 -0700695 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200696 rps.work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700697 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100698 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800699
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200700 spin_lock_irq(&dev_priv->rps.lock);
701 pm_iir = dev_priv->rps.pm_iir;
702 dev_priv->rps.pm_iir = 0;
Ben Widawsky4912d042011-04-25 11:25:20 -0700703 pm_imr = I915_READ(GEN6_PMIMR);
Daniel Vettera9e26412011-09-08 14:00:21 +0200704 I915_WRITE(GEN6_PMIMR, 0);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200705 spin_unlock_irq(&dev_priv->rps.lock);
Ben Widawsky4912d042011-04-25 11:25:20 -0700706
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100707 if ((pm_iir & GEN6_PM_DEFERRED_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800708 return;
709
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700710 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100711
712 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD)
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200713 new_delay = dev_priv->rps.cur_delay + 1;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100714 else
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200715 new_delay = dev_priv->rps.cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800716
Ben Widawsky79249632012-09-07 19:43:42 -0700717 /* sysfs frequency interfaces may have snuck in while servicing the
718 * interrupt
719 */
720 if (!(new_delay > dev_priv->rps.max_delay ||
721 new_delay < dev_priv->rps.min_delay)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -0700722 if (IS_VALLEYVIEW(dev_priv->dev))
723 valleyview_set_rps(dev_priv->dev, new_delay);
724 else
725 gen6_set_rps(dev_priv->dev, new_delay);
Ben Widawsky79249632012-09-07 19:43:42 -0700726 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800727
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700728 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800729}
730
Ben Widawskye3689192012-05-25 16:56:22 -0700731
732/**
733 * ivybridge_parity_work - Workqueue called when a parity error interrupt
734 * occurred.
735 * @work: workqueue struct
736 *
737 * Doesn't actually do anything except notify userspace. As a consequence of
738 * this event, userspace should try to remap the bad rows since statistically
739 * it is likely the same row is more likely to go bad again.
740 */
741static void ivybridge_parity_work(struct work_struct *work)
742{
743 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100744 l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700745 u32 error_status, row, bank, subbank;
746 char *parity_event[5];
747 uint32_t misccpctl;
748 unsigned long flags;
749
750 /* We must turn off DOP level clock gating to access the L3 registers.
751 * In order to prevent a get/put style interface, acquire struct mutex
752 * any time we access those registers.
753 */
754 mutex_lock(&dev_priv->dev->struct_mutex);
755
756 misccpctl = I915_READ(GEN7_MISCCPCTL);
757 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
758 POSTING_READ(GEN7_MISCCPCTL);
759
760 error_status = I915_READ(GEN7_L3CDERRST1);
761 row = GEN7_PARITY_ERROR_ROW(error_status);
762 bank = GEN7_PARITY_ERROR_BANK(error_status);
763 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
764
765 I915_WRITE(GEN7_L3CDERRST1, GEN7_PARITY_ERROR_VALID |
766 GEN7_L3CDERRST1_ENABLE);
767 POSTING_READ(GEN7_L3CDERRST1);
768
769 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
770
771 spin_lock_irqsave(&dev_priv->irq_lock, flags);
772 dev_priv->gt_irq_mask &= ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
773 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
774 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
775
776 mutex_unlock(&dev_priv->dev->struct_mutex);
777
778 parity_event[0] = "L3_PARITY_ERROR=1";
779 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
780 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
781 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
782 parity_event[4] = NULL;
783
784 kobject_uevent_env(&dev_priv->dev->primary->kdev.kobj,
785 KOBJ_CHANGE, parity_event);
786
787 DRM_DEBUG("Parity error: Row = %d, Bank = %d, Sub bank = %d.\n",
788 row, bank, subbank);
789
790 kfree(parity_event[3]);
791 kfree(parity_event[2]);
792 kfree(parity_event[1]);
793}
794
Daniel Vetterd2ba8472012-05-31 14:57:41 +0200795static void ivybridge_handle_parity_error(struct drm_device *dev)
Ben Widawskye3689192012-05-25 16:56:22 -0700796{
797 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
798 unsigned long flags;
799
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700800 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskye3689192012-05-25 16:56:22 -0700801 return;
802
803 spin_lock_irqsave(&dev_priv->irq_lock, flags);
804 dev_priv->gt_irq_mask |= GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
805 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
806 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
807
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100808 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700809}
810
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200811static void snb_gt_irq_handler(struct drm_device *dev,
812 struct drm_i915_private *dev_priv,
813 u32 gt_iir)
814{
815
816 if (gt_iir & (GEN6_RENDER_USER_INTERRUPT |
817 GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT))
818 notify_ring(dev, &dev_priv->ring[RCS]);
819 if (gt_iir & GEN6_BSD_USER_INTERRUPT)
820 notify_ring(dev, &dev_priv->ring[VCS]);
821 if (gt_iir & GEN6_BLITTER_USER_INTERRUPT)
822 notify_ring(dev, &dev_priv->ring[BCS]);
823
824 if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT |
825 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
826 GT_RENDER_CS_ERROR_INTERRUPT)) {
827 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
828 i915_handle_error(dev, false);
829 }
Ben Widawskye3689192012-05-25 16:56:22 -0700830
831 if (gt_iir & GT_GEN7_L3_PARITY_ERROR_INTERRUPT)
832 ivybridge_handle_parity_error(dev);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200833}
834
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100835static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
836 u32 pm_iir)
837{
838 unsigned long flags;
839
840 /*
841 * IIR bits should never already be set because IMR should
842 * prevent an interrupt from being shown in IIR. The warning
843 * displays a case where we've unsafely cleared
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200844 * dev_priv->rps.pm_iir. Although missing an interrupt of the same
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100845 * type is not a problem, it displays a problem in the logic.
846 *
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200847 * The mask bit in IMR is cleared by dev_priv->rps.work.
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100848 */
849
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200850 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200851 dev_priv->rps.pm_iir |= pm_iir;
852 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100853 POSTING_READ(GEN6_PMIMR);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200854 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100855
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200856 queue_work(dev_priv->wq, &dev_priv->rps.work);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100857}
858
Egbert Eichb543fb02013-04-16 13:36:54 +0200859#define HPD_STORM_DETECT_PERIOD 1000
860#define HPD_STORM_THRESHOLD 5
861
Egbert Eichcd569ae2013-04-16 13:36:57 +0200862static inline bool hotplug_irq_storm_detect(struct drm_device *dev,
Egbert Eichb543fb02013-04-16 13:36:54 +0200863 u32 hotplug_trigger,
864 const u32 *hpd)
865{
866 drm_i915_private_t *dev_priv = dev->dev_private;
867 unsigned long irqflags;
868 int i;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200869 bool ret = false;
Egbert Eichb543fb02013-04-16 13:36:54 +0200870
871 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
872
873 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +0200874
Egbert Eichb543fb02013-04-16 13:36:54 +0200875 if (!(hpd[i] & hotplug_trigger) ||
876 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
Egbert Eich142e2392013-04-11 15:57:57 +0200877 dev_priv->hpd_event_bits |= (1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200878 continue;
879
880 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
881 dev_priv->hpd_stats[i].hpd_last_jiffies
882 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
883 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
884 dev_priv->hpd_stats[i].hpd_cnt = 0;
885 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
886 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +0200887 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200888 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200889 ret = true;
Egbert Eichb543fb02013-04-16 13:36:54 +0200890 } else {
891 dev_priv->hpd_stats[i].hpd_cnt++;
892 }
893 }
894
895 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200896
897 return ret;
Egbert Eichb543fb02013-04-16 13:36:54 +0200898}
899
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100900static void gmbus_irq_handler(struct drm_device *dev)
901{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100902 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
903
Daniel Vetter28c70f12012-12-01 13:53:45 +0100904 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100905}
906
Daniel Vetterce99c252012-12-01 13:53:47 +0100907static void dp_aux_irq_handler(struct drm_device *dev)
908{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100909 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
910
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100911 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +0100912}
913
Daniel Vetterff1f5252012-10-02 15:10:55 +0200914static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700915{
916 struct drm_device *dev = (struct drm_device *) arg;
917 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
918 u32 iir, gt_iir, pm_iir;
919 irqreturn_t ret = IRQ_NONE;
920 unsigned long irqflags;
921 int pipe;
922 u32 pipe_stats[I915_MAX_PIPES];
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700923
924 atomic_inc(&dev_priv->irq_received);
925
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700926 while (true) {
927 iir = I915_READ(VLV_IIR);
928 gt_iir = I915_READ(GTIIR);
929 pm_iir = I915_READ(GEN6_PMIIR);
930
931 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
932 goto out;
933
934 ret = IRQ_HANDLED;
935
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200936 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700937
938 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
939 for_each_pipe(pipe) {
940 int reg = PIPESTAT(pipe);
941 pipe_stats[pipe] = I915_READ(reg);
942
943 /*
944 * Clear the PIPE*STAT regs before the IIR
945 */
946 if (pipe_stats[pipe] & 0x8000ffff) {
947 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
948 DRM_DEBUG_DRIVER("pipe %c underrun\n",
949 pipe_name(pipe));
950 I915_WRITE(reg, pipe_stats[pipe]);
951 }
952 }
953 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
954
Jesse Barnes31acc7f2012-06-20 10:53:11 -0700955 for_each_pipe(pipe) {
956 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
957 drm_handle_vblank(dev, pipe);
958
959 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
960 intel_prepare_page_flip(dev, pipe);
961 intel_finish_page_flip(dev, pipe);
962 }
963 }
964
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700965 /* Consume port. Then clear IIR or we'll miss events */
966 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
967 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +0200968 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700969
970 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
971 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +0200972 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200973 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
974 i915_hpd_irq_setup(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700975 queue_work(dev_priv->wq,
976 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200977 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700978 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
979 I915_READ(PORT_HOTPLUG_STAT);
980 }
981
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100982 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
983 gmbus_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700984
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100985 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
986 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700987
988 I915_WRITE(GTIIR, gt_iir);
989 I915_WRITE(GEN6_PMIIR, pm_iir);
990 I915_WRITE(VLV_IIR, iir);
991 }
992
993out:
994 return ret;
995}
996
Adam Jackson23e81d62012-06-06 15:45:44 -0400997static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -0800998{
999 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001000 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001001 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001002
Egbert Eichb543fb02013-04-16 13:36:54 +02001003 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001004 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_ibx))
1005 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +02001006 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001007 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001008 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1009 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1010 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001011 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001012 port_name(port));
1013 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001014
Daniel Vetterce99c252012-12-01 13:53:47 +01001015 if (pch_iir & SDE_AUX_MASK)
1016 dp_aux_irq_handler(dev);
1017
Jesse Barnes776ad802011-01-04 15:09:39 -08001018 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001019 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001020
1021 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1022 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1023
1024 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1025 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1026
1027 if (pch_iir & SDE_POISON)
1028 DRM_ERROR("PCH poison interrupt\n");
1029
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001030 if (pch_iir & SDE_FDI_MASK)
1031 for_each_pipe(pipe)
1032 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1033 pipe_name(pipe),
1034 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001035
1036 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1037 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1038
1039 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1040 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1041
Jesse Barnes776ad802011-01-04 15:09:39 -08001042 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001043 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1044 false))
1045 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1046
1047 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1048 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1049 false))
1050 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1051}
1052
1053static void ivb_err_int_handler(struct drm_device *dev)
1054{
1055 struct drm_i915_private *dev_priv = dev->dev_private;
1056 u32 err_int = I915_READ(GEN7_ERR_INT);
1057
Paulo Zanonide032bf2013-04-12 17:57:58 -03001058 if (err_int & ERR_INT_POISON)
1059 DRM_ERROR("Poison interrupt\n");
1060
Paulo Zanoni86642812013-04-12 17:57:57 -03001061 if (err_int & ERR_INT_FIFO_UNDERRUN_A)
1062 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1063 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1064
1065 if (err_int & ERR_INT_FIFO_UNDERRUN_B)
1066 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1067 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1068
1069 if (err_int & ERR_INT_FIFO_UNDERRUN_C)
1070 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_C, false))
1071 DRM_DEBUG_DRIVER("Pipe C FIFO underrun\n");
1072
1073 I915_WRITE(GEN7_ERR_INT, err_int);
1074}
1075
1076static void cpt_serr_int_handler(struct drm_device *dev)
1077{
1078 struct drm_i915_private *dev_priv = dev->dev_private;
1079 u32 serr_int = I915_READ(SERR_INT);
1080
Paulo Zanonide032bf2013-04-12 17:57:58 -03001081 if (serr_int & SERR_INT_POISON)
1082 DRM_ERROR("PCH poison interrupt\n");
1083
Paulo Zanoni86642812013-04-12 17:57:57 -03001084 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1085 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1086 false))
1087 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1088
1089 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1090 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1091 false))
1092 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1093
1094 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1095 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1096 false))
1097 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1098
1099 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001100}
1101
Adam Jackson23e81d62012-06-06 15:45:44 -04001102static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1103{
1104 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1105 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001106 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001107
Egbert Eichb543fb02013-04-16 13:36:54 +02001108 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001109 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_cpt))
1110 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +02001111 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001112 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001113 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1114 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1115 SDE_AUDIO_POWER_SHIFT_CPT);
1116 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1117 port_name(port));
1118 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001119
1120 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001121 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001122
1123 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001124 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001125
1126 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1127 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1128
1129 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1130 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1131
1132 if (pch_iir & SDE_FDI_MASK_CPT)
1133 for_each_pipe(pipe)
1134 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1135 pipe_name(pipe),
1136 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001137
1138 if (pch_iir & SDE_ERROR_CPT)
1139 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001140}
1141
Daniel Vetterff1f5252012-10-02 15:10:55 +02001142static irqreturn_t ivybridge_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001143{
1144 struct drm_device *dev = (struct drm_device *) arg;
1145 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskyab5c6082013-04-05 13:12:41 -07001146 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01001147 irqreturn_t ret = IRQ_NONE;
1148 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001149
1150 atomic_inc(&dev_priv->irq_received);
1151
Paulo Zanoni86642812013-04-12 17:57:57 -03001152 /* We get interrupts on unclaimed registers, so check for this before we
1153 * do any I915_{READ,WRITE}. */
1154 if (IS_HASWELL(dev) &&
1155 (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
1156 DRM_ERROR("Unclaimed register before interrupt\n");
1157 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
1158 }
1159
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001160 /* disable master interrupt before clearing iir */
1161 de_ier = I915_READ(DEIER);
1162 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +01001163
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001164 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1165 * interrupts will will be stored on its back queue, and then we'll be
1166 * able to process them after we restore SDEIER (as soon as we restore
1167 * it, we'll get an interrupt if SDEIIR still has something to process
1168 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001169 if (!HAS_PCH_NOP(dev)) {
1170 sde_ier = I915_READ(SDEIER);
1171 I915_WRITE(SDEIER, 0);
1172 POSTING_READ(SDEIER);
1173 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001174
Paulo Zanoni86642812013-04-12 17:57:57 -03001175 /* On Haswell, also mask ERR_INT because we don't want to risk
1176 * generating "unclaimed register" interrupts from inside the interrupt
1177 * handler. */
1178 if (IS_HASWELL(dev))
1179 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
1180
Chris Wilson0e434062012-05-09 21:45:44 +01001181 gt_iir = I915_READ(GTIIR);
1182 if (gt_iir) {
1183 snb_gt_irq_handler(dev, dev_priv, gt_iir);
1184 I915_WRITE(GTIIR, gt_iir);
1185 ret = IRQ_HANDLED;
1186 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001187
1188 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001189 if (de_iir) {
Paulo Zanoni86642812013-04-12 17:57:57 -03001190 if (de_iir & DE_ERR_INT_IVB)
1191 ivb_err_int_handler(dev);
1192
Daniel Vetterce99c252012-12-01 13:53:47 +01001193 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1194 dp_aux_irq_handler(dev);
1195
Chris Wilson0e434062012-05-09 21:45:44 +01001196 if (de_iir & DE_GSE_IVB)
1197 intel_opregion_gse_intr(dev);
1198
1199 for (i = 0; i < 3; i++) {
Daniel Vetter74d44442012-10-02 17:54:35 +02001200 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1201 drm_handle_vblank(dev, i);
Chris Wilson0e434062012-05-09 21:45:44 +01001202 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1203 intel_prepare_page_flip(dev, i);
1204 intel_finish_page_flip_plane(dev, i);
1205 }
Chris Wilson0e434062012-05-09 21:45:44 +01001206 }
1207
1208 /* check event from PCH */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001209 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
Chris Wilson0e434062012-05-09 21:45:44 +01001210 u32 pch_iir = I915_READ(SDEIIR);
1211
Adam Jackson23e81d62012-06-06 15:45:44 -04001212 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001213
1214 /* clear PCH hotplug event before clear CPU irq */
1215 I915_WRITE(SDEIIR, pch_iir);
1216 }
1217
1218 I915_WRITE(DEIIR, de_iir);
1219 ret = IRQ_HANDLED;
1220 }
1221
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001222 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001223 if (pm_iir) {
1224 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
1225 gen6_queue_rps_work(dev_priv, pm_iir);
1226 I915_WRITE(GEN6_PMIIR, pm_iir);
1227 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001228 }
1229
Paulo Zanoni86642812013-04-12 17:57:57 -03001230 if (IS_HASWELL(dev) && ivb_can_enable_err_int(dev))
1231 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
1232
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001233 I915_WRITE(DEIER, de_ier);
1234 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07001235 if (!HAS_PCH_NOP(dev)) {
1236 I915_WRITE(SDEIER, sde_ier);
1237 POSTING_READ(SDEIER);
1238 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001239
1240 return ret;
1241}
1242
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001243static void ilk_gt_irq_handler(struct drm_device *dev,
1244 struct drm_i915_private *dev_priv,
1245 u32 gt_iir)
1246{
1247 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
1248 notify_ring(dev, &dev_priv->ring[RCS]);
1249 if (gt_iir & GT_BSD_USER_INTERRUPT)
1250 notify_ring(dev, &dev_priv->ring[VCS]);
1251}
1252
Daniel Vetterff1f5252012-10-02 15:10:55 +02001253static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001254{
Jesse Barnes46979952011-04-07 13:53:55 -07001255 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001256 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1257 int ret = IRQ_NONE;
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001258 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001259
Jesse Barnes46979952011-04-07 13:53:55 -07001260 atomic_inc(&dev_priv->irq_received);
1261
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001262 /* disable master interrupt before clearing iir */
1263 de_ier = I915_READ(DEIER);
1264 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001265 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001266
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001267 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1268 * interrupts will will be stored on its back queue, and then we'll be
1269 * able to process them after we restore SDEIER (as soon as we restore
1270 * it, we'll get an interrupt if SDEIIR still has something to process
1271 * due to its back queue). */
1272 sde_ier = I915_READ(SDEIER);
1273 I915_WRITE(SDEIER, 0);
1274 POSTING_READ(SDEIER);
1275
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001276 de_iir = I915_READ(DEIIR);
1277 gt_iir = I915_READ(GTIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001278 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001279
Daniel Vetteracd15b62012-11-30 11:24:50 +01001280 if (de_iir == 0 && gt_iir == 0 && (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +08001281 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001282
Zou Nan haic7c85102010-01-15 10:29:06 +08001283 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001284
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001285 if (IS_GEN5(dev))
1286 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
1287 else
1288 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001289
Daniel Vetterce99c252012-12-01 13:53:47 +01001290 if (de_iir & DE_AUX_CHANNEL_A)
1291 dp_aux_irq_handler(dev);
1292
Zou Nan haic7c85102010-01-15 10:29:06 +08001293 if (de_iir & DE_GSE)
Chris Wilson3b617962010-08-24 09:02:58 +01001294 intel_opregion_gse_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +08001295
Daniel Vetter74d44442012-10-02 17:54:35 +02001296 if (de_iir & DE_PIPEA_VBLANK)
1297 drm_handle_vblank(dev, 0);
1298
1299 if (de_iir & DE_PIPEB_VBLANK)
1300 drm_handle_vblank(dev, 1);
1301
Paulo Zanonide032bf2013-04-12 17:57:58 -03001302 if (de_iir & DE_POISON)
1303 DRM_ERROR("Poison interrupt\n");
1304
Paulo Zanoni86642812013-04-12 17:57:57 -03001305 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1306 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1307 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1308
1309 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1310 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1311 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1312
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001313 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001314 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +01001315 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001316 }
1317
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001318 if (de_iir & DE_PLANEB_FLIP_DONE) {
1319 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +01001320 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001321 }
Li Pengc062df62010-01-23 00:12:58 +08001322
Zou Nan haic7c85102010-01-15 10:29:06 +08001323 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -08001324 if (de_iir & DE_PCH_EVENT) {
Daniel Vetteracd15b62012-11-30 11:24:50 +01001325 u32 pch_iir = I915_READ(SDEIIR);
1326
Adam Jackson23e81d62012-06-06 15:45:44 -04001327 if (HAS_PCH_CPT(dev))
1328 cpt_irq_handler(dev, pch_iir);
1329 else
1330 ibx_irq_handler(dev, pch_iir);
Daniel Vetteracd15b62012-11-30 11:24:50 +01001331
1332 /* should clear PCH hotplug event before clear CPU irq */
1333 I915_WRITE(SDEIIR, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -08001334 }
Zou Nan haic7c85102010-01-15 10:29:06 +08001335
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001336 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
1337 ironlake_handle_rps_change(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001338
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001339 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS)
1340 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001341
Zou Nan haic7c85102010-01-15 10:29:06 +08001342 I915_WRITE(GTIIR, gt_iir);
1343 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -07001344 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001345
1346done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001347 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001348 POSTING_READ(DEIER);
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001349 I915_WRITE(SDEIER, sde_ier);
1350 POSTING_READ(SDEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001351
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001352 return ret;
1353}
1354
Jesse Barnes8a905232009-07-11 16:48:03 -04001355/**
1356 * i915_error_work_func - do process context error handling work
1357 * @work: work struct
1358 *
1359 * Fire an error uevent so userspace can see that a hang or error
1360 * was detected.
1361 */
1362static void i915_error_work_func(struct work_struct *work)
1363{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001364 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1365 work);
1366 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1367 gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04001368 struct drm_device *dev = dev_priv->dev;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001369 struct intel_ring_buffer *ring;
Ben Gamarif316a422009-09-14 17:48:46 -04001370 char *error_event[] = { "ERROR=1", NULL };
1371 char *reset_event[] = { "RESET=1", NULL };
1372 char *reset_done_event[] = { "ERROR=0", NULL };
Daniel Vetterf69061b2012-12-06 09:01:42 +01001373 int i, ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04001374
Ben Gamarif316a422009-09-14 17:48:46 -04001375 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04001376
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001377 /*
1378 * Note that there's only one work item which does gpu resets, so we
1379 * need not worry about concurrent gpu resets potentially incrementing
1380 * error->reset_counter twice. We only need to take care of another
1381 * racing irq/hangcheck declaring the gpu dead for a second time. A
1382 * quick check for that is good enough: schedule_work ensures the
1383 * correct ordering between hang detection and this work item, and since
1384 * the reset in-progress bit is only ever set by code outside of this
1385 * work we don't need to worry about any other races.
1386 */
1387 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01001388 DRM_DEBUG_DRIVER("resetting chip\n");
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001389 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE,
1390 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001391
Daniel Vetterf69061b2012-12-06 09:01:42 +01001392 ret = i915_reset(dev);
1393
1394 if (ret == 0) {
1395 /*
1396 * After all the gem state is reset, increment the reset
1397 * counter and wake up everyone waiting for the reset to
1398 * complete.
1399 *
1400 * Since unlock operations are a one-sided barrier only,
1401 * we need to insert a barrier here to order any seqno
1402 * updates before
1403 * the counter increment.
1404 */
1405 smp_mb__before_atomic_inc();
1406 atomic_inc(&dev_priv->gpu_error.reset_counter);
1407
1408 kobject_uevent_env(&dev->primary->kdev.kobj,
1409 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001410 } else {
1411 atomic_set(&error->reset_counter, I915_WEDGED);
Ben Gamarif316a422009-09-14 17:48:46 -04001412 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001413
Daniel Vetterf69061b2012-12-06 09:01:42 +01001414 for_each_ring(ring, dev_priv, i)
1415 wake_up_all(&ring->irq_queue);
1416
Ville Syrjälä96a02912013-02-18 19:08:49 +02001417 intel_display_handle_reset(dev);
1418
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001419 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04001420 }
Jesse Barnes8a905232009-07-11 16:48:03 -04001421}
1422
Daniel Vetter85f9e502012-08-31 21:42:26 +02001423/* NB: please notice the memset */
1424static void i915_get_extra_instdone(struct drm_device *dev,
1425 uint32_t *instdone)
1426{
1427 struct drm_i915_private *dev_priv = dev->dev_private;
1428 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1429
1430 switch(INTEL_INFO(dev)->gen) {
1431 case 2:
1432 case 3:
1433 instdone[0] = I915_READ(INSTDONE);
1434 break;
1435 case 4:
1436 case 5:
1437 case 6:
1438 instdone[0] = I915_READ(INSTDONE_I965);
1439 instdone[1] = I915_READ(INSTDONE1);
1440 break;
1441 default:
1442 WARN_ONCE(1, "Unsupported platform\n");
1443 case 7:
1444 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1445 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1446 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1447 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1448 break;
1449 }
1450}
1451
Chris Wilson3bd3c932010-08-19 08:19:30 +01001452#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +00001453static struct drm_i915_error_object *
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001454i915_error_object_create_sized(struct drm_i915_private *dev_priv,
1455 struct drm_i915_gem_object *src,
1456 const int num_pages)
Chris Wilson9df30792010-02-18 10:24:56 +00001457{
1458 struct drm_i915_error_object *dst;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001459 int i;
Chris Wilsone56660d2010-08-07 11:01:26 +01001460 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001461
Chris Wilson05394f32010-11-08 19:18:58 +00001462 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +00001463 return NULL;
1464
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001465 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001466 if (dst == NULL)
1467 return NULL;
1468
Chris Wilson05394f32010-11-08 19:18:58 +00001469 reloc_offset = src->gtt_offset;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001470 for (i = 0; i < num_pages; i++) {
Andrew Morton788885a2010-05-11 14:07:05 -07001471 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +01001472 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -07001473
Chris Wilsone56660d2010-08-07 11:01:26 +01001474 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001475 if (d == NULL)
1476 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +01001477
Andrew Morton788885a2010-05-11 14:07:05 -07001478 local_irq_save(flags);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001479 if (reloc_offset < dev_priv->gtt.mappable_end &&
Daniel Vetter74898d72012-02-15 23:50:22 +01001480 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +01001481 void __iomem *s;
1482
1483 /* Simply ignore tiling or any overlapping fence.
1484 * It's part of the error state, and this hopefully
1485 * captures what the GPU read.
1486 */
1487
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001488 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson172975aa2011-12-14 13:57:25 +01001489 reloc_offset);
1490 memcpy_fromio(d, s, PAGE_SIZE);
1491 io_mapping_unmap_atomic(s);
Chris Wilson960e3562012-11-15 11:32:23 +00001492 } else if (src->stolen) {
1493 unsigned long offset;
1494
1495 offset = dev_priv->mm.stolen_base;
1496 offset += src->stolen->start;
1497 offset += i << PAGE_SHIFT;
1498
Daniel Vetter1a240d42012-11-29 22:18:51 +01001499 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
Chris Wilson172975aa2011-12-14 13:57:25 +01001500 } else {
Chris Wilson9da3da62012-06-01 15:20:22 +01001501 struct page *page;
Chris Wilson172975aa2011-12-14 13:57:25 +01001502 void *s;
1503
Chris Wilson9da3da62012-06-01 15:20:22 +01001504 page = i915_gem_object_get_page(src, i);
Chris Wilson172975aa2011-12-14 13:57:25 +01001505
Chris Wilson9da3da62012-06-01 15:20:22 +01001506 drm_clflush_pages(&page, 1);
1507
1508 s = kmap_atomic(page);
Chris Wilson172975aa2011-12-14 13:57:25 +01001509 memcpy(d, s, PAGE_SIZE);
1510 kunmap_atomic(s);
1511
Chris Wilson9da3da62012-06-01 15:20:22 +01001512 drm_clflush_pages(&page, 1);
Chris Wilson172975aa2011-12-14 13:57:25 +01001513 }
Andrew Morton788885a2010-05-11 14:07:05 -07001514 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +01001515
Chris Wilson9da3da62012-06-01 15:20:22 +01001516 dst->pages[i] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +01001517
1518 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +00001519 }
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001520 dst->page_count = num_pages;
Chris Wilson05394f32010-11-08 19:18:58 +00001521 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001522
1523 return dst;
1524
1525unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001526 while (i--)
1527 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001528 kfree(dst);
1529 return NULL;
1530}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001531#define i915_error_object_create(dev_priv, src) \
1532 i915_error_object_create_sized((dev_priv), (src), \
1533 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001534
1535static void
1536i915_error_object_free(struct drm_i915_error_object *obj)
1537{
1538 int page;
1539
1540 if (obj == NULL)
1541 return;
1542
1543 for (page = 0; page < obj->page_count; page++)
1544 kfree(obj->pages[page]);
1545
1546 kfree(obj);
1547}
1548
Daniel Vetter742cbee2012-04-27 15:17:39 +02001549void
1550i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001551{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001552 struct drm_i915_error_state *error = container_of(error_ref,
1553 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001554 int i;
1555
Chris Wilson52d39a22012-02-15 11:25:37 +00001556 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1557 i915_error_object_free(error->ring[i].batchbuffer);
1558 i915_error_object_free(error->ring[i].ringbuffer);
1559 kfree(error->ring[i].requests);
1560 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001561
Chris Wilson9df30792010-02-18 10:24:56 +00001562 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001563 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +00001564 kfree(error);
1565}
Chris Wilson1b502472012-04-24 15:47:30 +01001566static void capture_bo(struct drm_i915_error_buffer *err,
1567 struct drm_i915_gem_object *obj)
1568{
1569 err->size = obj->base.size;
1570 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001571 err->rseqno = obj->last_read_seqno;
1572 err->wseqno = obj->last_write_seqno;
Chris Wilson1b502472012-04-24 15:47:30 +01001573 err->gtt_offset = obj->gtt_offset;
1574 err->read_domains = obj->base.read_domains;
1575 err->write_domain = obj->base.write_domain;
1576 err->fence_reg = obj->fence_reg;
1577 err->pinned = 0;
1578 if (obj->pin_count > 0)
1579 err->pinned = 1;
1580 if (obj->user_pin_count > 0)
1581 err->pinned = -1;
1582 err->tiling = obj->tiling_mode;
1583 err->dirty = obj->dirty;
1584 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1585 err->ring = obj->ring ? obj->ring->id : -1;
1586 err->cache_level = obj->cache_level;
1587}
Chris Wilson9df30792010-02-18 10:24:56 +00001588
Chris Wilson1b502472012-04-24 15:47:30 +01001589static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1590 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001591{
1592 struct drm_i915_gem_object *obj;
1593 int i = 0;
1594
1595 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001596 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001597 if (++i == count)
1598 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001599 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001600
Chris Wilson1b502472012-04-24 15:47:30 +01001601 return i;
1602}
1603
1604static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1605 int count, struct list_head *head)
1606{
1607 struct drm_i915_gem_object *obj;
1608 int i = 0;
1609
1610 list_for_each_entry(obj, head, gtt_list) {
1611 if (obj->pin_count == 0)
1612 continue;
1613
1614 capture_bo(err++, obj);
1615 if (++i == count)
1616 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001617 }
1618
1619 return i;
1620}
1621
Chris Wilson748ebc62010-10-24 10:28:47 +01001622static void i915_gem_record_fences(struct drm_device *dev,
1623 struct drm_i915_error_state *error)
1624{
1625 struct drm_i915_private *dev_priv = dev->dev_private;
1626 int i;
1627
1628 /* Fences */
1629 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001630 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001631 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001632 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001633 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1634 break;
1635 case 5:
1636 case 4:
1637 for (i = 0; i < 16; i++)
1638 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1639 break;
1640 case 3:
1641 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1642 for (i = 0; i < 8; i++)
1643 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1644 case 2:
1645 for (i = 0; i < 8; i++)
1646 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1647 break;
1648
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001649 default:
1650 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001651 }
1652}
1653
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001654static struct drm_i915_error_object *
1655i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1656 struct intel_ring_buffer *ring)
1657{
1658 struct drm_i915_gem_object *obj;
1659 u32 seqno;
1660
1661 if (!ring->get_seqno)
1662 return NULL;
1663
Daniel Vetterb45305f2012-12-17 16:21:27 +01001664 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1665 u32 acthd = I915_READ(ACTHD);
1666
1667 if (WARN_ON(ring->id != RCS))
1668 return NULL;
1669
1670 obj = ring->private;
1671 if (acthd >= obj->gtt_offset &&
1672 acthd < obj->gtt_offset + obj->base.size)
1673 return i915_error_object_create(dev_priv, obj);
1674 }
1675
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001676 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001677 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1678 if (obj->ring != ring)
1679 continue;
1680
Chris Wilson0201f1e2012-07-20 12:41:01 +01001681 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001682 continue;
1683
1684 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1685 continue;
1686
1687 /* We need to copy these to an anonymous buffer as the simplest
1688 * method to avoid being overwritten by userspace.
1689 */
1690 return i915_error_object_create(dev_priv, obj);
1691 }
1692
1693 return NULL;
1694}
1695
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001696static void i915_record_ring_state(struct drm_device *dev,
1697 struct drm_i915_error_state *error,
1698 struct intel_ring_buffer *ring)
1699{
1700 struct drm_i915_private *dev_priv = dev->dev_private;
1701
Daniel Vetter33f3f512011-12-14 13:57:39 +01001702 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001703 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001704 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001705 error->semaphore_mboxes[ring->id][0]
1706 = I915_READ(RING_SYNC_0(ring->mmio_base));
1707 error->semaphore_mboxes[ring->id][1]
1708 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001709 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1710 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001711 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001712
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001713 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001714 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001715 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1716 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1717 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001718 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001719 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001720 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001721 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001722 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001723 error->ipeir[ring->id] = I915_READ(IPEIR);
1724 error->ipehr[ring->id] = I915_READ(IPEHR);
1725 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001726 }
1727
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001728 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001729 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001730 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001731 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001732 error->head[ring->id] = I915_READ_HEAD(ring);
1733 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001734 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001735
1736 error->cpu_ring_head[ring->id] = ring->head;
1737 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001738}
1739
Ben Widawsky8c123e52013-03-04 17:00:29 -08001740
1741static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1742 struct drm_i915_error_state *error,
1743 struct drm_i915_error_ring *ering)
1744{
1745 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1746 struct drm_i915_gem_object *obj;
1747
1748 /* Currently render ring is the only HW context user */
1749 if (ring->id != RCS || !error->ccid)
1750 return;
1751
1752 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list) {
1753 if ((error->ccid & PAGE_MASK) == obj->gtt_offset) {
1754 ering->ctx = i915_error_object_create_sized(dev_priv,
1755 obj, 1);
1756 }
1757 }
1758}
1759
Chris Wilson52d39a22012-02-15 11:25:37 +00001760static void i915_gem_record_rings(struct drm_device *dev,
1761 struct drm_i915_error_state *error)
1762{
1763 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001764 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001765 struct drm_i915_gem_request *request;
1766 int i, count;
1767
Chris Wilsonb4519512012-05-11 14:29:30 +01001768 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001769 i915_record_ring_state(dev, error, ring);
1770
1771 error->ring[i].batchbuffer =
1772 i915_error_first_batchbuffer(dev_priv, ring);
1773
1774 error->ring[i].ringbuffer =
1775 i915_error_object_create(dev_priv, ring->obj);
1776
Ben Widawsky8c123e52013-03-04 17:00:29 -08001777
1778 i915_gem_record_active_context(ring, error, &error->ring[i]);
1779
Chris Wilson52d39a22012-02-15 11:25:37 +00001780 count = 0;
1781 list_for_each_entry(request, &ring->request_list, list)
1782 count++;
1783
1784 error->ring[i].num_requests = count;
1785 error->ring[i].requests =
1786 kmalloc(count*sizeof(struct drm_i915_error_request),
1787 GFP_ATOMIC);
1788 if (error->ring[i].requests == NULL) {
1789 error->ring[i].num_requests = 0;
1790 continue;
1791 }
1792
1793 count = 0;
1794 list_for_each_entry(request, &ring->request_list, list) {
1795 struct drm_i915_error_request *erq;
1796
1797 erq = &error->ring[i].requests[count++];
1798 erq->seqno = request->seqno;
1799 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001800 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001801 }
1802 }
1803}
1804
Jesse Barnes8a905232009-07-11 16:48:03 -04001805/**
1806 * i915_capture_error_state - capture an error record for later analysis
1807 * @dev: drm device
1808 *
1809 * Should be called when an error is detected (either a hang or an error
1810 * interrupt) to capture error state from the time of the error. Fills
1811 * out a structure which becomes available in debugfs for user level tools
1812 * to pick up.
1813 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001814static void i915_capture_error_state(struct drm_device *dev)
1815{
1816 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001817 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001818 struct drm_i915_error_state *error;
1819 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001820 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001821
Daniel Vetter99584db2012-11-14 17:14:04 +01001822 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1823 error = dev_priv->gpu_error.first_error;
1824 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001825 if (error)
1826 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001827
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001828 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001829 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001830 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001831 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1832 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001833 }
1834
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001835 DRM_INFO("capturing error event; look for more information in "
Ben Widawsky2f86f192013-01-28 15:32:15 -08001836 "/sys/kernel/debug/dri/%d/i915_error_state\n",
Chris Wilsonb6f78332011-02-01 14:15:55 +00001837 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001838
Daniel Vetter742cbee2012-04-27 15:17:39 +02001839 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001840 error->eir = I915_READ(EIR);
1841 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001842 if (HAS_HW_CONTEXTS(dev))
1843 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001844
1845 if (HAS_PCH_SPLIT(dev))
1846 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1847 else if (IS_VALLEYVIEW(dev))
1848 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1849 else if (IS_GEN2(dev))
1850 error->ier = I915_READ16(IER);
1851 else
1852 error->ier = I915_READ(IER);
1853
Chris Wilson0f3b6842013-01-15 12:05:55 +00001854 if (INTEL_INFO(dev)->gen >= 6)
1855 error->derrmr = I915_READ(DERRMR);
1856
1857 if (IS_VALLEYVIEW(dev))
1858 error->forcewake = I915_READ(FORCEWAKE_VLV);
1859 else if (INTEL_INFO(dev)->gen >= 7)
1860 error->forcewake = I915_READ(FORCEWAKE_MT);
1861 else if (INTEL_INFO(dev)->gen == 6)
1862 error->forcewake = I915_READ(FORCEWAKE);
1863
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001864 if (!HAS_PCH_SPLIT(dev))
1865 for_each_pipe(pipe)
1866 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001867
Daniel Vetter33f3f512011-12-14 13:57:39 +01001868 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001869 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001870 error->done_reg = I915_READ(DONE_REG);
1871 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001872
Ben Widawsky71e172e2012-08-20 16:15:13 -07001873 if (INTEL_INFO(dev)->gen == 7)
1874 error->err_int = I915_READ(GEN7_ERR_INT);
1875
Ben Widawsky050ee912012-08-22 11:32:15 -07001876 i915_get_extra_instdone(dev, error->extra_instdone);
1877
Chris Wilson748ebc62010-10-24 10:28:47 +01001878 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001879 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001880
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001881 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001882 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001883 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001884
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001885 i = 0;
1886 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1887 i++;
1888 error->active_bo_count = i;
Chris Wilson6c085a72012-08-20 11:40:46 +02001889 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list)
Chris Wilson1b502472012-04-24 15:47:30 +01001890 if (obj->pin_count)
1891 i++;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001892 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001893
Chris Wilson8e934db2011-01-24 12:34:00 +00001894 error->active_bo = NULL;
1895 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001896 if (i) {
1897 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001898 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001899 if (error->active_bo)
1900 error->pinned_bo =
1901 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001902 }
1903
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001904 if (error->active_bo)
1905 error->active_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001906 capture_active_bo(error->active_bo,
1907 error->active_bo_count,
1908 &dev_priv->mm.active_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001909
1910 if (error->pinned_bo)
1911 error->pinned_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001912 capture_pinned_bo(error->pinned_bo,
1913 error->pinned_bo_count,
Chris Wilson6c085a72012-08-20 11:40:46 +02001914 &dev_priv->mm.bound_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001915
Jesse Barnes8a905232009-07-11 16:48:03 -04001916 do_gettimeofday(&error->time);
1917
Chris Wilson6ef3d422010-08-04 20:26:07 +01001918 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001919 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001920
Daniel Vetter99584db2012-11-14 17:14:04 +01001921 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1922 if (dev_priv->gpu_error.first_error == NULL) {
1923 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00001924 error = NULL;
1925 }
Daniel Vetter99584db2012-11-14 17:14:04 +01001926 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001927
1928 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001929 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001930}
1931
1932void i915_destroy_error_state(struct drm_device *dev)
1933{
1934 struct drm_i915_private *dev_priv = dev->dev_private;
1935 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001936 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001937
Daniel Vetter99584db2012-11-14 17:14:04 +01001938 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1939 error = dev_priv->gpu_error.first_error;
1940 dev_priv->gpu_error.first_error = NULL;
1941 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001942
1943 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001944 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001945}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001946#else
1947#define i915_capture_error_state(x)
1948#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001949
Chris Wilson35aed2e2010-05-27 13:18:12 +01001950static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04001951{
1952 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07001953 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04001954 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07001955 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04001956
Chris Wilson35aed2e2010-05-27 13:18:12 +01001957 if (!eir)
1958 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04001959
Joe Perchesa70491c2012-03-18 13:00:11 -07001960 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04001961
Ben Widawskybd9854f2012-08-23 15:18:09 -07001962 i915_get_extra_instdone(dev, instdone);
1963
Jesse Barnes8a905232009-07-11 16:48:03 -04001964 if (IS_G4X(dev)) {
1965 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1966 u32 ipeir = I915_READ(IPEIR_I965);
1967
Joe Perchesa70491c2012-03-18 13:00:11 -07001968 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1969 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07001970 for (i = 0; i < ARRAY_SIZE(instdone); i++)
1971 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07001972 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07001973 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001974 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001975 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001976 }
1977 if (eir & GM45_ERROR_PAGE_TABLE) {
1978 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001979 pr_err("page table error\n");
1980 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001981 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001982 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001983 }
1984 }
1985
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001986 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001987 if (eir & I915_ERROR_PAGE_TABLE) {
1988 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001989 pr_err("page table error\n");
1990 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001991 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001992 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001993 }
1994 }
1995
1996 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07001997 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001998 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07001999 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002000 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002001 /* pipestat has already been acked */
2002 }
2003 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002004 pr_err("instruction error\n");
2005 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002006 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2007 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002008 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002009 u32 ipeir = I915_READ(IPEIR);
2010
Joe Perchesa70491c2012-03-18 13:00:11 -07002011 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2012 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002013 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002014 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002015 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002016 } else {
2017 u32 ipeir = I915_READ(IPEIR_I965);
2018
Joe Perchesa70491c2012-03-18 13:00:11 -07002019 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2020 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002021 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002022 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002023 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002024 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002025 }
2026 }
2027
2028 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002029 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002030 eir = I915_READ(EIR);
2031 if (eir) {
2032 /*
2033 * some errors might have become stuck,
2034 * mask them.
2035 */
2036 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2037 I915_WRITE(EMR, I915_READ(EMR) | eir);
2038 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2039 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002040}
2041
2042/**
2043 * i915_handle_error - handle an error interrupt
2044 * @dev: drm device
2045 *
2046 * Do some basic checking of regsiter state at error interrupt time and
2047 * dump it to the syslog. Also call i915_capture_error_state() to make
2048 * sure we get a record and make it available in debugfs. Fire a uevent
2049 * so userspace knows something bad happened (should trigger collection
2050 * of a ring dump etc.).
2051 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002052void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002053{
2054 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002055 struct intel_ring_buffer *ring;
2056 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002057
2058 i915_capture_error_state(dev);
2059 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002060
Ben Gamariba1234d2009-09-14 17:48:47 -04002061 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002062 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2063 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002064
Ben Gamari11ed50e2009-09-14 17:48:45 -04002065 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002066 * Wakeup waiting processes so that the reset work item
2067 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002068 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002069 for_each_ring(ring, dev_priv, i)
2070 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002071 }
2072
Daniel Vetter99584db2012-11-14 17:14:04 +01002073 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002074}
2075
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002076static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002077{
2078 drm_i915_private_t *dev_priv = dev->dev_private;
2079 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2080 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002081 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002082 struct intel_unpin_work *work;
2083 unsigned long flags;
2084 bool stall_detected;
2085
2086 /* Ignore early vblank irqs */
2087 if (intel_crtc == NULL)
2088 return;
2089
2090 spin_lock_irqsave(&dev->event_lock, flags);
2091 work = intel_crtc->unpin_work;
2092
Chris Wilsone7d841c2012-12-03 11:36:30 +00002093 if (work == NULL ||
2094 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2095 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002096 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2097 spin_unlock_irqrestore(&dev->event_lock, flags);
2098 return;
2099 }
2100
2101 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002102 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002103 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002104 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002105 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
2106 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002107 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002108 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00002109 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002110 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002111 crtc->x * crtc->fb->bits_per_pixel/8);
2112 }
2113
2114 spin_unlock_irqrestore(&dev->event_lock, flags);
2115
2116 if (stall_detected) {
2117 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2118 intel_prepare_page_flip(dev, intel_crtc->plane);
2119 }
2120}
2121
Keith Packard42f52ef2008-10-18 19:39:29 -07002122/* Called from drm generic code, passed 'crtc' which
2123 * we use as a pipe index
2124 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002125static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002126{
2127 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002128 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002129
Chris Wilson5eddb702010-09-11 13:48:45 +01002130 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002131 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002132
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002133 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002134 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002135 i915_enable_pipestat(dev_priv, pipe,
2136 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002137 else
Keith Packard7c463582008-11-04 02:03:27 -08002138 i915_enable_pipestat(dev_priv, pipe,
2139 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002140
2141 /* maintain vblank delivery even in deep C-states */
2142 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002143 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002144 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002145
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002146 return 0;
2147}
2148
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002149static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002150{
2151 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2152 unsigned long irqflags;
2153
2154 if (!i915_pipe_enabled(dev, pipe))
2155 return -EINVAL;
2156
2157 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2158 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002159 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002160 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2161
2162 return 0;
2163}
2164
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002165static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002166{
2167 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2168 unsigned long irqflags;
2169
2170 if (!i915_pipe_enabled(dev, pipe))
2171 return -EINVAL;
2172
2173 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002174 ironlake_enable_display_irq(dev_priv,
2175 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002176 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2177
2178 return 0;
2179}
2180
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002181static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2182{
2183 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2184 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002185 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002186
2187 if (!i915_pipe_enabled(dev, pipe))
2188 return -EINVAL;
2189
2190 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002191 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002192 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002193 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002194 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002195 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002196 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002197 i915_enable_pipestat(dev_priv, pipe,
2198 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002199 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2200
2201 return 0;
2202}
2203
Keith Packard42f52ef2008-10-18 19:39:29 -07002204/* Called from drm generic code, passed 'crtc' which
2205 * we use as a pipe index
2206 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002207static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002208{
2209 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002210 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002211
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002212 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002213 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002214 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002215
Jesse Barnesf796cf82011-04-07 13:58:17 -07002216 i915_disable_pipestat(dev_priv, pipe,
2217 PIPE_VBLANK_INTERRUPT_ENABLE |
2218 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2219 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2220}
2221
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002222static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002223{
2224 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2225 unsigned long irqflags;
2226
2227 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2228 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002229 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002230 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002231}
2232
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002233static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002234{
2235 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2236 unsigned long irqflags;
2237
2238 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002239 ironlake_disable_display_irq(dev_priv,
2240 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002241 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2242}
2243
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002244static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2245{
2246 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2247 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002248 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002249
2250 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002251 i915_disable_pipestat(dev_priv, pipe,
2252 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002253 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002254 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002255 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002256 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002257 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002258 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002259 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2260}
2261
Chris Wilson893eead2010-10-27 14:44:35 +01002262static u32
2263ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002264{
Chris Wilson893eead2010-10-27 14:44:35 +01002265 return list_entry(ring->request_list.prev,
2266 struct drm_i915_gem_request, list)->seqno;
2267}
2268
2269static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
2270{
2271 if (list_empty(&ring->request_list) ||
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002272 i915_seqno_passed(ring->get_seqno(ring, false),
2273 ring_last_seqno(ring))) {
Chris Wilson893eead2010-10-27 14:44:35 +01002274 /* Issue a wake-up to catch stuck h/w. */
Ben Widawsky9574b3f2012-04-26 16:03:01 -07002275 if (waitqueue_active(&ring->irq_queue)) {
2276 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2277 ring->name);
Chris Wilson893eead2010-10-27 14:44:35 +01002278 wake_up_all(&ring->irq_queue);
2279 *err = true;
2280 }
2281 return true;
2282 }
2283 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04002284}
2285
Chris Wilsona24a11e2013-03-14 17:52:05 +02002286static bool semaphore_passed(struct intel_ring_buffer *ring)
2287{
2288 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2289 u32 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
2290 struct intel_ring_buffer *signaller;
2291 u32 cmd, ipehr, acthd_min;
2292
2293 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2294 if ((ipehr & ~(0x3 << 16)) !=
2295 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
2296 return false;
2297
2298 /* ACTHD is likely pointing to the dword after the actual command,
2299 * so scan backwards until we find the MBOX.
2300 */
2301 acthd_min = max((int)acthd - 3 * 4, 0);
2302 do {
2303 cmd = ioread32(ring->virtual_start + acthd);
2304 if (cmd == ipehr)
2305 break;
2306
2307 acthd -= 4;
2308 if (acthd < acthd_min)
2309 return false;
2310 } while (1);
2311
2312 signaller = &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
2313 return i915_seqno_passed(signaller->get_seqno(signaller, false),
2314 ioread32(ring->virtual_start+acthd+4)+1);
2315}
2316
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002317static bool kick_ring(struct intel_ring_buffer *ring)
2318{
2319 struct drm_device *dev = ring->dev;
2320 struct drm_i915_private *dev_priv = dev->dev_private;
2321 u32 tmp = I915_READ_CTL(ring);
2322 if (tmp & RING_WAIT) {
2323 DRM_ERROR("Kicking stuck wait on %s\n",
2324 ring->name);
2325 I915_WRITE_CTL(ring, tmp);
2326 return true;
2327 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002328
2329 if (INTEL_INFO(dev)->gen >= 6 &&
2330 tmp & RING_WAIT_SEMAPHORE &&
2331 semaphore_passed(ring)) {
2332 DRM_ERROR("Kicking stuck semaphore on %s\n",
2333 ring->name);
2334 I915_WRITE_CTL(ring, tmp);
2335 return true;
2336 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002337 return false;
2338}
2339
Chris Wilsond1e61e72012-04-10 17:00:41 +01002340static bool i915_hangcheck_hung(struct drm_device *dev)
2341{
2342 drm_i915_private_t *dev_priv = dev->dev_private;
2343
Daniel Vetter99584db2012-11-14 17:14:04 +01002344 if (dev_priv->gpu_error.hangcheck_count++ > 1) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002345 bool hung = true;
2346
Chris Wilsond1e61e72012-04-10 17:00:41 +01002347 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
2348 i915_handle_error(dev, true);
2349
2350 if (!IS_GEN2(dev)) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002351 struct intel_ring_buffer *ring;
2352 int i;
2353
Chris Wilsond1e61e72012-04-10 17:00:41 +01002354 /* Is the chip hanging on a WAIT_FOR_EVENT?
2355 * If so we can simply poke the RB_WAIT bit
2356 * and break the hang. This should work on
2357 * all but the second generation chipsets.
2358 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002359 for_each_ring(ring, dev_priv, i)
2360 hung &= !kick_ring(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002361 }
2362
Chris Wilsonb4519512012-05-11 14:29:30 +01002363 return hung;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002364 }
2365
2366 return false;
2367}
2368
Ben Gamarif65d9422009-09-14 17:48:44 -04002369/**
2370 * This is called when the chip hasn't reported back with completed
2371 * batchbuffers in a long time. The first time this is called we simply record
2372 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
2373 * again, we assume the chip is wedged and try to fix it.
2374 */
2375void i915_hangcheck_elapsed(unsigned long data)
2376{
2377 struct drm_device *dev = (struct drm_device *)data;
2378 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002379 uint32_t acthd[I915_NUM_RINGS], instdone[I915_NUM_INSTDONE_REG];
Chris Wilsonb4519512012-05-11 14:29:30 +01002380 struct intel_ring_buffer *ring;
2381 bool err = false, idle;
2382 int i;
Chris Wilson893eead2010-10-27 14:44:35 +01002383
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002384 if (!i915_enable_hangcheck)
2385 return;
2386
Chris Wilsonb4519512012-05-11 14:29:30 +01002387 memset(acthd, 0, sizeof(acthd));
2388 idle = true;
2389 for_each_ring(ring, dev_priv, i) {
2390 idle &= i915_hangcheck_ring_idle(ring, &err);
2391 acthd[i] = intel_ring_get_active_head(ring);
2392 }
2393
Chris Wilson893eead2010-10-27 14:44:35 +01002394 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002395 if (idle) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002396 if (err) {
2397 if (i915_hangcheck_hung(dev))
2398 return;
2399
Chris Wilson893eead2010-10-27 14:44:35 +01002400 goto repeat;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002401 }
2402
Daniel Vetter99584db2012-11-14 17:14:04 +01002403 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilson893eead2010-10-27 14:44:35 +01002404 return;
2405 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002406
Ben Widawskybd9854f2012-08-23 15:18:09 -07002407 i915_get_extra_instdone(dev, instdone);
Daniel Vetter99584db2012-11-14 17:14:04 +01002408 if (memcmp(dev_priv->gpu_error.last_acthd, acthd,
2409 sizeof(acthd)) == 0 &&
2410 memcmp(dev_priv->gpu_error.prev_instdone, instdone,
2411 sizeof(instdone)) == 0) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002412 if (i915_hangcheck_hung(dev))
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002413 return;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002414 } else {
Daniel Vetter99584db2012-11-14 17:14:04 +01002415 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002416
Daniel Vetter99584db2012-11-14 17:14:04 +01002417 memcpy(dev_priv->gpu_error.last_acthd, acthd,
2418 sizeof(acthd));
2419 memcpy(dev_priv->gpu_error.prev_instdone, instdone,
2420 sizeof(instdone));
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002421 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002422
Chris Wilson893eead2010-10-27 14:44:35 +01002423repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04002424 /* Reset timer case chip hangs without another request being added */
Daniel Vetter99584db2012-11-14 17:14:04 +01002425 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +01002426 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002427}
2428
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429/* drm_dma.h hooks
2430*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002431static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002432{
2433 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2434
Jesse Barnes46979952011-04-07 13:53:55 -07002435 atomic_set(&dev_priv->irq_received, 0);
2436
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002437 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002438
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002439 /* XXX hotplug from PCH */
2440
2441 I915_WRITE(DEIMR, 0xffffffff);
2442 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002443 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002444
2445 /* and GT */
2446 I915_WRITE(GTIMR, 0xffffffff);
2447 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002448 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002449
Ben Widawskyab5c6082013-04-05 13:12:41 -07002450 if (HAS_PCH_NOP(dev))
2451 return;
2452
Zhenyu Wangc6501562009-11-03 18:57:21 +00002453 /* south display irq */
2454 I915_WRITE(SDEIMR, 0xffffffff);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002455 /*
2456 * SDEIER is also touched by the interrupt handler to work around missed
2457 * PCH interrupts. Hence we can't update it after the interrupt handler
2458 * is enabled - instead we unconditionally enable all PCH interrupt
2459 * sources here, but then only unmask them as needed with SDEIMR.
2460 */
2461 I915_WRITE(SDEIER, 0xffffffff);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002462 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002463}
2464
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002465static void valleyview_irq_preinstall(struct drm_device *dev)
2466{
2467 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2468 int pipe;
2469
2470 atomic_set(&dev_priv->irq_received, 0);
2471
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002472 /* VLV magic */
2473 I915_WRITE(VLV_IMR, 0);
2474 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2475 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2476 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2477
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002478 /* and GT */
2479 I915_WRITE(GTIIR, I915_READ(GTIIR));
2480 I915_WRITE(GTIIR, I915_READ(GTIIR));
2481 I915_WRITE(GTIMR, 0xffffffff);
2482 I915_WRITE(GTIER, 0x0);
2483 POSTING_READ(GTIER);
2484
2485 I915_WRITE(DPINVGTT, 0xff);
2486
2487 I915_WRITE(PORT_HOTPLUG_EN, 0);
2488 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2489 for_each_pipe(pipe)
2490 I915_WRITE(PIPESTAT(pipe), 0xffff);
2491 I915_WRITE(VLV_IIR, 0xffffffff);
2492 I915_WRITE(VLV_IMR, 0xffffffff);
2493 I915_WRITE(VLV_IER, 0x0);
2494 POSTING_READ(VLV_IER);
2495}
2496
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002497static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002498{
2499 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002500 struct drm_mode_config *mode_config = &dev->mode_config;
2501 struct intel_encoder *intel_encoder;
2502 u32 mask = ~I915_READ(SDEIMR);
2503 u32 hotplug;
Keith Packard7fe0b972011-09-19 13:31:02 -07002504
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002505 if (HAS_PCH_IBX(dev)) {
Egbert Eich995e6b32013-04-16 13:36:56 +02002506 mask &= ~SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002507 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002508 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2509 mask |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002510 } else {
Egbert Eich995e6b32013-04-16 13:36:56 +02002511 mask &= ~SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002512 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002513 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2514 mask |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002515 }
2516
2517 I915_WRITE(SDEIMR, ~mask);
2518
2519 /*
2520 * Enable digital hotplug on the PCH, and configure the DP short pulse
2521 * duration to 2ms (which is the minimum in the Display Port spec)
2522 *
2523 * This register is the same on all known PCH chips.
2524 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002525 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2526 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2527 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2528 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2529 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2530 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2531}
2532
Paulo Zanonid46da432013-02-08 17:35:15 -02002533static void ibx_irq_postinstall(struct drm_device *dev)
2534{
2535 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002536 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002537
Paulo Zanoni86642812013-04-12 17:57:57 -03002538 if (HAS_PCH_IBX(dev)) {
2539 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002540 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002541 } else {
2542 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2543
2544 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2545 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002546
2547 if (HAS_PCH_NOP(dev))
2548 return;
2549
Paulo Zanonid46da432013-02-08 17:35:15 -02002550 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2551 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002552}
2553
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002554static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002555{
2556 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2557 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002558 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002559 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002560 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002561 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002562 u32 render_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002563
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002564 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002565
2566 /* should always can generate irq */
2567 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002568 I915_WRITE(DEIMR, dev_priv->irq_mask);
2569 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002570 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002571
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002572 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002573
2574 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002575 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002576
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002577 if (IS_GEN6(dev))
2578 render_irqs =
2579 GT_USER_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002580 GEN6_BSD_USER_INTERRUPT |
2581 GEN6_BLITTER_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002582 else
2583 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00002584 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00002585 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002586 GT_BSD_USER_INTERRUPT;
2587 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002588 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002589
Paulo Zanonid46da432013-02-08 17:35:15 -02002590 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002591
Jesse Barnesf97108d2010-01-29 11:27:07 -08002592 if (IS_IRONLAKE_M(dev)) {
2593 /* Clear & enable PCU event interrupts */
2594 I915_WRITE(DEIIR, DE_PCU_EVENT);
2595 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
2596 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
2597 }
2598
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002599 return 0;
2600}
2601
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002602static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002603{
2604 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2605 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002606 u32 display_mask =
2607 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2608 DE_PLANEC_FLIP_DONE_IVB |
2609 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002610 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002611 DE_AUX_CHANNEL_A_IVB |
2612 DE_ERR_INT_IVB;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002613 u32 render_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002614
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002615 dev_priv->irq_mask = ~display_mask;
2616
2617 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002618 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002619 I915_WRITE(DEIIR, I915_READ(DEIIR));
2620 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002621 I915_WRITE(DEIER,
2622 display_mask |
2623 DE_PIPEC_VBLANK_IVB |
2624 DE_PIPEB_VBLANK_IVB |
2625 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002626 POSTING_READ(DEIER);
2627
Ben Widawsky15b9f802012-05-25 16:56:23 -07002628 dev_priv->gt_irq_mask = ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002629
2630 I915_WRITE(GTIIR, I915_READ(GTIIR));
2631 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2632
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002633 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
Ben Widawsky15b9f802012-05-25 16:56:23 -07002634 GEN6_BLITTER_USER_INTERRUPT | GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002635 I915_WRITE(GTIER, render_irqs);
2636 POSTING_READ(GTIER);
2637
Paulo Zanonid46da432013-02-08 17:35:15 -02002638 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002639
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002640 return 0;
2641}
2642
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002643static int valleyview_irq_postinstall(struct drm_device *dev)
2644{
2645 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002646 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002647 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002648 u32 render_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002649 u16 msid;
2650
2651 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002652 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2653 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2654 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002655 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2656
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002657 /*
2658 *Leave vblank interrupts masked initially. enable/disable will
2659 * toggle them based on usage.
2660 */
2661 dev_priv->irq_mask = (~enable_mask) |
2662 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2663 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002664
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002665 /* Hack for broken MSIs on VLV */
2666 pci_write_config_dword(dev_priv->dev->pdev, 0x94, 0xfee00000);
2667 pci_read_config_word(dev->pdev, 0x98, &msid);
2668 msid &= 0xff; /* mask out delivery bits */
2669 msid |= (1<<14);
2670 pci_write_config_word(dev_priv->dev->pdev, 0x98, msid);
2671
Daniel Vetter20afbda2012-12-11 14:05:07 +01002672 I915_WRITE(PORT_HOTPLUG_EN, 0);
2673 POSTING_READ(PORT_HOTPLUG_EN);
2674
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002675 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2676 I915_WRITE(VLV_IER, enable_mask);
2677 I915_WRITE(VLV_IIR, 0xffffffff);
2678 I915_WRITE(PIPESTAT(0), 0xffff);
2679 I915_WRITE(PIPESTAT(1), 0xffff);
2680 POSTING_READ(VLV_IER);
2681
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002682 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002683 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002684 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
2685
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002686 I915_WRITE(VLV_IIR, 0xffffffff);
2687 I915_WRITE(VLV_IIR, 0xffffffff);
2688
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002689 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002690 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002691
2692 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
2693 GEN6_BLITTER_USER_INTERRUPT;
2694 I915_WRITE(GTIER, render_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002695 POSTING_READ(GTIER);
2696
2697 /* ack & enable invalid PTE error interrupts */
2698#if 0 /* FIXME: add support to irq handler for checking these bits */
2699 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2700 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2701#endif
2702
2703 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002704
2705 return 0;
2706}
2707
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002708static void valleyview_irq_uninstall(struct drm_device *dev)
2709{
2710 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2711 int pipe;
2712
2713 if (!dev_priv)
2714 return;
2715
Egbert Eichac4c16c2013-04-16 13:36:58 +02002716 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2717
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002718 for_each_pipe(pipe)
2719 I915_WRITE(PIPESTAT(pipe), 0xffff);
2720
2721 I915_WRITE(HWSTAM, 0xffffffff);
2722 I915_WRITE(PORT_HOTPLUG_EN, 0);
2723 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2724 for_each_pipe(pipe)
2725 I915_WRITE(PIPESTAT(pipe), 0xffff);
2726 I915_WRITE(VLV_IIR, 0xffffffff);
2727 I915_WRITE(VLV_IMR, 0xffffffff);
2728 I915_WRITE(VLV_IER, 0x0);
2729 POSTING_READ(VLV_IER);
2730}
2731
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002732static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002733{
2734 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002735
2736 if (!dev_priv)
2737 return;
2738
Egbert Eichac4c16c2013-04-16 13:36:58 +02002739 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2740
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002741 I915_WRITE(HWSTAM, 0xffffffff);
2742
2743 I915_WRITE(DEIMR, 0xffffffff);
2744 I915_WRITE(DEIER, 0x0);
2745 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002746 if (IS_GEN7(dev))
2747 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002748
2749 I915_WRITE(GTIMR, 0xffffffff);
2750 I915_WRITE(GTIER, 0x0);
2751 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002752
Ben Widawskyab5c6082013-04-05 13:12:41 -07002753 if (HAS_PCH_NOP(dev))
2754 return;
2755
Keith Packard192aac1f2011-09-20 10:12:44 -07002756 I915_WRITE(SDEIMR, 0xffffffff);
2757 I915_WRITE(SDEIER, 0x0);
2758 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002759 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2760 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002761}
2762
Chris Wilsonc2798b12012-04-22 21:13:57 +01002763static void i8xx_irq_preinstall(struct drm_device * dev)
2764{
2765 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2766 int pipe;
2767
2768 atomic_set(&dev_priv->irq_received, 0);
2769
2770 for_each_pipe(pipe)
2771 I915_WRITE(PIPESTAT(pipe), 0);
2772 I915_WRITE16(IMR, 0xffff);
2773 I915_WRITE16(IER, 0x0);
2774 POSTING_READ16(IER);
2775}
2776
2777static int i8xx_irq_postinstall(struct drm_device *dev)
2778{
2779 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2780
Chris Wilsonc2798b12012-04-22 21:13:57 +01002781 I915_WRITE16(EMR,
2782 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2783
2784 /* Unmask the interrupts that we always want on. */
2785 dev_priv->irq_mask =
2786 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2787 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2788 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2789 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2790 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2791 I915_WRITE16(IMR, dev_priv->irq_mask);
2792
2793 I915_WRITE16(IER,
2794 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2795 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2796 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2797 I915_USER_INTERRUPT);
2798 POSTING_READ16(IER);
2799
2800 return 0;
2801}
2802
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002803/*
2804 * Returns true when a page flip has completed.
2805 */
2806static bool i8xx_handle_vblank(struct drm_device *dev,
2807 int pipe, u16 iir)
2808{
2809 drm_i915_private_t *dev_priv = dev->dev_private;
2810 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2811
2812 if (!drm_handle_vblank(dev, pipe))
2813 return false;
2814
2815 if ((iir & flip_pending) == 0)
2816 return false;
2817
2818 intel_prepare_page_flip(dev, pipe);
2819
2820 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2821 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2822 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2823 * the flip is completed (no longer pending). Since this doesn't raise
2824 * an interrupt per se, we watch for the change at vblank.
2825 */
2826 if (I915_READ16(ISR) & flip_pending)
2827 return false;
2828
2829 intel_finish_page_flip(dev, pipe);
2830
2831 return true;
2832}
2833
Daniel Vetterff1f5252012-10-02 15:10:55 +02002834static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01002835{
2836 struct drm_device *dev = (struct drm_device *) arg;
2837 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002838 u16 iir, new_iir;
2839 u32 pipe_stats[2];
2840 unsigned long irqflags;
2841 int irq_received;
2842 int pipe;
2843 u16 flip_mask =
2844 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2845 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2846
2847 atomic_inc(&dev_priv->irq_received);
2848
2849 iir = I915_READ16(IIR);
2850 if (iir == 0)
2851 return IRQ_NONE;
2852
2853 while (iir & ~flip_mask) {
2854 /* Can't rely on pipestat interrupt bit in iir as it might
2855 * have been cleared after the pipestat interrupt was received.
2856 * It doesn't set the bit in iir again, but it still produces
2857 * interrupts (for non-MSI).
2858 */
2859 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2860 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2861 i915_handle_error(dev, false);
2862
2863 for_each_pipe(pipe) {
2864 int reg = PIPESTAT(pipe);
2865 pipe_stats[pipe] = I915_READ(reg);
2866
2867 /*
2868 * Clear the PIPE*STAT regs before the IIR
2869 */
2870 if (pipe_stats[pipe] & 0x8000ffff) {
2871 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2872 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2873 pipe_name(pipe));
2874 I915_WRITE(reg, pipe_stats[pipe]);
2875 irq_received = 1;
2876 }
2877 }
2878 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2879
2880 I915_WRITE16(IIR, iir & ~flip_mask);
2881 new_iir = I915_READ16(IIR); /* Flush posted writes */
2882
Daniel Vetterd05c6172012-04-26 23:28:09 +02002883 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002884
2885 if (iir & I915_USER_INTERRUPT)
2886 notify_ring(dev, &dev_priv->ring[RCS]);
2887
2888 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002889 i8xx_handle_vblank(dev, 0, iir))
2890 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002891
2892 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002893 i8xx_handle_vblank(dev, 1, iir))
2894 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002895
2896 iir = new_iir;
2897 }
2898
2899 return IRQ_HANDLED;
2900}
2901
2902static void i8xx_irq_uninstall(struct drm_device * dev)
2903{
2904 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2905 int pipe;
2906
Chris Wilsonc2798b12012-04-22 21:13:57 +01002907 for_each_pipe(pipe) {
2908 /* Clear enable bits; then clear status bits */
2909 I915_WRITE(PIPESTAT(pipe), 0);
2910 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2911 }
2912 I915_WRITE16(IMR, 0xffff);
2913 I915_WRITE16(IER, 0x0);
2914 I915_WRITE16(IIR, I915_READ16(IIR));
2915}
2916
Chris Wilsona266c7d2012-04-24 22:59:44 +01002917static void i915_irq_preinstall(struct drm_device * dev)
2918{
2919 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2920 int pipe;
2921
2922 atomic_set(&dev_priv->irq_received, 0);
2923
2924 if (I915_HAS_HOTPLUG(dev)) {
2925 I915_WRITE(PORT_HOTPLUG_EN, 0);
2926 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2927 }
2928
Chris Wilson00d98eb2012-04-24 22:59:48 +01002929 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002930 for_each_pipe(pipe)
2931 I915_WRITE(PIPESTAT(pipe), 0);
2932 I915_WRITE(IMR, 0xffffffff);
2933 I915_WRITE(IER, 0x0);
2934 POSTING_READ(IER);
2935}
2936
2937static int i915_irq_postinstall(struct drm_device *dev)
2938{
2939 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01002940 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002941
Chris Wilson38bde182012-04-24 22:59:50 +01002942 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2943
2944 /* Unmask the interrupts that we always want on. */
2945 dev_priv->irq_mask =
2946 ~(I915_ASLE_INTERRUPT |
2947 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2948 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2949 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2950 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2951 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2952
2953 enable_mask =
2954 I915_ASLE_INTERRUPT |
2955 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2956 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2957 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2958 I915_USER_INTERRUPT;
2959
Chris Wilsona266c7d2012-04-24 22:59:44 +01002960 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01002961 I915_WRITE(PORT_HOTPLUG_EN, 0);
2962 POSTING_READ(PORT_HOTPLUG_EN);
2963
Chris Wilsona266c7d2012-04-24 22:59:44 +01002964 /* Enable in IER... */
2965 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2966 /* and unmask in IMR */
2967 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2968 }
2969
Chris Wilsona266c7d2012-04-24 22:59:44 +01002970 I915_WRITE(IMR, dev_priv->irq_mask);
2971 I915_WRITE(IER, enable_mask);
2972 POSTING_READ(IER);
2973
Daniel Vetter20afbda2012-12-11 14:05:07 +01002974 intel_opregion_enable_asle(dev);
2975
2976 return 0;
2977}
2978
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002979/*
2980 * Returns true when a page flip has completed.
2981 */
2982static bool i915_handle_vblank(struct drm_device *dev,
2983 int plane, int pipe, u32 iir)
2984{
2985 drm_i915_private_t *dev_priv = dev->dev_private;
2986 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
2987
2988 if (!drm_handle_vblank(dev, pipe))
2989 return false;
2990
2991 if ((iir & flip_pending) == 0)
2992 return false;
2993
2994 intel_prepare_page_flip(dev, plane);
2995
2996 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2997 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2998 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2999 * the flip is completed (no longer pending). Since this doesn't raise
3000 * an interrupt per se, we watch for the change at vblank.
3001 */
3002 if (I915_READ(ISR) & flip_pending)
3003 return false;
3004
3005 intel_finish_page_flip(dev, pipe);
3006
3007 return true;
3008}
3009
Daniel Vetterff1f5252012-10-02 15:10:55 +02003010static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003011{
3012 struct drm_device *dev = (struct drm_device *) arg;
3013 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003014 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003015 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003016 u32 flip_mask =
3017 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3018 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003019 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003020
3021 atomic_inc(&dev_priv->irq_received);
3022
3023 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003024 do {
3025 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003026 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003027
3028 /* Can't rely on pipestat interrupt bit in iir as it might
3029 * have been cleared after the pipestat interrupt was received.
3030 * It doesn't set the bit in iir again, but it still produces
3031 * interrupts (for non-MSI).
3032 */
3033 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3034 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3035 i915_handle_error(dev, false);
3036
3037 for_each_pipe(pipe) {
3038 int reg = PIPESTAT(pipe);
3039 pipe_stats[pipe] = I915_READ(reg);
3040
Chris Wilson38bde182012-04-24 22:59:50 +01003041 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003042 if (pipe_stats[pipe] & 0x8000ffff) {
3043 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3044 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3045 pipe_name(pipe));
3046 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003047 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003048 }
3049 }
3050 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3051
3052 if (!irq_received)
3053 break;
3054
Chris Wilsona266c7d2012-04-24 22:59:44 +01003055 /* Consume port. Then clear IIR or we'll miss events */
3056 if ((I915_HAS_HOTPLUG(dev)) &&
3057 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3058 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003059 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003060
3061 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3062 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003063 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003064 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
3065 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003066 queue_work(dev_priv->wq,
3067 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003068 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003069 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003070 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003071 }
3072
Chris Wilson38bde182012-04-24 22:59:50 +01003073 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003074 new_iir = I915_READ(IIR); /* Flush posted writes */
3075
Chris Wilsona266c7d2012-04-24 22:59:44 +01003076 if (iir & I915_USER_INTERRUPT)
3077 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003078
Chris Wilsona266c7d2012-04-24 22:59:44 +01003079 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003080 int plane = pipe;
3081 if (IS_MOBILE(dev))
3082 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003083
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003084 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3085 i915_handle_vblank(dev, plane, pipe, iir))
3086 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003087
3088 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3089 blc_event = true;
3090 }
3091
Chris Wilsona266c7d2012-04-24 22:59:44 +01003092 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3093 intel_opregion_asle_intr(dev);
3094
3095 /* With MSI, interrupts are only generated when iir
3096 * transitions from zero to nonzero. If another bit got
3097 * set while we were handling the existing iir bits, then
3098 * we would never get another interrupt.
3099 *
3100 * This is fine on non-MSI as well, as if we hit this path
3101 * we avoid exiting the interrupt handler only to generate
3102 * another one.
3103 *
3104 * Note that for MSI this could cause a stray interrupt report
3105 * if an interrupt landed in the time between writing IIR and
3106 * the posting read. This should be rare enough to never
3107 * trigger the 99% of 100,000 interrupts test for disabling
3108 * stray interrupts.
3109 */
Chris Wilson38bde182012-04-24 22:59:50 +01003110 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003111 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003112 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003113
Daniel Vetterd05c6172012-04-26 23:28:09 +02003114 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003115
Chris Wilsona266c7d2012-04-24 22:59:44 +01003116 return ret;
3117}
3118
3119static void i915_irq_uninstall(struct drm_device * dev)
3120{
3121 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3122 int pipe;
3123
Egbert Eichac4c16c2013-04-16 13:36:58 +02003124 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3125
Chris Wilsona266c7d2012-04-24 22:59:44 +01003126 if (I915_HAS_HOTPLUG(dev)) {
3127 I915_WRITE(PORT_HOTPLUG_EN, 0);
3128 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3129 }
3130
Chris Wilson00d98eb2012-04-24 22:59:48 +01003131 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003132 for_each_pipe(pipe) {
3133 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003134 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003135 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3136 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003137 I915_WRITE(IMR, 0xffffffff);
3138 I915_WRITE(IER, 0x0);
3139
Chris Wilsona266c7d2012-04-24 22:59:44 +01003140 I915_WRITE(IIR, I915_READ(IIR));
3141}
3142
3143static void i965_irq_preinstall(struct drm_device * dev)
3144{
3145 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3146 int pipe;
3147
3148 atomic_set(&dev_priv->irq_received, 0);
3149
Chris Wilsonadca4732012-05-11 18:01:31 +01003150 I915_WRITE(PORT_HOTPLUG_EN, 0);
3151 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003152
3153 I915_WRITE(HWSTAM, 0xeffe);
3154 for_each_pipe(pipe)
3155 I915_WRITE(PIPESTAT(pipe), 0);
3156 I915_WRITE(IMR, 0xffffffff);
3157 I915_WRITE(IER, 0x0);
3158 POSTING_READ(IER);
3159}
3160
3161static int i965_irq_postinstall(struct drm_device *dev)
3162{
3163 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003164 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003165 u32 error_mask;
3166
Chris Wilsona266c7d2012-04-24 22:59:44 +01003167 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003168 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003169 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003170 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3171 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3172 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3173 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3174 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3175
3176 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003177 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3178 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003179 enable_mask |= I915_USER_INTERRUPT;
3180
3181 if (IS_G4X(dev))
3182 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003183
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003184 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003185
Chris Wilsona266c7d2012-04-24 22:59:44 +01003186 /*
3187 * Enable some error detection, note the instruction error mask
3188 * bit is reserved, so we leave it masked.
3189 */
3190 if (IS_G4X(dev)) {
3191 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3192 GM45_ERROR_MEM_PRIV |
3193 GM45_ERROR_CP_PRIV |
3194 I915_ERROR_MEMORY_REFRESH);
3195 } else {
3196 error_mask = ~(I915_ERROR_PAGE_TABLE |
3197 I915_ERROR_MEMORY_REFRESH);
3198 }
3199 I915_WRITE(EMR, error_mask);
3200
3201 I915_WRITE(IMR, dev_priv->irq_mask);
3202 I915_WRITE(IER, enable_mask);
3203 POSTING_READ(IER);
3204
Daniel Vetter20afbda2012-12-11 14:05:07 +01003205 I915_WRITE(PORT_HOTPLUG_EN, 0);
3206 POSTING_READ(PORT_HOTPLUG_EN);
3207
3208 intel_opregion_enable_asle(dev);
3209
3210 return 0;
3211}
3212
Egbert Eichbac56d52013-02-25 12:06:51 -05003213static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003214{
3215 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003216 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003217 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003218 u32 hotplug_en;
3219
Egbert Eichbac56d52013-02-25 12:06:51 -05003220 if (I915_HAS_HOTPLUG(dev)) {
3221 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3222 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3223 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003224 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003225 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3226 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3227 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003228 /* Programming the CRT detection parameters tends
3229 to generate a spurious hotplug event about three
3230 seconds later. So just do it once.
3231 */
3232 if (IS_G4X(dev))
3233 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003234 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003235 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003236
Egbert Eichbac56d52013-02-25 12:06:51 -05003237 /* Ignore TV since it's buggy */
3238 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3239 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003240}
3241
Daniel Vetterff1f5252012-10-02 15:10:55 +02003242static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003243{
3244 struct drm_device *dev = (struct drm_device *) arg;
3245 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003246 u32 iir, new_iir;
3247 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003248 unsigned long irqflags;
3249 int irq_received;
3250 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003251 u32 flip_mask =
3252 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3253 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003254
3255 atomic_inc(&dev_priv->irq_received);
3256
3257 iir = I915_READ(IIR);
3258
Chris Wilsona266c7d2012-04-24 22:59:44 +01003259 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003260 bool blc_event = false;
3261
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003262 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003263
3264 /* Can't rely on pipestat interrupt bit in iir as it might
3265 * have been cleared after the pipestat interrupt was received.
3266 * It doesn't set the bit in iir again, but it still produces
3267 * interrupts (for non-MSI).
3268 */
3269 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3270 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3271 i915_handle_error(dev, false);
3272
3273 for_each_pipe(pipe) {
3274 int reg = PIPESTAT(pipe);
3275 pipe_stats[pipe] = I915_READ(reg);
3276
3277 /*
3278 * Clear the PIPE*STAT regs before the IIR
3279 */
3280 if (pipe_stats[pipe] & 0x8000ffff) {
3281 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3282 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3283 pipe_name(pipe));
3284 I915_WRITE(reg, pipe_stats[pipe]);
3285 irq_received = 1;
3286 }
3287 }
3288 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3289
3290 if (!irq_received)
3291 break;
3292
3293 ret = IRQ_HANDLED;
3294
3295 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003296 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003297 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003298 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3299 HOTPLUG_INT_STATUS_G4X :
3300 HOTPLUG_INT_STATUS_I965);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003301
3302 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3303 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003304 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003305 if (hotplug_irq_storm_detect(dev, hotplug_trigger,
3306 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i965))
3307 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003308 queue_work(dev_priv->wq,
3309 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003310 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003311 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3312 I915_READ(PORT_HOTPLUG_STAT);
3313 }
3314
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003315 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003316 new_iir = I915_READ(IIR); /* Flush posted writes */
3317
Chris Wilsona266c7d2012-04-24 22:59:44 +01003318 if (iir & I915_USER_INTERRUPT)
3319 notify_ring(dev, &dev_priv->ring[RCS]);
3320 if (iir & I915_BSD_USER_INTERRUPT)
3321 notify_ring(dev, &dev_priv->ring[VCS]);
3322
Chris Wilsona266c7d2012-04-24 22:59:44 +01003323 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003324 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003325 i915_handle_vblank(dev, pipe, pipe, iir))
3326 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003327
3328 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3329 blc_event = true;
3330 }
3331
3332
3333 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3334 intel_opregion_asle_intr(dev);
3335
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003336 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3337 gmbus_irq_handler(dev);
3338
Chris Wilsona266c7d2012-04-24 22:59:44 +01003339 /* With MSI, interrupts are only generated when iir
3340 * transitions from zero to nonzero. If another bit got
3341 * set while we were handling the existing iir bits, then
3342 * we would never get another interrupt.
3343 *
3344 * This is fine on non-MSI as well, as if we hit this path
3345 * we avoid exiting the interrupt handler only to generate
3346 * another one.
3347 *
3348 * Note that for MSI this could cause a stray interrupt report
3349 * if an interrupt landed in the time between writing IIR and
3350 * the posting read. This should be rare enough to never
3351 * trigger the 99% of 100,000 interrupts test for disabling
3352 * stray interrupts.
3353 */
3354 iir = new_iir;
3355 }
3356
Daniel Vetterd05c6172012-04-26 23:28:09 +02003357 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003358
Chris Wilsona266c7d2012-04-24 22:59:44 +01003359 return ret;
3360}
3361
3362static void i965_irq_uninstall(struct drm_device * dev)
3363{
3364 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3365 int pipe;
3366
3367 if (!dev_priv)
3368 return;
3369
Egbert Eichac4c16c2013-04-16 13:36:58 +02003370 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3371
Chris Wilsonadca4732012-05-11 18:01:31 +01003372 I915_WRITE(PORT_HOTPLUG_EN, 0);
3373 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003374
3375 I915_WRITE(HWSTAM, 0xffffffff);
3376 for_each_pipe(pipe)
3377 I915_WRITE(PIPESTAT(pipe), 0);
3378 I915_WRITE(IMR, 0xffffffff);
3379 I915_WRITE(IER, 0x0);
3380
3381 for_each_pipe(pipe)
3382 I915_WRITE(PIPESTAT(pipe),
3383 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3384 I915_WRITE(IIR, I915_READ(IIR));
3385}
3386
Egbert Eichac4c16c2013-04-16 13:36:58 +02003387static void i915_reenable_hotplug_timer_func(unsigned long data)
3388{
3389 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3390 struct drm_device *dev = dev_priv->dev;
3391 struct drm_mode_config *mode_config = &dev->mode_config;
3392 unsigned long irqflags;
3393 int i;
3394
3395 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3396 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3397 struct drm_connector *connector;
3398
3399 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3400 continue;
3401
3402 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3403
3404 list_for_each_entry(connector, &mode_config->connector_list, head) {
3405 struct intel_connector *intel_connector = to_intel_connector(connector);
3406
3407 if (intel_connector->encoder->hpd_pin == i) {
3408 if (connector->polled != intel_connector->polled)
3409 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3410 drm_get_connector_name(connector));
3411 connector->polled = intel_connector->polled;
3412 if (!connector->polled)
3413 connector->polled = DRM_CONNECTOR_POLL_HPD;
3414 }
3415 }
3416 }
3417 if (dev_priv->display.hpd_irq_setup)
3418 dev_priv->display.hpd_irq_setup(dev);
3419 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3420}
3421
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003422void intel_irq_init(struct drm_device *dev)
3423{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003424 struct drm_i915_private *dev_priv = dev->dev_private;
3425
3426 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003427 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003428 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003429 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003430
Daniel Vetter99584db2012-11-14 17:14:04 +01003431 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3432 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003433 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003434 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3435 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003436
Tomas Janousek97a19a22012-12-08 13:48:13 +01003437 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003438
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003439 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3440 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003441 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003442 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3443 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3444 }
3445
Keith Packardc3613de2011-08-12 17:05:54 -07003446 if (drm_core_check_feature(dev, DRIVER_MODESET))
3447 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3448 else
3449 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003450 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3451
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003452 if (IS_VALLEYVIEW(dev)) {
3453 dev->driver->irq_handler = valleyview_irq_handler;
3454 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3455 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3456 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3457 dev->driver->enable_vblank = valleyview_enable_vblank;
3458 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003459 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003460 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003461 /* Share pre & uninstall handlers with ILK/SNB */
3462 dev->driver->irq_handler = ivybridge_irq_handler;
3463 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3464 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3465 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3466 dev->driver->enable_vblank = ivybridge_enable_vblank;
3467 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003468 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003469 } else if (HAS_PCH_SPLIT(dev)) {
3470 dev->driver->irq_handler = ironlake_irq_handler;
3471 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3472 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3473 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3474 dev->driver->enable_vblank = ironlake_enable_vblank;
3475 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003476 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003477 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003478 if (INTEL_INFO(dev)->gen == 2) {
3479 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3480 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3481 dev->driver->irq_handler = i8xx_irq_handler;
3482 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003483 } else if (INTEL_INFO(dev)->gen == 3) {
3484 dev->driver->irq_preinstall = i915_irq_preinstall;
3485 dev->driver->irq_postinstall = i915_irq_postinstall;
3486 dev->driver->irq_uninstall = i915_irq_uninstall;
3487 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003488 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003489 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003490 dev->driver->irq_preinstall = i965_irq_preinstall;
3491 dev->driver->irq_postinstall = i965_irq_postinstall;
3492 dev->driver->irq_uninstall = i965_irq_uninstall;
3493 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003494 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003495 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003496 dev->driver->enable_vblank = i915_enable_vblank;
3497 dev->driver->disable_vblank = i915_disable_vblank;
3498 }
3499}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003500
3501void intel_hpd_init(struct drm_device *dev)
3502{
3503 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003504 struct drm_mode_config *mode_config = &dev->mode_config;
3505 struct drm_connector *connector;
3506 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003507
Egbert Eich821450c2013-04-16 13:36:55 +02003508 for (i = 1; i < HPD_NUM_PINS; i++) {
3509 dev_priv->hpd_stats[i].hpd_cnt = 0;
3510 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3511 }
3512 list_for_each_entry(connector, &mode_config->connector_list, head) {
3513 struct intel_connector *intel_connector = to_intel_connector(connector);
3514 connector->polled = intel_connector->polled;
3515 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3516 connector->polled = DRM_CONNECTOR_POLL_HPD;
3517 }
Daniel Vetter20afbda2012-12-11 14:05:07 +01003518 if (dev_priv->display.hpd_irq_setup)
3519 dev_priv->display.hpd_irq_setup(dev);
3520}