blob: 03a31befa8fd0c453cfc52f3642b7ce4acf288b5 [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/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300352 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000353 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300354static void i915_enable_asle_pipestat(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
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300359 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
360 return;
361
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000362 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000363
Jani Nikulaf8987802013-04-29 13:02:53 +0300364 i915_enable_pipestat(dev_priv, 1, PIPE_LEGACY_BLC_EVENT_ENABLE);
365 if (INTEL_INFO(dev)->gen >= 4)
366 i915_enable_pipestat(dev_priv, 0, PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000367
368 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000369}
370
371/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700372 * i915_pipe_enabled - check if a pipe is enabled
373 * @dev: DRM device
374 * @pipe: pipe to check
375 *
376 * Reading certain registers when the pipe is disabled can hang the chip.
377 * Use this routine to make sure the PLL is running and the pipe is active
378 * before reading such registers if unsure.
379 */
380static int
381i915_pipe_enabled(struct drm_device *dev, int pipe)
382{
383 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200384 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
385 pipe);
386
387 return I915_READ(PIPECONF(cpu_transcoder)) & PIPECONF_ENABLE;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700388}
389
Keith Packard42f52ef2008-10-18 19:39:29 -0700390/* Called from drm generic code, passed a 'crtc', which
391 * we use as a pipe index
392 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700393static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700394{
395 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
396 unsigned long high_frame;
397 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100398 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700399
400 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800401 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800402 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700403 return 0;
404 }
405
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800406 high_frame = PIPEFRAME(pipe);
407 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100408
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700409 /*
410 * High & low register fields aren't synchronized, so make sure
411 * we get a low value that's stable across two reads of the high
412 * register.
413 */
414 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100415 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
416 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
417 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700418 } while (high1 != high2);
419
Chris Wilson5eddb702010-09-11 13:48:45 +0100420 high1 >>= PIPE_FRAME_HIGH_SHIFT;
421 low >>= PIPE_FRAME_LOW_SHIFT;
422 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700423}
424
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700425static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800426{
427 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800428 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800429
430 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800431 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800432 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800433 return 0;
434 }
435
436 return I915_READ(reg);
437}
438
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700439static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100440 int *vpos, int *hpos)
441{
442 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
443 u32 vbl = 0, position = 0;
444 int vbl_start, vbl_end, htotal, vtotal;
445 bool in_vbl = true;
446 int ret = 0;
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200447 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
448 pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100449
450 if (!i915_pipe_enabled(dev, pipe)) {
451 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800452 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100453 return 0;
454 }
455
456 /* Get vtotal. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200457 vtotal = 1 + ((I915_READ(VTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100458
459 if (INTEL_INFO(dev)->gen >= 4) {
460 /* No obvious pixelcount register. Only query vertical
461 * scanout position from Display scan line register.
462 */
463 position = I915_READ(PIPEDSL(pipe));
464
465 /* Decode into vertical scanout position. Don't have
466 * horizontal scanout position.
467 */
468 *vpos = position & 0x1fff;
469 *hpos = 0;
470 } else {
471 /* Have access to pixelcount since start of frame.
472 * We can split this into vertical and horizontal
473 * scanout position.
474 */
475 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
476
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200477 htotal = 1 + ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100478 *vpos = position / htotal;
479 *hpos = position - (*vpos * htotal);
480 }
481
482 /* Query vblank area. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200483 vbl = I915_READ(VBLANK(cpu_transcoder));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100484
485 /* Test position against vblank region. */
486 vbl_start = vbl & 0x1fff;
487 vbl_end = (vbl >> 16) & 0x1fff;
488
489 if ((*vpos < vbl_start) || (*vpos > vbl_end))
490 in_vbl = false;
491
492 /* Inside "upper part" of vblank area? Apply corrective offset: */
493 if (in_vbl && (*vpos >= vbl_start))
494 *vpos = *vpos - vtotal;
495
496 /* Readouts valid? */
497 if (vbl > 0)
498 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
499
500 /* In vblank? */
501 if (in_vbl)
502 ret |= DRM_SCANOUTPOS_INVBL;
503
504 return ret;
505}
506
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700507static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100508 int *max_error,
509 struct timeval *vblank_time,
510 unsigned flags)
511{
Chris Wilson4041b852011-01-22 10:07:56 +0000512 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100513
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700514 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000515 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100516 return -EINVAL;
517 }
518
519 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000520 crtc = intel_get_crtc_for_pipe(dev, pipe);
521 if (crtc == NULL) {
522 DRM_ERROR("Invalid crtc %d\n", pipe);
523 return -EINVAL;
524 }
525
526 if (!crtc->enabled) {
527 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
528 return -EBUSY;
529 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100530
531 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000532 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
533 vblank_time, flags,
534 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100535}
536
Egbert Eich321a1b32013-04-11 16:00:26 +0200537static int intel_hpd_irq_event(struct drm_device *dev, struct drm_connector *connector)
538{
539 enum drm_connector_status old_status;
540
541 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
542 old_status = connector->status;
543
544 connector->status = connector->funcs->detect(connector, false);
545 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
546 connector->base.id,
547 drm_get_connector_name(connector),
548 old_status, connector->status);
549 return (old_status != connector->status);
550}
551
Jesse Barnes5ca58282009-03-31 14:11:15 -0700552/*
553 * Handle hotplug events outside the interrupt handler proper.
554 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200555#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
556
Jesse Barnes5ca58282009-03-31 14:11:15 -0700557static void i915_hotplug_work_func(struct work_struct *work)
558{
559 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
560 hotplug_work);
561 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700562 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200563 struct intel_connector *intel_connector;
564 struct intel_encoder *intel_encoder;
565 struct drm_connector *connector;
566 unsigned long irqflags;
567 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200568 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200569 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700570
Daniel Vetter52d7ece2012-12-01 21:03:22 +0100571 /* HPD irq before everything is fully set up. */
572 if (!dev_priv->enable_hotplug_processing)
573 return;
574
Keith Packarda65e34c2011-07-25 10:04:56 -0700575 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800576 DRM_DEBUG_KMS("running encoder hotplug functions\n");
577
Egbert Eichcd569ae2013-04-16 13:36:57 +0200578 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +0200579
580 hpd_event_bits = dev_priv->hpd_event_bits;
581 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200582 list_for_each_entry(connector, &mode_config->connector_list, head) {
583 intel_connector = to_intel_connector(connector);
584 intel_encoder = intel_connector->encoder;
585 if (intel_encoder->hpd_pin > HPD_NONE &&
586 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
587 connector->polled == DRM_CONNECTOR_POLL_HPD) {
588 DRM_INFO("HPD interrupt storm detected on connector %s: "
589 "switching from hotplug detection to polling\n",
590 drm_get_connector_name(connector));
591 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
592 connector->polled = DRM_CONNECTOR_POLL_CONNECT
593 | DRM_CONNECTOR_POLL_DISCONNECT;
594 hpd_disabled = true;
595 }
Egbert Eich142e2392013-04-11 15:57:57 +0200596 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
597 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
598 drm_get_connector_name(connector), intel_encoder->hpd_pin);
599 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200600 }
601 /* if there were no outputs to poll, poll was disabled,
602 * therefore make sure it's enabled when disabling HPD on
603 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200604 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200605 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +0200606 mod_timer(&dev_priv->hotplug_reenable_timer,
607 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
608 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200609
610 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
611
Egbert Eich321a1b32013-04-11 16:00:26 +0200612 list_for_each_entry(connector, &mode_config->connector_list, head) {
613 intel_connector = to_intel_connector(connector);
614 intel_encoder = intel_connector->encoder;
615 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
616 if (intel_encoder->hot_plug)
617 intel_encoder->hot_plug(intel_encoder);
618 if (intel_hpd_irq_event(dev, connector))
619 changed = true;
620 }
621 }
Keith Packard40ee3382011-07-28 15:31:19 -0700622 mutex_unlock(&mode_config->mutex);
623
Egbert Eich321a1b32013-04-11 16:00:26 +0200624 if (changed)
625 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700626}
627
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200628static void ironlake_handle_rps_change(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800629{
630 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000631 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200632 u8 new_delay;
633 unsigned long flags;
634
635 spin_lock_irqsave(&mchdev_lock, flags);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800636
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200637 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
638
Daniel Vetter20e4d402012-08-08 23:35:39 +0200639 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200640
Jesse Barnes7648fa92010-05-20 14:28:11 -0700641 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000642 busy_up = I915_READ(RCPREVBSYTUPAVG);
643 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800644 max_avg = I915_READ(RCBMAXAVG);
645 min_avg = I915_READ(RCBMINAVG);
646
647 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000648 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200649 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
650 new_delay = dev_priv->ips.cur_delay - 1;
651 if (new_delay < dev_priv->ips.max_delay)
652 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000653 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200654 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
655 new_delay = dev_priv->ips.cur_delay + 1;
656 if (new_delay > dev_priv->ips.min_delay)
657 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800658 }
659
Jesse Barnes7648fa92010-05-20 14:28:11 -0700660 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200661 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800662
Daniel Vetter92703882012-08-09 16:46:01 +0200663 spin_unlock_irqrestore(&mchdev_lock, flags);
664
Jesse Barnesf97108d2010-01-29 11:27:07 -0800665 return;
666}
667
Chris Wilson549f7362010-10-19 11:19:32 +0100668static void notify_ring(struct drm_device *dev,
669 struct intel_ring_buffer *ring)
670{
671 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9862e602011-01-04 22:22:17 +0000672
Chris Wilson475553d2011-01-20 09:52:56 +0000673 if (ring->obj == NULL)
674 return;
675
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100676 trace_i915_gem_request_complete(ring, ring->get_seqno(ring, false));
Chris Wilson9862e602011-01-04 22:22:17 +0000677
Chris Wilson549f7362010-10-19 11:19:32 +0100678 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700679 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +0100680 dev_priv->gpu_error.hangcheck_count = 0;
681 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +0100682 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700683 }
Chris Wilson549f7362010-10-19 11:19:32 +0100684}
685
Ben Widawsky4912d042011-04-25 11:25:20 -0700686static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800687{
Ben Widawsky4912d042011-04-25 11:25:20 -0700688 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200689 rps.work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700690 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100691 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800692
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200693 spin_lock_irq(&dev_priv->rps.lock);
694 pm_iir = dev_priv->rps.pm_iir;
695 dev_priv->rps.pm_iir = 0;
Ben Widawsky4912d042011-04-25 11:25:20 -0700696 pm_imr = I915_READ(GEN6_PMIMR);
Daniel Vettera9e26412011-09-08 14:00:21 +0200697 I915_WRITE(GEN6_PMIMR, 0);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200698 spin_unlock_irq(&dev_priv->rps.lock);
Ben Widawsky4912d042011-04-25 11:25:20 -0700699
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100700 if ((pm_iir & GEN6_PM_DEFERRED_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800701 return;
702
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700703 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100704
705 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD)
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200706 new_delay = dev_priv->rps.cur_delay + 1;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100707 else
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200708 new_delay = dev_priv->rps.cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800709
Ben Widawsky79249632012-09-07 19:43:42 -0700710 /* sysfs frequency interfaces may have snuck in while servicing the
711 * interrupt
712 */
713 if (!(new_delay > dev_priv->rps.max_delay ||
714 new_delay < dev_priv->rps.min_delay)) {
Jesse Barnes0a073b82013-04-17 15:54:58 -0700715 if (IS_VALLEYVIEW(dev_priv->dev))
716 valleyview_set_rps(dev_priv->dev, new_delay);
717 else
718 gen6_set_rps(dev_priv->dev, new_delay);
Ben Widawsky79249632012-09-07 19:43:42 -0700719 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800720
Jesse Barnes52ceb902013-04-23 10:09:26 -0700721 if (IS_VALLEYVIEW(dev_priv->dev)) {
722 /*
723 * On VLV, when we enter RC6 we may not be at the minimum
724 * voltage level, so arm a timer to check. It should only
725 * fire when there's activity or once after we've entered
726 * RC6, and then won't be re-armed until the next RPS interrupt.
727 */
728 mod_delayed_work(dev_priv->wq, &dev_priv->rps.vlv_work,
729 msecs_to_jiffies(100));
730 }
731
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700732 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800733}
734
Ben Widawskye3689192012-05-25 16:56:22 -0700735
736/**
737 * ivybridge_parity_work - Workqueue called when a parity error interrupt
738 * occurred.
739 * @work: workqueue struct
740 *
741 * Doesn't actually do anything except notify userspace. As a consequence of
742 * this event, userspace should try to remap the bad rows since statistically
743 * it is likely the same row is more likely to go bad again.
744 */
745static void ivybridge_parity_work(struct work_struct *work)
746{
747 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100748 l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700749 u32 error_status, row, bank, subbank;
750 char *parity_event[5];
751 uint32_t misccpctl;
752 unsigned long flags;
753
754 /* We must turn off DOP level clock gating to access the L3 registers.
755 * In order to prevent a get/put style interface, acquire struct mutex
756 * any time we access those registers.
757 */
758 mutex_lock(&dev_priv->dev->struct_mutex);
759
760 misccpctl = I915_READ(GEN7_MISCCPCTL);
761 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
762 POSTING_READ(GEN7_MISCCPCTL);
763
764 error_status = I915_READ(GEN7_L3CDERRST1);
765 row = GEN7_PARITY_ERROR_ROW(error_status);
766 bank = GEN7_PARITY_ERROR_BANK(error_status);
767 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
768
769 I915_WRITE(GEN7_L3CDERRST1, GEN7_PARITY_ERROR_VALID |
770 GEN7_L3CDERRST1_ENABLE);
771 POSTING_READ(GEN7_L3CDERRST1);
772
773 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
774
775 spin_lock_irqsave(&dev_priv->irq_lock, flags);
776 dev_priv->gt_irq_mask &= ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
777 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
778 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
779
780 mutex_unlock(&dev_priv->dev->struct_mutex);
781
782 parity_event[0] = "L3_PARITY_ERROR=1";
783 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
784 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
785 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
786 parity_event[4] = NULL;
787
788 kobject_uevent_env(&dev_priv->dev->primary->kdev.kobj,
789 KOBJ_CHANGE, parity_event);
790
791 DRM_DEBUG("Parity error: Row = %d, Bank = %d, Sub bank = %d.\n",
792 row, bank, subbank);
793
794 kfree(parity_event[3]);
795 kfree(parity_event[2]);
796 kfree(parity_event[1]);
797}
798
Daniel Vetterd2ba8472012-05-31 14:57:41 +0200799static void ivybridge_handle_parity_error(struct drm_device *dev)
Ben Widawskye3689192012-05-25 16:56:22 -0700800{
801 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
802 unsigned long flags;
803
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700804 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskye3689192012-05-25 16:56:22 -0700805 return;
806
807 spin_lock_irqsave(&dev_priv->irq_lock, flags);
808 dev_priv->gt_irq_mask |= GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
809 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
810 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
811
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100812 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700813}
814
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200815static void snb_gt_irq_handler(struct drm_device *dev,
816 struct drm_i915_private *dev_priv,
817 u32 gt_iir)
818{
819
820 if (gt_iir & (GEN6_RENDER_USER_INTERRUPT |
821 GEN6_RENDER_PIPE_CONTROL_NOTIFY_INTERRUPT))
822 notify_ring(dev, &dev_priv->ring[RCS]);
823 if (gt_iir & GEN6_BSD_USER_INTERRUPT)
824 notify_ring(dev, &dev_priv->ring[VCS]);
825 if (gt_iir & GEN6_BLITTER_USER_INTERRUPT)
826 notify_ring(dev, &dev_priv->ring[BCS]);
827
828 if (gt_iir & (GT_GEN6_BLT_CS_ERROR_INTERRUPT |
829 GT_GEN6_BSD_CS_ERROR_INTERRUPT |
830 GT_RENDER_CS_ERROR_INTERRUPT)) {
831 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
832 i915_handle_error(dev, false);
833 }
Ben Widawskye3689192012-05-25 16:56:22 -0700834
835 if (gt_iir & GT_GEN7_L3_PARITY_ERROR_INTERRUPT)
836 ivybridge_handle_parity_error(dev);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200837}
838
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100839static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
840 u32 pm_iir)
841{
842 unsigned long flags;
843
844 /*
845 * IIR bits should never already be set because IMR should
846 * prevent an interrupt from being shown in IIR. The warning
847 * displays a case where we've unsafely cleared
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200848 * dev_priv->rps.pm_iir. Although missing an interrupt of the same
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100849 * type is not a problem, it displays a problem in the logic.
850 *
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200851 * The mask bit in IMR is cleared by dev_priv->rps.work.
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100852 */
853
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200854 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200855 dev_priv->rps.pm_iir |= pm_iir;
856 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100857 POSTING_READ(GEN6_PMIMR);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200858 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100859
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200860 queue_work(dev_priv->wq, &dev_priv->rps.work);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100861}
862
Egbert Eichb543fb02013-04-16 13:36:54 +0200863#define HPD_STORM_DETECT_PERIOD 1000
864#define HPD_STORM_THRESHOLD 5
865
Egbert Eichcd569ae2013-04-16 13:36:57 +0200866static inline bool hotplug_irq_storm_detect(struct drm_device *dev,
Egbert Eichb543fb02013-04-16 13:36:54 +0200867 u32 hotplug_trigger,
868 const u32 *hpd)
869{
870 drm_i915_private_t *dev_priv = dev->dev_private;
871 unsigned long irqflags;
872 int i;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200873 bool ret = false;
Egbert Eichb543fb02013-04-16 13:36:54 +0200874
875 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
876
877 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +0200878
Egbert Eichb543fb02013-04-16 13:36:54 +0200879 if (!(hpd[i] & hotplug_trigger) ||
880 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
Egbert Eich142e2392013-04-11 15:57:57 +0200881 dev_priv->hpd_event_bits |= (1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200882 continue;
883
884 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
885 dev_priv->hpd_stats[i].hpd_last_jiffies
886 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
887 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
888 dev_priv->hpd_stats[i].hpd_cnt = 0;
889 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
890 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +0200891 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200892 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200893 ret = true;
Egbert Eichb543fb02013-04-16 13:36:54 +0200894 } else {
895 dev_priv->hpd_stats[i].hpd_cnt++;
896 }
897 }
898
899 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200900
901 return ret;
Egbert Eichb543fb02013-04-16 13:36:54 +0200902}
903
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100904static void gmbus_irq_handler(struct drm_device *dev)
905{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100906 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
907
Daniel Vetter28c70f12012-12-01 13:53:45 +0100908 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100909}
910
Daniel Vetterce99c252012-12-01 13:53:47 +0100911static void dp_aux_irq_handler(struct drm_device *dev)
912{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100913 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
914
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100915 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +0100916}
917
Daniel Vetterff1f5252012-10-02 15:10:55 +0200918static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700919{
920 struct drm_device *dev = (struct drm_device *) arg;
921 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
922 u32 iir, gt_iir, pm_iir;
923 irqreturn_t ret = IRQ_NONE;
924 unsigned long irqflags;
925 int pipe;
926 u32 pipe_stats[I915_MAX_PIPES];
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700927
928 atomic_inc(&dev_priv->irq_received);
929
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700930 while (true) {
931 iir = I915_READ(VLV_IIR);
932 gt_iir = I915_READ(GTIIR);
933 pm_iir = I915_READ(GEN6_PMIIR);
934
935 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
936 goto out;
937
938 ret = IRQ_HANDLED;
939
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200940 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700941
942 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
943 for_each_pipe(pipe) {
944 int reg = PIPESTAT(pipe);
945 pipe_stats[pipe] = I915_READ(reg);
946
947 /*
948 * Clear the PIPE*STAT regs before the IIR
949 */
950 if (pipe_stats[pipe] & 0x8000ffff) {
951 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
952 DRM_DEBUG_DRIVER("pipe %c underrun\n",
953 pipe_name(pipe));
954 I915_WRITE(reg, pipe_stats[pipe]);
955 }
956 }
957 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
958
Jesse Barnes31acc7f2012-06-20 10:53:11 -0700959 for_each_pipe(pipe) {
960 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
961 drm_handle_vblank(dev, pipe);
962
963 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
964 intel_prepare_page_flip(dev, pipe);
965 intel_finish_page_flip(dev, pipe);
966 }
967 }
968
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700969 /* Consume port. Then clear IIR or we'll miss events */
970 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
971 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +0200972 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700973
974 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
975 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +0200976 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200977 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
978 i915_hpd_irq_setup(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700979 queue_work(dev_priv->wq,
980 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200981 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700982 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
983 I915_READ(PORT_HOTPLUG_STAT);
984 }
985
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100986 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
987 gmbus_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700988
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100989 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
990 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700991
992 I915_WRITE(GTIIR, gt_iir);
993 I915_WRITE(GEN6_PMIIR, pm_iir);
994 I915_WRITE(VLV_IIR, iir);
995 }
996
997out:
998 return ret;
999}
1000
Adam Jackson23e81d62012-06-06 15:45:44 -04001001static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001002{
1003 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001004 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001005 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001006
Egbert Eichb543fb02013-04-16 13:36:54 +02001007 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001008 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_ibx))
1009 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +02001010 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001011 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001012 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1013 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1014 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001015 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001016 port_name(port));
1017 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001018
Daniel Vetterce99c252012-12-01 13:53:47 +01001019 if (pch_iir & SDE_AUX_MASK)
1020 dp_aux_irq_handler(dev);
1021
Jesse Barnes776ad802011-01-04 15:09:39 -08001022 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001023 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001024
1025 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1026 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1027
1028 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1029 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1030
1031 if (pch_iir & SDE_POISON)
1032 DRM_ERROR("PCH poison interrupt\n");
1033
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001034 if (pch_iir & SDE_FDI_MASK)
1035 for_each_pipe(pipe)
1036 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1037 pipe_name(pipe),
1038 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001039
1040 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1041 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1042
1043 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1044 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1045
Jesse Barnes776ad802011-01-04 15:09:39 -08001046 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001047 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1048 false))
1049 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1050
1051 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1052 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1053 false))
1054 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1055}
1056
1057static void ivb_err_int_handler(struct drm_device *dev)
1058{
1059 struct drm_i915_private *dev_priv = dev->dev_private;
1060 u32 err_int = I915_READ(GEN7_ERR_INT);
1061
Paulo Zanonide032bf2013-04-12 17:57:58 -03001062 if (err_int & ERR_INT_POISON)
1063 DRM_ERROR("Poison interrupt\n");
1064
Paulo Zanoni86642812013-04-12 17:57:57 -03001065 if (err_int & ERR_INT_FIFO_UNDERRUN_A)
1066 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1067 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1068
1069 if (err_int & ERR_INT_FIFO_UNDERRUN_B)
1070 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1071 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1072
1073 if (err_int & ERR_INT_FIFO_UNDERRUN_C)
1074 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_C, false))
1075 DRM_DEBUG_DRIVER("Pipe C FIFO underrun\n");
1076
1077 I915_WRITE(GEN7_ERR_INT, err_int);
1078}
1079
1080static void cpt_serr_int_handler(struct drm_device *dev)
1081{
1082 struct drm_i915_private *dev_priv = dev->dev_private;
1083 u32 serr_int = I915_READ(SERR_INT);
1084
Paulo Zanonide032bf2013-04-12 17:57:58 -03001085 if (serr_int & SERR_INT_POISON)
1086 DRM_ERROR("PCH poison interrupt\n");
1087
Paulo Zanoni86642812013-04-12 17:57:57 -03001088 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1089 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1090 false))
1091 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1092
1093 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1094 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1095 false))
1096 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1097
1098 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1099 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1100 false))
1101 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1102
1103 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001104}
1105
Adam Jackson23e81d62012-06-06 15:45:44 -04001106static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1107{
1108 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1109 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001110 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001111
Egbert Eichb543fb02013-04-16 13:36:54 +02001112 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001113 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_cpt))
1114 ibx_hpd_irq_setup(dev);
Daniel Vetter76e43832012-10-12 20:14:05 +02001115 queue_work(dev_priv->wq, &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001116 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001117 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1118 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1119 SDE_AUDIO_POWER_SHIFT_CPT);
1120 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1121 port_name(port));
1122 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001123
1124 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001125 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001126
1127 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001128 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001129
1130 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1131 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1132
1133 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1134 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1135
1136 if (pch_iir & SDE_FDI_MASK_CPT)
1137 for_each_pipe(pipe)
1138 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1139 pipe_name(pipe),
1140 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001141
1142 if (pch_iir & SDE_ERROR_CPT)
1143 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001144}
1145
Daniel Vetterff1f5252012-10-02 15:10:55 +02001146static irqreturn_t ivybridge_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001147{
1148 struct drm_device *dev = (struct drm_device *) arg;
1149 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskyab5c6082013-04-05 13:12:41 -07001150 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01001151 irqreturn_t ret = IRQ_NONE;
1152 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001153
1154 atomic_inc(&dev_priv->irq_received);
1155
Paulo Zanoni86642812013-04-12 17:57:57 -03001156 /* We get interrupts on unclaimed registers, so check for this before we
1157 * do any I915_{READ,WRITE}. */
1158 if (IS_HASWELL(dev) &&
1159 (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
1160 DRM_ERROR("Unclaimed register before interrupt\n");
1161 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
1162 }
1163
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001164 /* disable master interrupt before clearing iir */
1165 de_ier = I915_READ(DEIER);
1166 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +01001167
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001168 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1169 * interrupts will will be stored on its back queue, and then we'll be
1170 * able to process them after we restore SDEIER (as soon as we restore
1171 * it, we'll get an interrupt if SDEIIR still has something to process
1172 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001173 if (!HAS_PCH_NOP(dev)) {
1174 sde_ier = I915_READ(SDEIER);
1175 I915_WRITE(SDEIER, 0);
1176 POSTING_READ(SDEIER);
1177 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001178
Paulo Zanoni86642812013-04-12 17:57:57 -03001179 /* On Haswell, also mask ERR_INT because we don't want to risk
1180 * generating "unclaimed register" interrupts from inside the interrupt
1181 * handler. */
1182 if (IS_HASWELL(dev))
1183 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
1184
Chris Wilson0e434062012-05-09 21:45:44 +01001185 gt_iir = I915_READ(GTIIR);
1186 if (gt_iir) {
1187 snb_gt_irq_handler(dev, dev_priv, gt_iir);
1188 I915_WRITE(GTIIR, gt_iir);
1189 ret = IRQ_HANDLED;
1190 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001191
1192 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001193 if (de_iir) {
Paulo Zanoni86642812013-04-12 17:57:57 -03001194 if (de_iir & DE_ERR_INT_IVB)
1195 ivb_err_int_handler(dev);
1196
Daniel Vetterce99c252012-12-01 13:53:47 +01001197 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1198 dp_aux_irq_handler(dev);
1199
Chris Wilson0e434062012-05-09 21:45:44 +01001200 if (de_iir & DE_GSE_IVB)
Jani Nikula81a07802013-04-24 22:18:44 +03001201 intel_opregion_asle_intr(dev);
Chris Wilson0e434062012-05-09 21:45:44 +01001202
1203 for (i = 0; i < 3; i++) {
Daniel Vetter74d44442012-10-02 17:54:35 +02001204 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1205 drm_handle_vblank(dev, i);
Chris Wilson0e434062012-05-09 21:45:44 +01001206 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1207 intel_prepare_page_flip(dev, i);
1208 intel_finish_page_flip_plane(dev, i);
1209 }
Chris Wilson0e434062012-05-09 21:45:44 +01001210 }
1211
1212 /* check event from PCH */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001213 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
Chris Wilson0e434062012-05-09 21:45:44 +01001214 u32 pch_iir = I915_READ(SDEIIR);
1215
Adam Jackson23e81d62012-06-06 15:45:44 -04001216 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001217
1218 /* clear PCH hotplug event before clear CPU irq */
1219 I915_WRITE(SDEIIR, pch_iir);
1220 }
1221
1222 I915_WRITE(DEIIR, de_iir);
1223 ret = IRQ_HANDLED;
1224 }
1225
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001226 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001227 if (pm_iir) {
1228 if (pm_iir & GEN6_PM_DEFERRED_EVENTS)
1229 gen6_queue_rps_work(dev_priv, pm_iir);
1230 I915_WRITE(GEN6_PMIIR, pm_iir);
1231 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001232 }
1233
Paulo Zanoni86642812013-04-12 17:57:57 -03001234 if (IS_HASWELL(dev) && ivb_can_enable_err_int(dev))
1235 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
1236
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001237 I915_WRITE(DEIER, de_ier);
1238 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07001239 if (!HAS_PCH_NOP(dev)) {
1240 I915_WRITE(SDEIER, sde_ier);
1241 POSTING_READ(SDEIER);
1242 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001243
1244 return ret;
1245}
1246
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001247static void ilk_gt_irq_handler(struct drm_device *dev,
1248 struct drm_i915_private *dev_priv,
1249 u32 gt_iir)
1250{
1251 if (gt_iir & (GT_USER_INTERRUPT | GT_PIPE_NOTIFY))
1252 notify_ring(dev, &dev_priv->ring[RCS]);
1253 if (gt_iir & GT_BSD_USER_INTERRUPT)
1254 notify_ring(dev, &dev_priv->ring[VCS]);
1255}
1256
Daniel Vetterff1f5252012-10-02 15:10:55 +02001257static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001258{
Jesse Barnes46979952011-04-07 13:53:55 -07001259 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001260 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1261 int ret = IRQ_NONE;
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001262 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001263
Jesse Barnes46979952011-04-07 13:53:55 -07001264 atomic_inc(&dev_priv->irq_received);
1265
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001266 /* disable master interrupt before clearing iir */
1267 de_ier = I915_READ(DEIER);
1268 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001269 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001270
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001271 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1272 * interrupts will will be stored on its back queue, and then we'll be
1273 * able to process them after we restore SDEIER (as soon as we restore
1274 * it, we'll get an interrupt if SDEIIR still has something to process
1275 * due to its back queue). */
1276 sde_ier = I915_READ(SDEIER);
1277 I915_WRITE(SDEIER, 0);
1278 POSTING_READ(SDEIER);
1279
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001280 de_iir = I915_READ(DEIIR);
1281 gt_iir = I915_READ(GTIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001282 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001283
Daniel Vetteracd15b62012-11-30 11:24:50 +01001284 if (de_iir == 0 && gt_iir == 0 && (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +08001285 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001286
Zou Nan haic7c85102010-01-15 10:29:06 +08001287 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001288
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001289 if (IS_GEN5(dev))
1290 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
1291 else
1292 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001293
Daniel Vetterce99c252012-12-01 13:53:47 +01001294 if (de_iir & DE_AUX_CHANNEL_A)
1295 dp_aux_irq_handler(dev);
1296
Zou Nan haic7c85102010-01-15 10:29:06 +08001297 if (de_iir & DE_GSE)
Jani Nikula81a07802013-04-24 22:18:44 +03001298 intel_opregion_asle_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +08001299
Daniel Vetter74d44442012-10-02 17:54:35 +02001300 if (de_iir & DE_PIPEA_VBLANK)
1301 drm_handle_vblank(dev, 0);
1302
1303 if (de_iir & DE_PIPEB_VBLANK)
1304 drm_handle_vblank(dev, 1);
1305
Paulo Zanonide032bf2013-04-12 17:57:58 -03001306 if (de_iir & DE_POISON)
1307 DRM_ERROR("Poison interrupt\n");
1308
Paulo Zanoni86642812013-04-12 17:57:57 -03001309 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1310 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1311 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1312
1313 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1314 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1315 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1316
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001317 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001318 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +01001319 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001320 }
1321
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001322 if (de_iir & DE_PLANEB_FLIP_DONE) {
1323 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +01001324 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001325 }
Li Pengc062df62010-01-23 00:12:58 +08001326
Zou Nan haic7c85102010-01-15 10:29:06 +08001327 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -08001328 if (de_iir & DE_PCH_EVENT) {
Daniel Vetteracd15b62012-11-30 11:24:50 +01001329 u32 pch_iir = I915_READ(SDEIIR);
1330
Adam Jackson23e81d62012-06-06 15:45:44 -04001331 if (HAS_PCH_CPT(dev))
1332 cpt_irq_handler(dev, pch_iir);
1333 else
1334 ibx_irq_handler(dev, pch_iir);
Daniel Vetteracd15b62012-11-30 11:24:50 +01001335
1336 /* should clear PCH hotplug event before clear CPU irq */
1337 I915_WRITE(SDEIIR, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -08001338 }
Zou Nan haic7c85102010-01-15 10:29:06 +08001339
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001340 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
1341 ironlake_handle_rps_change(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001342
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001343 if (IS_GEN6(dev) && pm_iir & GEN6_PM_DEFERRED_EVENTS)
1344 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001345
Zou Nan haic7c85102010-01-15 10:29:06 +08001346 I915_WRITE(GTIIR, gt_iir);
1347 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -07001348 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001349
1350done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001351 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001352 POSTING_READ(DEIER);
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001353 I915_WRITE(SDEIER, sde_ier);
1354 POSTING_READ(SDEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001355
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001356 return ret;
1357}
1358
Jesse Barnes8a905232009-07-11 16:48:03 -04001359/**
1360 * i915_error_work_func - do process context error handling work
1361 * @work: work struct
1362 *
1363 * Fire an error uevent so userspace can see that a hang or error
1364 * was detected.
1365 */
1366static void i915_error_work_func(struct work_struct *work)
1367{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001368 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1369 work);
1370 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1371 gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04001372 struct drm_device *dev = dev_priv->dev;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001373 struct intel_ring_buffer *ring;
Ben Gamarif316a422009-09-14 17:48:46 -04001374 char *error_event[] = { "ERROR=1", NULL };
1375 char *reset_event[] = { "RESET=1", NULL };
1376 char *reset_done_event[] = { "ERROR=0", NULL };
Daniel Vetterf69061b2012-12-06 09:01:42 +01001377 int i, ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04001378
Ben Gamarif316a422009-09-14 17:48:46 -04001379 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04001380
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001381 /*
1382 * Note that there's only one work item which does gpu resets, so we
1383 * need not worry about concurrent gpu resets potentially incrementing
1384 * error->reset_counter twice. We only need to take care of another
1385 * racing irq/hangcheck declaring the gpu dead for a second time. A
1386 * quick check for that is good enough: schedule_work ensures the
1387 * correct ordering between hang detection and this work item, and since
1388 * the reset in-progress bit is only ever set by code outside of this
1389 * work we don't need to worry about any other races.
1390 */
1391 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01001392 DRM_DEBUG_DRIVER("resetting chip\n");
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001393 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE,
1394 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001395
Daniel Vetterf69061b2012-12-06 09:01:42 +01001396 ret = i915_reset(dev);
1397
1398 if (ret == 0) {
1399 /*
1400 * After all the gem state is reset, increment the reset
1401 * counter and wake up everyone waiting for the reset to
1402 * complete.
1403 *
1404 * Since unlock operations are a one-sided barrier only,
1405 * we need to insert a barrier here to order any seqno
1406 * updates before
1407 * the counter increment.
1408 */
1409 smp_mb__before_atomic_inc();
1410 atomic_inc(&dev_priv->gpu_error.reset_counter);
1411
1412 kobject_uevent_env(&dev->primary->kdev.kobj,
1413 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001414 } else {
1415 atomic_set(&error->reset_counter, I915_WEDGED);
Ben Gamarif316a422009-09-14 17:48:46 -04001416 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001417
Daniel Vetterf69061b2012-12-06 09:01:42 +01001418 for_each_ring(ring, dev_priv, i)
1419 wake_up_all(&ring->irq_queue);
1420
Ville Syrjälä96a02912013-02-18 19:08:49 +02001421 intel_display_handle_reset(dev);
1422
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001423 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04001424 }
Jesse Barnes8a905232009-07-11 16:48:03 -04001425}
1426
Daniel Vetter85f9e502012-08-31 21:42:26 +02001427/* NB: please notice the memset */
1428static void i915_get_extra_instdone(struct drm_device *dev,
1429 uint32_t *instdone)
1430{
1431 struct drm_i915_private *dev_priv = dev->dev_private;
1432 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1433
1434 switch(INTEL_INFO(dev)->gen) {
1435 case 2:
1436 case 3:
1437 instdone[0] = I915_READ(INSTDONE);
1438 break;
1439 case 4:
1440 case 5:
1441 case 6:
1442 instdone[0] = I915_READ(INSTDONE_I965);
1443 instdone[1] = I915_READ(INSTDONE1);
1444 break;
1445 default:
1446 WARN_ONCE(1, "Unsupported platform\n");
1447 case 7:
1448 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1449 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1450 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1451 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1452 break;
1453 }
1454}
1455
Chris Wilson3bd3c932010-08-19 08:19:30 +01001456#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +00001457static struct drm_i915_error_object *
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001458i915_error_object_create_sized(struct drm_i915_private *dev_priv,
1459 struct drm_i915_gem_object *src,
1460 const int num_pages)
Chris Wilson9df30792010-02-18 10:24:56 +00001461{
1462 struct drm_i915_error_object *dst;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001463 int i;
Chris Wilsone56660d2010-08-07 11:01:26 +01001464 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001465
Chris Wilson05394f32010-11-08 19:18:58 +00001466 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +00001467 return NULL;
1468
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001469 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001470 if (dst == NULL)
1471 return NULL;
1472
Chris Wilson05394f32010-11-08 19:18:58 +00001473 reloc_offset = src->gtt_offset;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001474 for (i = 0; i < num_pages; i++) {
Andrew Morton788885a2010-05-11 14:07:05 -07001475 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +01001476 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -07001477
Chris Wilsone56660d2010-08-07 11:01:26 +01001478 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001479 if (d == NULL)
1480 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +01001481
Andrew Morton788885a2010-05-11 14:07:05 -07001482 local_irq_save(flags);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001483 if (reloc_offset < dev_priv->gtt.mappable_end &&
Daniel Vetter74898d72012-02-15 23:50:22 +01001484 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +01001485 void __iomem *s;
1486
1487 /* Simply ignore tiling or any overlapping fence.
1488 * It's part of the error state, and this hopefully
1489 * captures what the GPU read.
1490 */
1491
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001492 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson172975aa2011-12-14 13:57:25 +01001493 reloc_offset);
1494 memcpy_fromio(d, s, PAGE_SIZE);
1495 io_mapping_unmap_atomic(s);
Chris Wilson960e3562012-11-15 11:32:23 +00001496 } else if (src->stolen) {
1497 unsigned long offset;
1498
1499 offset = dev_priv->mm.stolen_base;
1500 offset += src->stolen->start;
1501 offset += i << PAGE_SHIFT;
1502
Daniel Vetter1a240d42012-11-29 22:18:51 +01001503 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
Chris Wilson172975aa2011-12-14 13:57:25 +01001504 } else {
Chris Wilson9da3da62012-06-01 15:20:22 +01001505 struct page *page;
Chris Wilson172975aa2011-12-14 13:57:25 +01001506 void *s;
1507
Chris Wilson9da3da62012-06-01 15:20:22 +01001508 page = i915_gem_object_get_page(src, i);
Chris Wilson172975aa2011-12-14 13:57:25 +01001509
Chris Wilson9da3da62012-06-01 15:20:22 +01001510 drm_clflush_pages(&page, 1);
1511
1512 s = kmap_atomic(page);
Chris Wilson172975aa2011-12-14 13:57:25 +01001513 memcpy(d, s, PAGE_SIZE);
1514 kunmap_atomic(s);
1515
Chris Wilson9da3da62012-06-01 15:20:22 +01001516 drm_clflush_pages(&page, 1);
Chris Wilson172975aa2011-12-14 13:57:25 +01001517 }
Andrew Morton788885a2010-05-11 14:07:05 -07001518 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +01001519
Chris Wilson9da3da62012-06-01 15:20:22 +01001520 dst->pages[i] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +01001521
1522 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +00001523 }
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001524 dst->page_count = num_pages;
Chris Wilson05394f32010-11-08 19:18:58 +00001525 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001526
1527 return dst;
1528
1529unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001530 while (i--)
1531 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001532 kfree(dst);
1533 return NULL;
1534}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001535#define i915_error_object_create(dev_priv, src) \
1536 i915_error_object_create_sized((dev_priv), (src), \
1537 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001538
1539static void
1540i915_error_object_free(struct drm_i915_error_object *obj)
1541{
1542 int page;
1543
1544 if (obj == NULL)
1545 return;
1546
1547 for (page = 0; page < obj->page_count; page++)
1548 kfree(obj->pages[page]);
1549
1550 kfree(obj);
1551}
1552
Daniel Vetter742cbee2012-04-27 15:17:39 +02001553void
1554i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001555{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001556 struct drm_i915_error_state *error = container_of(error_ref,
1557 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001558 int i;
1559
Chris Wilson52d39a22012-02-15 11:25:37 +00001560 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1561 i915_error_object_free(error->ring[i].batchbuffer);
1562 i915_error_object_free(error->ring[i].ringbuffer);
1563 kfree(error->ring[i].requests);
1564 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001565
Chris Wilson9df30792010-02-18 10:24:56 +00001566 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001567 kfree(error->overlay);
Chris Wilson9df30792010-02-18 10:24:56 +00001568 kfree(error);
1569}
Chris Wilson1b502472012-04-24 15:47:30 +01001570static void capture_bo(struct drm_i915_error_buffer *err,
1571 struct drm_i915_gem_object *obj)
1572{
1573 err->size = obj->base.size;
1574 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001575 err->rseqno = obj->last_read_seqno;
1576 err->wseqno = obj->last_write_seqno;
Chris Wilson1b502472012-04-24 15:47:30 +01001577 err->gtt_offset = obj->gtt_offset;
1578 err->read_domains = obj->base.read_domains;
1579 err->write_domain = obj->base.write_domain;
1580 err->fence_reg = obj->fence_reg;
1581 err->pinned = 0;
1582 if (obj->pin_count > 0)
1583 err->pinned = 1;
1584 if (obj->user_pin_count > 0)
1585 err->pinned = -1;
1586 err->tiling = obj->tiling_mode;
1587 err->dirty = obj->dirty;
1588 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1589 err->ring = obj->ring ? obj->ring->id : -1;
1590 err->cache_level = obj->cache_level;
1591}
Chris Wilson9df30792010-02-18 10:24:56 +00001592
Chris Wilson1b502472012-04-24 15:47:30 +01001593static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1594 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001595{
1596 struct drm_i915_gem_object *obj;
1597 int i = 0;
1598
1599 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001600 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001601 if (++i == count)
1602 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001603 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001604
Chris Wilson1b502472012-04-24 15:47:30 +01001605 return i;
1606}
1607
1608static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1609 int count, struct list_head *head)
1610{
1611 struct drm_i915_gem_object *obj;
1612 int i = 0;
1613
1614 list_for_each_entry(obj, head, gtt_list) {
1615 if (obj->pin_count == 0)
1616 continue;
1617
1618 capture_bo(err++, obj);
1619 if (++i == count)
1620 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001621 }
1622
1623 return i;
1624}
1625
Chris Wilson748ebc62010-10-24 10:28:47 +01001626static void i915_gem_record_fences(struct drm_device *dev,
1627 struct drm_i915_error_state *error)
1628{
1629 struct drm_i915_private *dev_priv = dev->dev_private;
1630 int i;
1631
1632 /* Fences */
1633 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001634 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001635 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001636 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001637 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1638 break;
1639 case 5:
1640 case 4:
1641 for (i = 0; i < 16; i++)
1642 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1643 break;
1644 case 3:
1645 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1646 for (i = 0; i < 8; i++)
1647 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1648 case 2:
1649 for (i = 0; i < 8; i++)
1650 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1651 break;
1652
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001653 default:
1654 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001655 }
1656}
1657
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001658static struct drm_i915_error_object *
1659i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1660 struct intel_ring_buffer *ring)
1661{
1662 struct drm_i915_gem_object *obj;
1663 u32 seqno;
1664
1665 if (!ring->get_seqno)
1666 return NULL;
1667
Daniel Vetterb45305f2012-12-17 16:21:27 +01001668 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1669 u32 acthd = I915_READ(ACTHD);
1670
1671 if (WARN_ON(ring->id != RCS))
1672 return NULL;
1673
1674 obj = ring->private;
1675 if (acthd >= obj->gtt_offset &&
1676 acthd < obj->gtt_offset + obj->base.size)
1677 return i915_error_object_create(dev_priv, obj);
1678 }
1679
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001680 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001681 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1682 if (obj->ring != ring)
1683 continue;
1684
Chris Wilson0201f1e2012-07-20 12:41:01 +01001685 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001686 continue;
1687
1688 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1689 continue;
1690
1691 /* We need to copy these to an anonymous buffer as the simplest
1692 * method to avoid being overwritten by userspace.
1693 */
1694 return i915_error_object_create(dev_priv, obj);
1695 }
1696
1697 return NULL;
1698}
1699
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001700static void i915_record_ring_state(struct drm_device *dev,
1701 struct drm_i915_error_state *error,
1702 struct intel_ring_buffer *ring)
1703{
1704 struct drm_i915_private *dev_priv = dev->dev_private;
1705
Daniel Vetter33f3f512011-12-14 13:57:39 +01001706 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001707 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001708 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001709 error->semaphore_mboxes[ring->id][0]
1710 = I915_READ(RING_SYNC_0(ring->mmio_base));
1711 error->semaphore_mboxes[ring->id][1]
1712 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001713 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1714 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001715 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001716
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001717 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001718 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001719 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1720 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1721 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001722 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001723 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001724 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001725 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001726 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001727 error->ipeir[ring->id] = I915_READ(IPEIR);
1728 error->ipehr[ring->id] = I915_READ(IPEHR);
1729 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001730 }
1731
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001732 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001733 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001734 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001735 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001736 error->head[ring->id] = I915_READ_HEAD(ring);
1737 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001738 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001739
1740 error->cpu_ring_head[ring->id] = ring->head;
1741 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001742}
1743
Ben Widawsky8c123e52013-03-04 17:00:29 -08001744
1745static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1746 struct drm_i915_error_state *error,
1747 struct drm_i915_error_ring *ering)
1748{
1749 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1750 struct drm_i915_gem_object *obj;
1751
1752 /* Currently render ring is the only HW context user */
1753 if (ring->id != RCS || !error->ccid)
1754 return;
1755
1756 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list) {
1757 if ((error->ccid & PAGE_MASK) == obj->gtt_offset) {
1758 ering->ctx = i915_error_object_create_sized(dev_priv,
1759 obj, 1);
1760 }
1761 }
1762}
1763
Chris Wilson52d39a22012-02-15 11:25:37 +00001764static void i915_gem_record_rings(struct drm_device *dev,
1765 struct drm_i915_error_state *error)
1766{
1767 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001768 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001769 struct drm_i915_gem_request *request;
1770 int i, count;
1771
Chris Wilsonb4519512012-05-11 14:29:30 +01001772 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001773 i915_record_ring_state(dev, error, ring);
1774
1775 error->ring[i].batchbuffer =
1776 i915_error_first_batchbuffer(dev_priv, ring);
1777
1778 error->ring[i].ringbuffer =
1779 i915_error_object_create(dev_priv, ring->obj);
1780
Ben Widawsky8c123e52013-03-04 17:00:29 -08001781
1782 i915_gem_record_active_context(ring, error, &error->ring[i]);
1783
Chris Wilson52d39a22012-02-15 11:25:37 +00001784 count = 0;
1785 list_for_each_entry(request, &ring->request_list, list)
1786 count++;
1787
1788 error->ring[i].num_requests = count;
1789 error->ring[i].requests =
1790 kmalloc(count*sizeof(struct drm_i915_error_request),
1791 GFP_ATOMIC);
1792 if (error->ring[i].requests == NULL) {
1793 error->ring[i].num_requests = 0;
1794 continue;
1795 }
1796
1797 count = 0;
1798 list_for_each_entry(request, &ring->request_list, list) {
1799 struct drm_i915_error_request *erq;
1800
1801 erq = &error->ring[i].requests[count++];
1802 erq->seqno = request->seqno;
1803 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001804 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001805 }
1806 }
1807}
1808
Jesse Barnes8a905232009-07-11 16:48:03 -04001809/**
1810 * i915_capture_error_state - capture an error record for later analysis
1811 * @dev: drm device
1812 *
1813 * Should be called when an error is detected (either a hang or an error
1814 * interrupt) to capture error state from the time of the error. Fills
1815 * out a structure which becomes available in debugfs for user level tools
1816 * to pick up.
1817 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001818static void i915_capture_error_state(struct drm_device *dev)
1819{
1820 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001821 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001822 struct drm_i915_error_state *error;
1823 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001824 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001825
Daniel Vetter99584db2012-11-14 17:14:04 +01001826 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1827 error = dev_priv->gpu_error.first_error;
1828 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001829 if (error)
1830 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001831
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001832 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001833 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001834 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001835 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1836 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001837 }
1838
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001839 DRM_INFO("capturing error event; look for more information in "
Ben Widawsky2f86f192013-01-28 15:32:15 -08001840 "/sys/kernel/debug/dri/%d/i915_error_state\n",
Chris Wilsonb6f78332011-02-01 14:15:55 +00001841 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001842
Daniel Vetter742cbee2012-04-27 15:17:39 +02001843 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001844 error->eir = I915_READ(EIR);
1845 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001846 if (HAS_HW_CONTEXTS(dev))
1847 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001848
1849 if (HAS_PCH_SPLIT(dev))
1850 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1851 else if (IS_VALLEYVIEW(dev))
1852 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1853 else if (IS_GEN2(dev))
1854 error->ier = I915_READ16(IER);
1855 else
1856 error->ier = I915_READ(IER);
1857
Chris Wilson0f3b6842013-01-15 12:05:55 +00001858 if (INTEL_INFO(dev)->gen >= 6)
1859 error->derrmr = I915_READ(DERRMR);
1860
1861 if (IS_VALLEYVIEW(dev))
1862 error->forcewake = I915_READ(FORCEWAKE_VLV);
1863 else if (INTEL_INFO(dev)->gen >= 7)
1864 error->forcewake = I915_READ(FORCEWAKE_MT);
1865 else if (INTEL_INFO(dev)->gen == 6)
1866 error->forcewake = I915_READ(FORCEWAKE);
1867
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001868 if (!HAS_PCH_SPLIT(dev))
1869 for_each_pipe(pipe)
1870 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001871
Daniel Vetter33f3f512011-12-14 13:57:39 +01001872 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001873 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001874 error->done_reg = I915_READ(DONE_REG);
1875 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001876
Ben Widawsky71e172e2012-08-20 16:15:13 -07001877 if (INTEL_INFO(dev)->gen == 7)
1878 error->err_int = I915_READ(GEN7_ERR_INT);
1879
Ben Widawsky050ee912012-08-22 11:32:15 -07001880 i915_get_extra_instdone(dev, error->extra_instdone);
1881
Chris Wilson748ebc62010-10-24 10:28:47 +01001882 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001883 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001884
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001885 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001886 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001887 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001888
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001889 i = 0;
1890 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1891 i++;
1892 error->active_bo_count = i;
Chris Wilson6c085a72012-08-20 11:40:46 +02001893 list_for_each_entry(obj, &dev_priv->mm.bound_list, gtt_list)
Chris Wilson1b502472012-04-24 15:47:30 +01001894 if (obj->pin_count)
1895 i++;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001896 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001897
Chris Wilson8e934db2011-01-24 12:34:00 +00001898 error->active_bo = NULL;
1899 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001900 if (i) {
1901 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001902 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001903 if (error->active_bo)
1904 error->pinned_bo =
1905 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001906 }
1907
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001908 if (error->active_bo)
1909 error->active_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001910 capture_active_bo(error->active_bo,
1911 error->active_bo_count,
1912 &dev_priv->mm.active_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001913
1914 if (error->pinned_bo)
1915 error->pinned_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001916 capture_pinned_bo(error->pinned_bo,
1917 error->pinned_bo_count,
Chris Wilson6c085a72012-08-20 11:40:46 +02001918 &dev_priv->mm.bound_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001919
Jesse Barnes8a905232009-07-11 16:48:03 -04001920 do_gettimeofday(&error->time);
1921
Chris Wilson6ef3d422010-08-04 20:26:07 +01001922 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001923 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001924
Daniel Vetter99584db2012-11-14 17:14:04 +01001925 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1926 if (dev_priv->gpu_error.first_error == NULL) {
1927 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00001928 error = NULL;
1929 }
Daniel Vetter99584db2012-11-14 17:14:04 +01001930 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001931
1932 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001933 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001934}
1935
1936void i915_destroy_error_state(struct drm_device *dev)
1937{
1938 struct drm_i915_private *dev_priv = dev->dev_private;
1939 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001940 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001941
Daniel Vetter99584db2012-11-14 17:14:04 +01001942 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1943 error = dev_priv->gpu_error.first_error;
1944 dev_priv->gpu_error.first_error = NULL;
1945 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001946
1947 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001948 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001949}
Chris Wilson3bd3c932010-08-19 08:19:30 +01001950#else
1951#define i915_capture_error_state(x)
1952#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001953
Chris Wilson35aed2e2010-05-27 13:18:12 +01001954static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04001955{
1956 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07001957 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04001958 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07001959 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04001960
Chris Wilson35aed2e2010-05-27 13:18:12 +01001961 if (!eir)
1962 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04001963
Joe Perchesa70491c2012-03-18 13:00:11 -07001964 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04001965
Ben Widawskybd9854f2012-08-23 15:18:09 -07001966 i915_get_extra_instdone(dev, instdone);
1967
Jesse Barnes8a905232009-07-11 16:48:03 -04001968 if (IS_G4X(dev)) {
1969 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
1970 u32 ipeir = I915_READ(IPEIR_I965);
1971
Joe Perchesa70491c2012-03-18 13:00:11 -07001972 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
1973 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07001974 for (i = 0; i < ARRAY_SIZE(instdone); i++)
1975 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07001976 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07001977 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04001978 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001979 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04001980 }
1981 if (eir & GM45_ERROR_PAGE_TABLE) {
1982 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001983 pr_err("page table error\n");
1984 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001985 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001986 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001987 }
1988 }
1989
Chris Wilsona6c45cf2010-09-17 00:32:17 +01001990 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04001991 if (eir & I915_ERROR_PAGE_TABLE) {
1992 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07001993 pr_err("page table error\n");
1994 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04001995 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001996 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04001997 }
1998 }
1999
2000 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002001 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002002 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002003 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002004 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002005 /* pipestat has already been acked */
2006 }
2007 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002008 pr_err("instruction error\n");
2009 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002010 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2011 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002012 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002013 u32 ipeir = I915_READ(IPEIR);
2014
Joe Perchesa70491c2012-03-18 13:00:11 -07002015 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2016 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002017 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002018 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002019 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002020 } else {
2021 u32 ipeir = I915_READ(IPEIR_I965);
2022
Joe Perchesa70491c2012-03-18 13:00:11 -07002023 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2024 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002025 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002026 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002027 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002028 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002029 }
2030 }
2031
2032 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002033 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002034 eir = I915_READ(EIR);
2035 if (eir) {
2036 /*
2037 * some errors might have become stuck,
2038 * mask them.
2039 */
2040 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2041 I915_WRITE(EMR, I915_READ(EMR) | eir);
2042 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2043 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002044}
2045
2046/**
2047 * i915_handle_error - handle an error interrupt
2048 * @dev: drm device
2049 *
2050 * Do some basic checking of regsiter state at error interrupt time and
2051 * dump it to the syslog. Also call i915_capture_error_state() to make
2052 * sure we get a record and make it available in debugfs. Fire a uevent
2053 * so userspace knows something bad happened (should trigger collection
2054 * of a ring dump etc.).
2055 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002056void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002057{
2058 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002059 struct intel_ring_buffer *ring;
2060 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002061
2062 i915_capture_error_state(dev);
2063 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002064
Ben Gamariba1234d2009-09-14 17:48:47 -04002065 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002066 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2067 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002068
Ben Gamari11ed50e2009-09-14 17:48:45 -04002069 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002070 * Wakeup waiting processes so that the reset work item
2071 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002072 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002073 for_each_ring(ring, dev_priv, i)
2074 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002075 }
2076
Daniel Vetter99584db2012-11-14 17:14:04 +01002077 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002078}
2079
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002080static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002081{
2082 drm_i915_private_t *dev_priv = dev->dev_private;
2083 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2084 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002085 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002086 struct intel_unpin_work *work;
2087 unsigned long flags;
2088 bool stall_detected;
2089
2090 /* Ignore early vblank irqs */
2091 if (intel_crtc == NULL)
2092 return;
2093
2094 spin_lock_irqsave(&dev->event_lock, flags);
2095 work = intel_crtc->unpin_work;
2096
Chris Wilsone7d841c2012-12-03 11:36:30 +00002097 if (work == NULL ||
2098 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2099 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002100 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2101 spin_unlock_irqrestore(&dev->event_lock, flags);
2102 return;
2103 }
2104
2105 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002106 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002107 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002108 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002109 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
2110 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002111 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002112 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00002113 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002114 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002115 crtc->x * crtc->fb->bits_per_pixel/8);
2116 }
2117
2118 spin_unlock_irqrestore(&dev->event_lock, flags);
2119
2120 if (stall_detected) {
2121 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2122 intel_prepare_page_flip(dev, intel_crtc->plane);
2123 }
2124}
2125
Keith Packard42f52ef2008-10-18 19:39:29 -07002126/* Called from drm generic code, passed 'crtc' which
2127 * we use as a pipe index
2128 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002129static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002130{
2131 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002132 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002133
Chris Wilson5eddb702010-09-11 13:48:45 +01002134 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002135 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002136
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002137 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002138 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002139 i915_enable_pipestat(dev_priv, pipe,
2140 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002141 else
Keith Packard7c463582008-11-04 02:03:27 -08002142 i915_enable_pipestat(dev_priv, pipe,
2143 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002144
2145 /* maintain vblank delivery even in deep C-states */
2146 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002147 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002148 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002149
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002150 return 0;
2151}
2152
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002153static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002154{
2155 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2156 unsigned long irqflags;
2157
2158 if (!i915_pipe_enabled(dev, pipe))
2159 return -EINVAL;
2160
2161 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2162 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002163 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002164 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2165
2166 return 0;
2167}
2168
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002169static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002170{
2171 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2172 unsigned long irqflags;
2173
2174 if (!i915_pipe_enabled(dev, pipe))
2175 return -EINVAL;
2176
2177 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002178 ironlake_enable_display_irq(dev_priv,
2179 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002180 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2181
2182 return 0;
2183}
2184
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002185static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2186{
2187 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2188 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002189 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002190
2191 if (!i915_pipe_enabled(dev, pipe))
2192 return -EINVAL;
2193
2194 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002195 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002196 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002197 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002198 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002199 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002200 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002201 i915_enable_pipestat(dev_priv, pipe,
2202 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002203 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2204
2205 return 0;
2206}
2207
Keith Packard42f52ef2008-10-18 19:39:29 -07002208/* Called from drm generic code, passed 'crtc' which
2209 * we use as a pipe index
2210 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002211static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002212{
2213 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002214 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002215
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002216 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002217 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002218 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002219
Jesse Barnesf796cf82011-04-07 13:58:17 -07002220 i915_disable_pipestat(dev_priv, pipe,
2221 PIPE_VBLANK_INTERRUPT_ENABLE |
2222 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2223 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2224}
2225
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002226static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002227{
2228 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2229 unsigned long irqflags;
2230
2231 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2232 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002233 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002234 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002235}
2236
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002237static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002238{
2239 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2240 unsigned long irqflags;
2241
2242 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002243 ironlake_disable_display_irq(dev_priv,
2244 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002245 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2246}
2247
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002248static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2249{
2250 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2251 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002252 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002253
2254 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002255 i915_disable_pipestat(dev_priv, pipe,
2256 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002257 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002258 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002259 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002260 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002261 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002262 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002263 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2264}
2265
Chris Wilson893eead2010-10-27 14:44:35 +01002266static u32
2267ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002268{
Chris Wilson893eead2010-10-27 14:44:35 +01002269 return list_entry(ring->request_list.prev,
2270 struct drm_i915_gem_request, list)->seqno;
2271}
2272
2273static bool i915_hangcheck_ring_idle(struct intel_ring_buffer *ring, bool *err)
2274{
2275 if (list_empty(&ring->request_list) ||
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01002276 i915_seqno_passed(ring->get_seqno(ring, false),
2277 ring_last_seqno(ring))) {
Chris Wilson893eead2010-10-27 14:44:35 +01002278 /* Issue a wake-up to catch stuck h/w. */
Ben Widawsky9574b3f2012-04-26 16:03:01 -07002279 if (waitqueue_active(&ring->irq_queue)) {
2280 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2281 ring->name);
Chris Wilson893eead2010-10-27 14:44:35 +01002282 wake_up_all(&ring->irq_queue);
2283 *err = true;
2284 }
2285 return true;
2286 }
2287 return false;
Ben Gamarif65d9422009-09-14 17:48:44 -04002288}
2289
Chris Wilsona24a11e2013-03-14 17:52:05 +02002290static bool semaphore_passed(struct intel_ring_buffer *ring)
2291{
2292 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2293 u32 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
2294 struct intel_ring_buffer *signaller;
2295 u32 cmd, ipehr, acthd_min;
2296
2297 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2298 if ((ipehr & ~(0x3 << 16)) !=
2299 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
2300 return false;
2301
2302 /* ACTHD is likely pointing to the dword after the actual command,
2303 * so scan backwards until we find the MBOX.
2304 */
2305 acthd_min = max((int)acthd - 3 * 4, 0);
2306 do {
2307 cmd = ioread32(ring->virtual_start + acthd);
2308 if (cmd == ipehr)
2309 break;
2310
2311 acthd -= 4;
2312 if (acthd < acthd_min)
2313 return false;
2314 } while (1);
2315
2316 signaller = &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
2317 return i915_seqno_passed(signaller->get_seqno(signaller, false),
2318 ioread32(ring->virtual_start+acthd+4)+1);
2319}
2320
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002321static bool kick_ring(struct intel_ring_buffer *ring)
2322{
2323 struct drm_device *dev = ring->dev;
2324 struct drm_i915_private *dev_priv = dev->dev_private;
2325 u32 tmp = I915_READ_CTL(ring);
2326 if (tmp & RING_WAIT) {
2327 DRM_ERROR("Kicking stuck wait on %s\n",
2328 ring->name);
2329 I915_WRITE_CTL(ring, tmp);
2330 return true;
2331 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002332
2333 if (INTEL_INFO(dev)->gen >= 6 &&
2334 tmp & RING_WAIT_SEMAPHORE &&
2335 semaphore_passed(ring)) {
2336 DRM_ERROR("Kicking stuck semaphore on %s\n",
2337 ring->name);
2338 I915_WRITE_CTL(ring, tmp);
2339 return true;
2340 }
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002341 return false;
2342}
2343
Chris Wilsond1e61e72012-04-10 17:00:41 +01002344static bool i915_hangcheck_hung(struct drm_device *dev)
2345{
2346 drm_i915_private_t *dev_priv = dev->dev_private;
2347
Daniel Vetter99584db2012-11-14 17:14:04 +01002348 if (dev_priv->gpu_error.hangcheck_count++ > 1) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002349 bool hung = true;
2350
Chris Wilsond1e61e72012-04-10 17:00:41 +01002351 DRM_ERROR("Hangcheck timer elapsed... GPU hung\n");
2352 i915_handle_error(dev, true);
2353
2354 if (!IS_GEN2(dev)) {
Chris Wilsonb4519512012-05-11 14:29:30 +01002355 struct intel_ring_buffer *ring;
2356 int i;
2357
Chris Wilsond1e61e72012-04-10 17:00:41 +01002358 /* Is the chip hanging on a WAIT_FOR_EVENT?
2359 * If so we can simply poke the RB_WAIT bit
2360 * and break the hang. This should work on
2361 * all but the second generation chipsets.
2362 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002363 for_each_ring(ring, dev_priv, i)
2364 hung &= !kick_ring(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002365 }
2366
Chris Wilsonb4519512012-05-11 14:29:30 +01002367 return hung;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002368 }
2369
2370 return false;
2371}
2372
Ben Gamarif65d9422009-09-14 17:48:44 -04002373/**
2374 * This is called when the chip hasn't reported back with completed
2375 * batchbuffers in a long time. The first time this is called we simply record
2376 * ACTHD. If ACTHD hasn't changed by the time the hangcheck timer elapses
2377 * again, we assume the chip is wedged and try to fix it.
2378 */
2379void i915_hangcheck_elapsed(unsigned long data)
2380{
2381 struct drm_device *dev = (struct drm_device *)data;
2382 drm_i915_private_t *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002383 uint32_t acthd[I915_NUM_RINGS], instdone[I915_NUM_INSTDONE_REG];
Chris Wilsonb4519512012-05-11 14:29:30 +01002384 struct intel_ring_buffer *ring;
2385 bool err = false, idle;
2386 int i;
Chris Wilson893eead2010-10-27 14:44:35 +01002387
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002388 if (!i915_enable_hangcheck)
2389 return;
2390
Chris Wilsonb4519512012-05-11 14:29:30 +01002391 memset(acthd, 0, sizeof(acthd));
2392 idle = true;
2393 for_each_ring(ring, dev_priv, i) {
2394 idle &= i915_hangcheck_ring_idle(ring, &err);
2395 acthd[i] = intel_ring_get_active_head(ring);
2396 }
2397
Chris Wilson893eead2010-10-27 14:44:35 +01002398 /* If all work is done then ACTHD clearly hasn't advanced. */
Chris Wilsonb4519512012-05-11 14:29:30 +01002399 if (idle) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002400 if (err) {
2401 if (i915_hangcheck_hung(dev))
2402 return;
2403
Chris Wilson893eead2010-10-27 14:44:35 +01002404 goto repeat;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002405 }
2406
Daniel Vetter99584db2012-11-14 17:14:04 +01002407 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilson893eead2010-10-27 14:44:35 +01002408 return;
2409 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002410
Ben Widawskybd9854f2012-08-23 15:18:09 -07002411 i915_get_extra_instdone(dev, instdone);
Daniel Vetter99584db2012-11-14 17:14:04 +01002412 if (memcmp(dev_priv->gpu_error.last_acthd, acthd,
2413 sizeof(acthd)) == 0 &&
2414 memcmp(dev_priv->gpu_error.prev_instdone, instdone,
2415 sizeof(instdone)) == 0) {
Chris Wilsond1e61e72012-04-10 17:00:41 +01002416 if (i915_hangcheck_hung(dev))
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002417 return;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002418 } else {
Daniel Vetter99584db2012-11-14 17:14:04 +01002419 dev_priv->gpu_error.hangcheck_count = 0;
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002420
Daniel Vetter99584db2012-11-14 17:14:04 +01002421 memcpy(dev_priv->gpu_error.last_acthd, acthd,
2422 sizeof(acthd));
2423 memcpy(dev_priv->gpu_error.prev_instdone, instdone,
2424 sizeof(instdone));
Chris Wilsoncbb465e2010-06-06 12:16:24 +01002425 }
Ben Gamarif65d9422009-09-14 17:48:44 -04002426
Chris Wilson893eead2010-10-27 14:44:35 +01002427repeat:
Ben Gamarif65d9422009-09-14 17:48:44 -04002428 /* Reset timer case chip hangs without another request being added */
Daniel Vetter99584db2012-11-14 17:14:04 +01002429 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +01002430 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002431}
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433/* drm_dma.h hooks
2434*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002435static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002436{
2437 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2438
Jesse Barnes46979952011-04-07 13:53:55 -07002439 atomic_set(&dev_priv->irq_received, 0);
2440
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002441 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002442
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002443 /* XXX hotplug from PCH */
2444
2445 I915_WRITE(DEIMR, 0xffffffff);
2446 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002447 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002448
2449 /* and GT */
2450 I915_WRITE(GTIMR, 0xffffffff);
2451 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002452 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002453
Ben Widawskyab5c6082013-04-05 13:12:41 -07002454 if (HAS_PCH_NOP(dev))
2455 return;
2456
Zhenyu Wangc6501562009-11-03 18:57:21 +00002457 /* south display irq */
2458 I915_WRITE(SDEIMR, 0xffffffff);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002459 /*
2460 * SDEIER is also touched by the interrupt handler to work around missed
2461 * PCH interrupts. Hence we can't update it after the interrupt handler
2462 * is enabled - instead we unconditionally enable all PCH interrupt
2463 * sources here, but then only unmask them as needed with SDEIMR.
2464 */
2465 I915_WRITE(SDEIER, 0xffffffff);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002466 POSTING_READ(SDEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002467}
2468
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002469static void valleyview_irq_preinstall(struct drm_device *dev)
2470{
2471 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2472 int pipe;
2473
2474 atomic_set(&dev_priv->irq_received, 0);
2475
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002476 /* VLV magic */
2477 I915_WRITE(VLV_IMR, 0);
2478 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2479 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2480 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2481
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002482 /* and GT */
2483 I915_WRITE(GTIIR, I915_READ(GTIIR));
2484 I915_WRITE(GTIIR, I915_READ(GTIIR));
2485 I915_WRITE(GTIMR, 0xffffffff);
2486 I915_WRITE(GTIER, 0x0);
2487 POSTING_READ(GTIER);
2488
2489 I915_WRITE(DPINVGTT, 0xff);
2490
2491 I915_WRITE(PORT_HOTPLUG_EN, 0);
2492 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2493 for_each_pipe(pipe)
2494 I915_WRITE(PIPESTAT(pipe), 0xffff);
2495 I915_WRITE(VLV_IIR, 0xffffffff);
2496 I915_WRITE(VLV_IMR, 0xffffffff);
2497 I915_WRITE(VLV_IER, 0x0);
2498 POSTING_READ(VLV_IER);
2499}
2500
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002501static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002502{
2503 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002504 struct drm_mode_config *mode_config = &dev->mode_config;
2505 struct intel_encoder *intel_encoder;
2506 u32 mask = ~I915_READ(SDEIMR);
2507 u32 hotplug;
Keith Packard7fe0b972011-09-19 13:31:02 -07002508
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002509 if (HAS_PCH_IBX(dev)) {
Egbert Eich995e6b32013-04-16 13:36:56 +02002510 mask &= ~SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002511 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002512 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2513 mask |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002514 } else {
Egbert Eich995e6b32013-04-16 13:36:56 +02002515 mask &= ~SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002516 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002517 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2518 mask |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002519 }
2520
2521 I915_WRITE(SDEIMR, ~mask);
2522
2523 /*
2524 * Enable digital hotplug on the PCH, and configure the DP short pulse
2525 * duration to 2ms (which is the minimum in the Display Port spec)
2526 *
2527 * This register is the same on all known PCH chips.
2528 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002529 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2530 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2531 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2532 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2533 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2534 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2535}
2536
Paulo Zanonid46da432013-02-08 17:35:15 -02002537static void ibx_irq_postinstall(struct drm_device *dev)
2538{
2539 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002540 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002541
Paulo Zanoni86642812013-04-12 17:57:57 -03002542 if (HAS_PCH_IBX(dev)) {
2543 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002544 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002545 } else {
2546 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2547
2548 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2549 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002550
2551 if (HAS_PCH_NOP(dev))
2552 return;
2553
Paulo Zanonid46da432013-02-08 17:35:15 -02002554 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2555 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002556}
2557
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002558static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002559{
2560 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2561 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002562 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002563 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002564 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002565 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002566 u32 render_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002567
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002568 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002569
2570 /* should always can generate irq */
2571 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002572 I915_WRITE(DEIMR, dev_priv->irq_mask);
2573 I915_WRITE(DEIER, display_mask | DE_PIPEA_VBLANK | DE_PIPEB_VBLANK);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002574 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002575
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002576 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002577
2578 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002579 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002580
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002581 if (IS_GEN6(dev))
2582 render_irqs =
2583 GT_USER_INTERRUPT |
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002584 GEN6_BSD_USER_INTERRUPT |
2585 GEN6_BLITTER_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002586 else
2587 render_irqs =
Chris Wilson88f23b82010-12-05 15:08:31 +00002588 GT_USER_INTERRUPT |
Chris Wilsonc6df5412010-12-15 09:56:50 +00002589 GT_PIPE_NOTIFY |
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002590 GT_BSD_USER_INTERRUPT;
2591 I915_WRITE(GTIER, render_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002592 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002593
Paulo Zanonid46da432013-02-08 17:35:15 -02002594 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002595
Jesse Barnesf97108d2010-01-29 11:27:07 -08002596 if (IS_IRONLAKE_M(dev)) {
2597 /* Clear & enable PCU event interrupts */
2598 I915_WRITE(DEIIR, DE_PCU_EVENT);
2599 I915_WRITE(DEIER, I915_READ(DEIER) | DE_PCU_EVENT);
2600 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
2601 }
2602
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002603 return 0;
2604}
2605
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002606static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002607{
2608 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2609 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002610 u32 display_mask =
2611 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2612 DE_PLANEC_FLIP_DONE_IVB |
2613 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002614 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002615 DE_AUX_CHANNEL_A_IVB |
2616 DE_ERR_INT_IVB;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002617 u32 render_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002618
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002619 dev_priv->irq_mask = ~display_mask;
2620
2621 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002622 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002623 I915_WRITE(DEIIR, I915_READ(DEIIR));
2624 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002625 I915_WRITE(DEIER,
2626 display_mask |
2627 DE_PIPEC_VBLANK_IVB |
2628 DE_PIPEB_VBLANK_IVB |
2629 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002630 POSTING_READ(DEIER);
2631
Ben Widawsky15b9f802012-05-25 16:56:23 -07002632 dev_priv->gt_irq_mask = ~GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002633
2634 I915_WRITE(GTIIR, I915_READ(GTIIR));
2635 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2636
Ben Widawskye2a1e2f2012-03-29 19:11:26 -07002637 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
Ben Widawsky15b9f802012-05-25 16:56:23 -07002638 GEN6_BLITTER_USER_INTERRUPT | GT_GEN7_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002639 I915_WRITE(GTIER, render_irqs);
2640 POSTING_READ(GTIER);
2641
Paulo Zanonid46da432013-02-08 17:35:15 -02002642 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002643
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002644 return 0;
2645}
2646
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002647static int valleyview_irq_postinstall(struct drm_device *dev)
2648{
2649 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002650 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002651 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002652 u32 render_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002653
2654 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002655 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2656 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2657 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002658 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2659
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002660 /*
2661 *Leave vblank interrupts masked initially. enable/disable will
2662 * toggle them based on usage.
2663 */
2664 dev_priv->irq_mask = (~enable_mask) |
2665 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2666 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002667
Daniel Vetter20afbda2012-12-11 14:05:07 +01002668 I915_WRITE(PORT_HOTPLUG_EN, 0);
2669 POSTING_READ(PORT_HOTPLUG_EN);
2670
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002671 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2672 I915_WRITE(VLV_IER, enable_mask);
2673 I915_WRITE(VLV_IIR, 0xffffffff);
2674 I915_WRITE(PIPESTAT(0), 0xffff);
2675 I915_WRITE(PIPESTAT(1), 0xffff);
2676 POSTING_READ(VLV_IER);
2677
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002678 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002679 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002680 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
2681
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002682 I915_WRITE(VLV_IIR, 0xffffffff);
2683 I915_WRITE(VLV_IIR, 0xffffffff);
2684
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002685 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002686 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002687
2688 render_irqs = GT_USER_INTERRUPT | GEN6_BSD_USER_INTERRUPT |
2689 GEN6_BLITTER_USER_INTERRUPT;
2690 I915_WRITE(GTIER, render_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002691 POSTING_READ(GTIER);
2692
2693 /* ack & enable invalid PTE error interrupts */
2694#if 0 /* FIXME: add support to irq handler for checking these bits */
2695 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2696 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2697#endif
2698
2699 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002700
2701 return 0;
2702}
2703
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002704static void valleyview_irq_uninstall(struct drm_device *dev)
2705{
2706 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2707 int pipe;
2708
2709 if (!dev_priv)
2710 return;
2711
Egbert Eichac4c16c2013-04-16 13:36:58 +02002712 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2713
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002714 for_each_pipe(pipe)
2715 I915_WRITE(PIPESTAT(pipe), 0xffff);
2716
2717 I915_WRITE(HWSTAM, 0xffffffff);
2718 I915_WRITE(PORT_HOTPLUG_EN, 0);
2719 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2720 for_each_pipe(pipe)
2721 I915_WRITE(PIPESTAT(pipe), 0xffff);
2722 I915_WRITE(VLV_IIR, 0xffffffff);
2723 I915_WRITE(VLV_IMR, 0xffffffff);
2724 I915_WRITE(VLV_IER, 0x0);
2725 POSTING_READ(VLV_IER);
2726}
2727
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002728static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002729{
2730 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002731
2732 if (!dev_priv)
2733 return;
2734
Egbert Eichac4c16c2013-04-16 13:36:58 +02002735 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2736
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002737 I915_WRITE(HWSTAM, 0xffffffff);
2738
2739 I915_WRITE(DEIMR, 0xffffffff);
2740 I915_WRITE(DEIER, 0x0);
2741 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002742 if (IS_GEN7(dev))
2743 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002744
2745 I915_WRITE(GTIMR, 0xffffffff);
2746 I915_WRITE(GTIER, 0x0);
2747 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002748
Ben Widawskyab5c6082013-04-05 13:12:41 -07002749 if (HAS_PCH_NOP(dev))
2750 return;
2751
Keith Packard192aac1f2011-09-20 10:12:44 -07002752 I915_WRITE(SDEIMR, 0xffffffff);
2753 I915_WRITE(SDEIER, 0x0);
2754 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002755 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2756 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002757}
2758
Chris Wilsonc2798b12012-04-22 21:13:57 +01002759static void i8xx_irq_preinstall(struct drm_device * dev)
2760{
2761 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2762 int pipe;
2763
2764 atomic_set(&dev_priv->irq_received, 0);
2765
2766 for_each_pipe(pipe)
2767 I915_WRITE(PIPESTAT(pipe), 0);
2768 I915_WRITE16(IMR, 0xffff);
2769 I915_WRITE16(IER, 0x0);
2770 POSTING_READ16(IER);
2771}
2772
2773static int i8xx_irq_postinstall(struct drm_device *dev)
2774{
2775 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2776
Chris Wilsonc2798b12012-04-22 21:13:57 +01002777 I915_WRITE16(EMR,
2778 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2779
2780 /* Unmask the interrupts that we always want on. */
2781 dev_priv->irq_mask =
2782 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2783 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2784 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2785 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2786 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2787 I915_WRITE16(IMR, dev_priv->irq_mask);
2788
2789 I915_WRITE16(IER,
2790 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2791 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2792 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2793 I915_USER_INTERRUPT);
2794 POSTING_READ16(IER);
2795
2796 return 0;
2797}
2798
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002799/*
2800 * Returns true when a page flip has completed.
2801 */
2802static bool i8xx_handle_vblank(struct drm_device *dev,
2803 int pipe, u16 iir)
2804{
2805 drm_i915_private_t *dev_priv = dev->dev_private;
2806 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2807
2808 if (!drm_handle_vblank(dev, pipe))
2809 return false;
2810
2811 if ((iir & flip_pending) == 0)
2812 return false;
2813
2814 intel_prepare_page_flip(dev, pipe);
2815
2816 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2817 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2818 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2819 * the flip is completed (no longer pending). Since this doesn't raise
2820 * an interrupt per se, we watch for the change at vblank.
2821 */
2822 if (I915_READ16(ISR) & flip_pending)
2823 return false;
2824
2825 intel_finish_page_flip(dev, pipe);
2826
2827 return true;
2828}
2829
Daniel Vetterff1f5252012-10-02 15:10:55 +02002830static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01002831{
2832 struct drm_device *dev = (struct drm_device *) arg;
2833 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01002834 u16 iir, new_iir;
2835 u32 pipe_stats[2];
2836 unsigned long irqflags;
2837 int irq_received;
2838 int pipe;
2839 u16 flip_mask =
2840 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2841 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
2842
2843 atomic_inc(&dev_priv->irq_received);
2844
2845 iir = I915_READ16(IIR);
2846 if (iir == 0)
2847 return IRQ_NONE;
2848
2849 while (iir & ~flip_mask) {
2850 /* Can't rely on pipestat interrupt bit in iir as it might
2851 * have been cleared after the pipestat interrupt was received.
2852 * It doesn't set the bit in iir again, but it still produces
2853 * interrupts (for non-MSI).
2854 */
2855 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2856 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
2857 i915_handle_error(dev, false);
2858
2859 for_each_pipe(pipe) {
2860 int reg = PIPESTAT(pipe);
2861 pipe_stats[pipe] = I915_READ(reg);
2862
2863 /*
2864 * Clear the PIPE*STAT regs before the IIR
2865 */
2866 if (pipe_stats[pipe] & 0x8000ffff) {
2867 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
2868 DRM_DEBUG_DRIVER("pipe %c underrun\n",
2869 pipe_name(pipe));
2870 I915_WRITE(reg, pipe_stats[pipe]);
2871 irq_received = 1;
2872 }
2873 }
2874 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2875
2876 I915_WRITE16(IIR, iir & ~flip_mask);
2877 new_iir = I915_READ16(IIR); /* Flush posted writes */
2878
Daniel Vetterd05c6172012-04-26 23:28:09 +02002879 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002880
2881 if (iir & I915_USER_INTERRUPT)
2882 notify_ring(dev, &dev_priv->ring[RCS]);
2883
2884 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002885 i8xx_handle_vblank(dev, 0, iir))
2886 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002887
2888 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002889 i8xx_handle_vblank(dev, 1, iir))
2890 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01002891
2892 iir = new_iir;
2893 }
2894
2895 return IRQ_HANDLED;
2896}
2897
2898static void i8xx_irq_uninstall(struct drm_device * dev)
2899{
2900 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2901 int pipe;
2902
Chris Wilsonc2798b12012-04-22 21:13:57 +01002903 for_each_pipe(pipe) {
2904 /* Clear enable bits; then clear status bits */
2905 I915_WRITE(PIPESTAT(pipe), 0);
2906 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
2907 }
2908 I915_WRITE16(IMR, 0xffff);
2909 I915_WRITE16(IER, 0x0);
2910 I915_WRITE16(IIR, I915_READ16(IIR));
2911}
2912
Chris Wilsona266c7d2012-04-24 22:59:44 +01002913static void i915_irq_preinstall(struct drm_device * dev)
2914{
2915 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2916 int pipe;
2917
2918 atomic_set(&dev_priv->irq_received, 0);
2919
2920 if (I915_HAS_HOTPLUG(dev)) {
2921 I915_WRITE(PORT_HOTPLUG_EN, 0);
2922 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2923 }
2924
Chris Wilson00d98eb2012-04-24 22:59:48 +01002925 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01002926 for_each_pipe(pipe)
2927 I915_WRITE(PIPESTAT(pipe), 0);
2928 I915_WRITE(IMR, 0xffffffff);
2929 I915_WRITE(IER, 0x0);
2930 POSTING_READ(IER);
2931}
2932
2933static int i915_irq_postinstall(struct drm_device *dev)
2934{
2935 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01002936 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01002937
Chris Wilson38bde182012-04-24 22:59:50 +01002938 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2939
2940 /* Unmask the interrupts that we always want on. */
2941 dev_priv->irq_mask =
2942 ~(I915_ASLE_INTERRUPT |
2943 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2944 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2945 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2946 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2947 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2948
2949 enable_mask =
2950 I915_ASLE_INTERRUPT |
2951 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2952 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2953 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2954 I915_USER_INTERRUPT;
2955
Chris Wilsona266c7d2012-04-24 22:59:44 +01002956 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01002957 I915_WRITE(PORT_HOTPLUG_EN, 0);
2958 POSTING_READ(PORT_HOTPLUG_EN);
2959
Chris Wilsona266c7d2012-04-24 22:59:44 +01002960 /* Enable in IER... */
2961 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
2962 /* and unmask in IMR */
2963 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
2964 }
2965
Chris Wilsona266c7d2012-04-24 22:59:44 +01002966 I915_WRITE(IMR, dev_priv->irq_mask);
2967 I915_WRITE(IER, enable_mask);
2968 POSTING_READ(IER);
2969
Jani Nikulaf49e38d2013-04-29 13:02:54 +03002970 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002971
2972 return 0;
2973}
2974
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002975/*
2976 * Returns true when a page flip has completed.
2977 */
2978static bool i915_handle_vblank(struct drm_device *dev,
2979 int plane, int pipe, u32 iir)
2980{
2981 drm_i915_private_t *dev_priv = dev->dev_private;
2982 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
2983
2984 if (!drm_handle_vblank(dev, pipe))
2985 return false;
2986
2987 if ((iir & flip_pending) == 0)
2988 return false;
2989
2990 intel_prepare_page_flip(dev, plane);
2991
2992 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2993 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2994 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2995 * the flip is completed (no longer pending). Since this doesn't raise
2996 * an interrupt per se, we watch for the change at vblank.
2997 */
2998 if (I915_READ(ISR) & flip_pending)
2999 return false;
3000
3001 intel_finish_page_flip(dev, pipe);
3002
3003 return true;
3004}
3005
Daniel Vetterff1f5252012-10-02 15:10:55 +02003006static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003007{
3008 struct drm_device *dev = (struct drm_device *) arg;
3009 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003010 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003011 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003012 u32 flip_mask =
3013 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3014 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003015 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003016
3017 atomic_inc(&dev_priv->irq_received);
3018
3019 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003020 do {
3021 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003022 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003023
3024 /* Can't rely on pipestat interrupt bit in iir as it might
3025 * have been cleared after the pipestat interrupt was received.
3026 * It doesn't set the bit in iir again, but it still produces
3027 * interrupts (for non-MSI).
3028 */
3029 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3030 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3031 i915_handle_error(dev, false);
3032
3033 for_each_pipe(pipe) {
3034 int reg = PIPESTAT(pipe);
3035 pipe_stats[pipe] = I915_READ(reg);
3036
Chris Wilson38bde182012-04-24 22:59:50 +01003037 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003038 if (pipe_stats[pipe] & 0x8000ffff) {
3039 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3040 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3041 pipe_name(pipe));
3042 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003043 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003044 }
3045 }
3046 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3047
3048 if (!irq_received)
3049 break;
3050
Chris Wilsona266c7d2012-04-24 22:59:44 +01003051 /* Consume port. Then clear IIR or we'll miss events */
3052 if ((I915_HAS_HOTPLUG(dev)) &&
3053 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3054 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003055 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003056
3057 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3058 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003059 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003060 if (hotplug_irq_storm_detect(dev, hotplug_trigger, hpd_status_i915))
3061 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003062 queue_work(dev_priv->wq,
3063 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003064 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003065 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003066 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003067 }
3068
Chris Wilson38bde182012-04-24 22:59:50 +01003069 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003070 new_iir = I915_READ(IIR); /* Flush posted writes */
3071
Chris Wilsona266c7d2012-04-24 22:59:44 +01003072 if (iir & I915_USER_INTERRUPT)
3073 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003074
Chris Wilsona266c7d2012-04-24 22:59:44 +01003075 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003076 int plane = pipe;
3077 if (IS_MOBILE(dev))
3078 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003079
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003080 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3081 i915_handle_vblank(dev, plane, pipe, iir))
3082 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003083
3084 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3085 blc_event = true;
3086 }
3087
Chris Wilsona266c7d2012-04-24 22:59:44 +01003088 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3089 intel_opregion_asle_intr(dev);
3090
3091 /* With MSI, interrupts are only generated when iir
3092 * transitions from zero to nonzero. If another bit got
3093 * set while we were handling the existing iir bits, then
3094 * we would never get another interrupt.
3095 *
3096 * This is fine on non-MSI as well, as if we hit this path
3097 * we avoid exiting the interrupt handler only to generate
3098 * another one.
3099 *
3100 * Note that for MSI this could cause a stray interrupt report
3101 * if an interrupt landed in the time between writing IIR and
3102 * the posting read. This should be rare enough to never
3103 * trigger the 99% of 100,000 interrupts test for disabling
3104 * stray interrupts.
3105 */
Chris Wilson38bde182012-04-24 22:59:50 +01003106 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003107 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003108 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003109
Daniel Vetterd05c6172012-04-26 23:28:09 +02003110 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003111
Chris Wilsona266c7d2012-04-24 22:59:44 +01003112 return ret;
3113}
3114
3115static void i915_irq_uninstall(struct drm_device * dev)
3116{
3117 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3118 int pipe;
3119
Egbert Eichac4c16c2013-04-16 13:36:58 +02003120 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3121
Chris Wilsona266c7d2012-04-24 22:59:44 +01003122 if (I915_HAS_HOTPLUG(dev)) {
3123 I915_WRITE(PORT_HOTPLUG_EN, 0);
3124 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3125 }
3126
Chris Wilson00d98eb2012-04-24 22:59:48 +01003127 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003128 for_each_pipe(pipe) {
3129 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003130 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003131 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3132 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003133 I915_WRITE(IMR, 0xffffffff);
3134 I915_WRITE(IER, 0x0);
3135
Chris Wilsona266c7d2012-04-24 22:59:44 +01003136 I915_WRITE(IIR, I915_READ(IIR));
3137}
3138
3139static void i965_irq_preinstall(struct drm_device * dev)
3140{
3141 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3142 int pipe;
3143
3144 atomic_set(&dev_priv->irq_received, 0);
3145
Chris Wilsonadca4732012-05-11 18:01:31 +01003146 I915_WRITE(PORT_HOTPLUG_EN, 0);
3147 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003148
3149 I915_WRITE(HWSTAM, 0xeffe);
3150 for_each_pipe(pipe)
3151 I915_WRITE(PIPESTAT(pipe), 0);
3152 I915_WRITE(IMR, 0xffffffff);
3153 I915_WRITE(IER, 0x0);
3154 POSTING_READ(IER);
3155}
3156
3157static int i965_irq_postinstall(struct drm_device *dev)
3158{
3159 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003160 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003161 u32 error_mask;
3162
Chris Wilsona266c7d2012-04-24 22:59:44 +01003163 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003164 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003165 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003166 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3167 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3168 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3169 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3170 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3171
3172 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003173 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3174 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003175 enable_mask |= I915_USER_INTERRUPT;
3176
3177 if (IS_G4X(dev))
3178 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003179
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003180 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003181
Chris Wilsona266c7d2012-04-24 22:59:44 +01003182 /*
3183 * Enable some error detection, note the instruction error mask
3184 * bit is reserved, so we leave it masked.
3185 */
3186 if (IS_G4X(dev)) {
3187 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3188 GM45_ERROR_MEM_PRIV |
3189 GM45_ERROR_CP_PRIV |
3190 I915_ERROR_MEMORY_REFRESH);
3191 } else {
3192 error_mask = ~(I915_ERROR_PAGE_TABLE |
3193 I915_ERROR_MEMORY_REFRESH);
3194 }
3195 I915_WRITE(EMR, error_mask);
3196
3197 I915_WRITE(IMR, dev_priv->irq_mask);
3198 I915_WRITE(IER, enable_mask);
3199 POSTING_READ(IER);
3200
Daniel Vetter20afbda2012-12-11 14:05:07 +01003201 I915_WRITE(PORT_HOTPLUG_EN, 0);
3202 POSTING_READ(PORT_HOTPLUG_EN);
3203
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003204 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003205
3206 return 0;
3207}
3208
Egbert Eichbac56d52013-02-25 12:06:51 -05003209static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003210{
3211 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003212 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003213 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003214 u32 hotplug_en;
3215
Egbert Eichbac56d52013-02-25 12:06:51 -05003216 if (I915_HAS_HOTPLUG(dev)) {
3217 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3218 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3219 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003220 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003221 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3222 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3223 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003224 /* Programming the CRT detection parameters tends
3225 to generate a spurious hotplug event about three
3226 seconds later. So just do it once.
3227 */
3228 if (IS_G4X(dev))
3229 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003230 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003231 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003232
Egbert Eichbac56d52013-02-25 12:06:51 -05003233 /* Ignore TV since it's buggy */
3234 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3235 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003236}
3237
Daniel Vetterff1f5252012-10-02 15:10:55 +02003238static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003239{
3240 struct drm_device *dev = (struct drm_device *) arg;
3241 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003242 u32 iir, new_iir;
3243 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003244 unsigned long irqflags;
3245 int irq_received;
3246 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003247 u32 flip_mask =
3248 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3249 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003250
3251 atomic_inc(&dev_priv->irq_received);
3252
3253 iir = I915_READ(IIR);
3254
Chris Wilsona266c7d2012-04-24 22:59:44 +01003255 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003256 bool blc_event = false;
3257
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003258 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003259
3260 /* Can't rely on pipestat interrupt bit in iir as it might
3261 * have been cleared after the pipestat interrupt was received.
3262 * It doesn't set the bit in iir again, but it still produces
3263 * interrupts (for non-MSI).
3264 */
3265 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3266 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3267 i915_handle_error(dev, false);
3268
3269 for_each_pipe(pipe) {
3270 int reg = PIPESTAT(pipe);
3271 pipe_stats[pipe] = I915_READ(reg);
3272
3273 /*
3274 * Clear the PIPE*STAT regs before the IIR
3275 */
3276 if (pipe_stats[pipe] & 0x8000ffff) {
3277 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3278 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3279 pipe_name(pipe));
3280 I915_WRITE(reg, pipe_stats[pipe]);
3281 irq_received = 1;
3282 }
3283 }
3284 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3285
3286 if (!irq_received)
3287 break;
3288
3289 ret = IRQ_HANDLED;
3290
3291 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003292 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003293 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003294 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3295 HOTPLUG_INT_STATUS_G4X :
3296 HOTPLUG_INT_STATUS_I965);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003297
3298 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3299 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003300 if (hotplug_trigger) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02003301 if (hotplug_irq_storm_detect(dev, hotplug_trigger,
3302 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i965))
3303 i915_hpd_irq_setup(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003304 queue_work(dev_priv->wq,
3305 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02003306 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003307 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3308 I915_READ(PORT_HOTPLUG_STAT);
3309 }
3310
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003311 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003312 new_iir = I915_READ(IIR); /* Flush posted writes */
3313
Chris Wilsona266c7d2012-04-24 22:59:44 +01003314 if (iir & I915_USER_INTERRUPT)
3315 notify_ring(dev, &dev_priv->ring[RCS]);
3316 if (iir & I915_BSD_USER_INTERRUPT)
3317 notify_ring(dev, &dev_priv->ring[VCS]);
3318
Chris Wilsona266c7d2012-04-24 22:59:44 +01003319 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003320 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003321 i915_handle_vblank(dev, pipe, pipe, iir))
3322 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003323
3324 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3325 blc_event = true;
3326 }
3327
3328
3329 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3330 intel_opregion_asle_intr(dev);
3331
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003332 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3333 gmbus_irq_handler(dev);
3334
Chris Wilsona266c7d2012-04-24 22:59:44 +01003335 /* With MSI, interrupts are only generated when iir
3336 * transitions from zero to nonzero. If another bit got
3337 * set while we were handling the existing iir bits, then
3338 * we would never get another interrupt.
3339 *
3340 * This is fine on non-MSI as well, as if we hit this path
3341 * we avoid exiting the interrupt handler only to generate
3342 * another one.
3343 *
3344 * Note that for MSI this could cause a stray interrupt report
3345 * if an interrupt landed in the time between writing IIR and
3346 * the posting read. This should be rare enough to never
3347 * trigger the 99% of 100,000 interrupts test for disabling
3348 * stray interrupts.
3349 */
3350 iir = new_iir;
3351 }
3352
Daniel Vetterd05c6172012-04-26 23:28:09 +02003353 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003354
Chris Wilsona266c7d2012-04-24 22:59:44 +01003355 return ret;
3356}
3357
3358static void i965_irq_uninstall(struct drm_device * dev)
3359{
3360 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3361 int pipe;
3362
3363 if (!dev_priv)
3364 return;
3365
Egbert Eichac4c16c2013-04-16 13:36:58 +02003366 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3367
Chris Wilsonadca4732012-05-11 18:01:31 +01003368 I915_WRITE(PORT_HOTPLUG_EN, 0);
3369 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003370
3371 I915_WRITE(HWSTAM, 0xffffffff);
3372 for_each_pipe(pipe)
3373 I915_WRITE(PIPESTAT(pipe), 0);
3374 I915_WRITE(IMR, 0xffffffff);
3375 I915_WRITE(IER, 0x0);
3376
3377 for_each_pipe(pipe)
3378 I915_WRITE(PIPESTAT(pipe),
3379 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3380 I915_WRITE(IIR, I915_READ(IIR));
3381}
3382
Egbert Eichac4c16c2013-04-16 13:36:58 +02003383static void i915_reenable_hotplug_timer_func(unsigned long data)
3384{
3385 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3386 struct drm_device *dev = dev_priv->dev;
3387 struct drm_mode_config *mode_config = &dev->mode_config;
3388 unsigned long irqflags;
3389 int i;
3390
3391 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3392 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3393 struct drm_connector *connector;
3394
3395 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3396 continue;
3397
3398 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3399
3400 list_for_each_entry(connector, &mode_config->connector_list, head) {
3401 struct intel_connector *intel_connector = to_intel_connector(connector);
3402
3403 if (intel_connector->encoder->hpd_pin == i) {
3404 if (connector->polled != intel_connector->polled)
3405 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3406 drm_get_connector_name(connector));
3407 connector->polled = intel_connector->polled;
3408 if (!connector->polled)
3409 connector->polled = DRM_CONNECTOR_POLL_HPD;
3410 }
3411 }
3412 }
3413 if (dev_priv->display.hpd_irq_setup)
3414 dev_priv->display.hpd_irq_setup(dev);
3415 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3416}
3417
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003418void intel_irq_init(struct drm_device *dev)
3419{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003420 struct drm_i915_private *dev_priv = dev->dev_private;
3421
3422 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003423 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003424 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003425 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003426
Daniel Vetter99584db2012-11-14 17:14:04 +01003427 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3428 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003429 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003430 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3431 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003432
Tomas Janousek97a19a22012-12-08 13:48:13 +01003433 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003434
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003435 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3436 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003437 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003438 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3439 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3440 }
3441
Keith Packardc3613de2011-08-12 17:05:54 -07003442 if (drm_core_check_feature(dev, DRIVER_MODESET))
3443 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3444 else
3445 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003446 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3447
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003448 if (IS_VALLEYVIEW(dev)) {
3449 dev->driver->irq_handler = valleyview_irq_handler;
3450 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3451 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3452 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3453 dev->driver->enable_vblank = valleyview_enable_vblank;
3454 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003455 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003456 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003457 /* Share pre & uninstall handlers with ILK/SNB */
3458 dev->driver->irq_handler = ivybridge_irq_handler;
3459 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3460 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3461 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3462 dev->driver->enable_vblank = ivybridge_enable_vblank;
3463 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003464 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003465 } else if (HAS_PCH_SPLIT(dev)) {
3466 dev->driver->irq_handler = ironlake_irq_handler;
3467 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3468 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3469 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3470 dev->driver->enable_vblank = ironlake_enable_vblank;
3471 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003472 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003473 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003474 if (INTEL_INFO(dev)->gen == 2) {
3475 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3476 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3477 dev->driver->irq_handler = i8xx_irq_handler;
3478 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003479 } else if (INTEL_INFO(dev)->gen == 3) {
3480 dev->driver->irq_preinstall = i915_irq_preinstall;
3481 dev->driver->irq_postinstall = i915_irq_postinstall;
3482 dev->driver->irq_uninstall = i915_irq_uninstall;
3483 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003484 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003485 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003486 dev->driver->irq_preinstall = i965_irq_preinstall;
3487 dev->driver->irq_postinstall = i965_irq_postinstall;
3488 dev->driver->irq_uninstall = i965_irq_uninstall;
3489 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003490 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003491 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003492 dev->driver->enable_vblank = i915_enable_vblank;
3493 dev->driver->disable_vblank = i915_disable_vblank;
3494 }
3495}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003496
3497void intel_hpd_init(struct drm_device *dev)
3498{
3499 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003500 struct drm_mode_config *mode_config = &dev->mode_config;
3501 struct drm_connector *connector;
3502 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003503
Egbert Eich821450c2013-04-16 13:36:55 +02003504 for (i = 1; i < HPD_NUM_PINS; i++) {
3505 dev_priv->hpd_stats[i].hpd_cnt = 0;
3506 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3507 }
3508 list_for_each_entry(connector, &mode_config->connector_list, head) {
3509 struct intel_connector *intel_connector = to_intel_connector(connector);
3510 connector->polled = intel_connector->polled;
3511 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3512 connector->polled = DRM_CONNECTOR_POLL_HPD;
3513 }
Daniel Vetter20afbda2012-12-11 14:05:07 +01003514 if (dev_priv->display.hpd_irq_setup)
3515 dev_priv->display.hpd_irq_setup(dev);
3516}