blob: c2e11a0fa40c08a53ccc8bfa4b5ff53adbc9552c [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
Egbert Eiche5868a32013-02-28 04:17:12 -050073static const u32 hpd_status_i915[] = { /* i915 and valleyview are the same */
74 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
75 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
76 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
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
Zhenyu Wang036a4a72009-06-08 14:40:19 +080082/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +010083static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050084ironlake_enable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080085{
Daniel Vetter4bc9d432013-06-27 13:44:58 +020086 assert_spin_locked(&dev_priv->irq_lock);
87
Chris Wilson1ec14ad2010-12-04 11:30:53 +000088 if ((dev_priv->irq_mask & mask) != 0) {
89 dev_priv->irq_mask &= ~mask;
90 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +000091 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +080092 }
93}
94
Paulo Zanoni0ff98002013-02-22 17:05:31 -030095static void
Adam Jacksonf2b115e2009-12-03 17:14:42 -050096ironlake_disable_display_irq(drm_i915_private_t *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +080097{
Daniel Vetter4bc9d432013-06-27 13:44:58 +020098 assert_spin_locked(&dev_priv->irq_lock);
99
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000100 if ((dev_priv->irq_mask & mask) != mask) {
101 dev_priv->irq_mask |= mask;
102 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000103 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800104 }
105}
106
Paulo Zanoni86642812013-04-12 17:57:57 -0300107static bool ivb_can_enable_err_int(struct drm_device *dev)
108{
109 struct drm_i915_private *dev_priv = dev->dev_private;
110 struct intel_crtc *crtc;
111 enum pipe pipe;
112
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200113 assert_spin_locked(&dev_priv->irq_lock);
114
Paulo Zanoni86642812013-04-12 17:57:57 -0300115 for_each_pipe(pipe) {
116 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
117
118 if (crtc->cpu_fifo_underrun_disabled)
119 return false;
120 }
121
122 return true;
123}
124
125static bool cpt_can_enable_serr_int(struct drm_device *dev)
126{
127 struct drm_i915_private *dev_priv = dev->dev_private;
128 enum pipe pipe;
129 struct intel_crtc *crtc;
130
131 for_each_pipe(pipe) {
132 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
133
134 if (crtc->pch_fifo_underrun_disabled)
135 return false;
136 }
137
138 return true;
139}
140
141static void ironlake_set_fifo_underrun_reporting(struct drm_device *dev,
142 enum pipe pipe, bool enable)
143{
144 struct drm_i915_private *dev_priv = dev->dev_private;
145 uint32_t bit = (pipe == PIPE_A) ? DE_PIPEA_FIFO_UNDERRUN :
146 DE_PIPEB_FIFO_UNDERRUN;
147
148 if (enable)
149 ironlake_enable_display_irq(dev_priv, bit);
150 else
151 ironlake_disable_display_irq(dev_priv, bit);
152}
153
154static void ivybridge_set_fifo_underrun_reporting(struct drm_device *dev,
155 bool enable)
156{
157 struct drm_i915_private *dev_priv = dev->dev_private;
158
159 if (enable) {
160 if (!ivb_can_enable_err_int(dev))
161 return;
162
163 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN_A |
164 ERR_INT_FIFO_UNDERRUN_B |
165 ERR_INT_FIFO_UNDERRUN_C);
166
167 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
168 } else {
169 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
170 }
171}
172
173static void ibx_set_fifo_underrun_reporting(struct intel_crtc *crtc,
174 bool enable)
175{
176 struct drm_device *dev = crtc->base.dev;
177 struct drm_i915_private *dev_priv = dev->dev_private;
178 uint32_t bit = (crtc->pipe == PIPE_A) ? SDE_TRANSA_FIFO_UNDER :
179 SDE_TRANSB_FIFO_UNDER;
180
181 if (enable)
182 I915_WRITE(SDEIMR, I915_READ(SDEIMR) & ~bit);
183 else
184 I915_WRITE(SDEIMR, I915_READ(SDEIMR) | bit);
185
186 POSTING_READ(SDEIMR);
187}
188
189static void cpt_set_fifo_underrun_reporting(struct drm_device *dev,
190 enum transcoder pch_transcoder,
191 bool enable)
192{
193 struct drm_i915_private *dev_priv = dev->dev_private;
194
195 if (enable) {
196 if (!cpt_can_enable_serr_int(dev))
197 return;
198
199 I915_WRITE(SERR_INT, SERR_INT_TRANS_A_FIFO_UNDERRUN |
200 SERR_INT_TRANS_B_FIFO_UNDERRUN |
201 SERR_INT_TRANS_C_FIFO_UNDERRUN);
202
203 I915_WRITE(SDEIMR, I915_READ(SDEIMR) & ~SDE_ERROR_CPT);
204 } else {
205 I915_WRITE(SDEIMR, I915_READ(SDEIMR) | SDE_ERROR_CPT);
206 }
207
208 POSTING_READ(SDEIMR);
209}
210
211/**
212 * intel_set_cpu_fifo_underrun_reporting - enable/disable FIFO underrun messages
213 * @dev: drm device
214 * @pipe: pipe
215 * @enable: true if we want to report FIFO underrun errors, false otherwise
216 *
217 * This function makes us disable or enable CPU fifo underruns for a specific
218 * pipe. Notice that on some Gens (e.g. IVB, HSW), disabling FIFO underrun
219 * reporting for one pipe may also disable all the other CPU error interruts for
220 * the other pipes, due to the fact that there's just one interrupt mask/enable
221 * bit for all the pipes.
222 *
223 * Returns the previous state of underrun reporting.
224 */
225bool intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
226 enum pipe pipe, bool enable)
227{
228 struct drm_i915_private *dev_priv = dev->dev_private;
229 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
230 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
231 unsigned long flags;
232 bool ret;
233
234 spin_lock_irqsave(&dev_priv->irq_lock, flags);
235
236 ret = !intel_crtc->cpu_fifo_underrun_disabled;
237
238 if (enable == ret)
239 goto done;
240
241 intel_crtc->cpu_fifo_underrun_disabled = !enable;
242
243 if (IS_GEN5(dev) || IS_GEN6(dev))
244 ironlake_set_fifo_underrun_reporting(dev, pipe, enable);
245 else if (IS_GEN7(dev))
246 ivybridge_set_fifo_underrun_reporting(dev, enable);
247
248done:
249 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
250 return ret;
251}
252
253/**
254 * intel_set_pch_fifo_underrun_reporting - enable/disable FIFO underrun messages
255 * @dev: drm device
256 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
257 * @enable: true if we want to report FIFO underrun errors, false otherwise
258 *
259 * This function makes us disable or enable PCH fifo underruns for a specific
260 * PCH transcoder. Notice that on some PCHs (e.g. CPT/PPT), disabling FIFO
261 * underrun reporting for one transcoder may also disable all the other PCH
262 * error interruts for the other transcoders, due to the fact that there's just
263 * one interrupt mask/enable bit for all the transcoders.
264 *
265 * Returns the previous state of underrun reporting.
266 */
267bool intel_set_pch_fifo_underrun_reporting(struct drm_device *dev,
268 enum transcoder pch_transcoder,
269 bool enable)
270{
271 struct drm_i915_private *dev_priv = dev->dev_private;
272 enum pipe p;
273 struct drm_crtc *crtc;
274 struct intel_crtc *intel_crtc;
275 unsigned long flags;
276 bool ret;
277
278 if (HAS_PCH_LPT(dev)) {
279 crtc = NULL;
280 for_each_pipe(p) {
281 struct drm_crtc *c = dev_priv->pipe_to_crtc_mapping[p];
282 if (intel_pipe_has_type(c, INTEL_OUTPUT_ANALOG)) {
283 crtc = c;
284 break;
285 }
286 }
287 if (!crtc) {
288 DRM_ERROR("PCH FIFO underrun, but no CRTC using the PCH found\n");
289 return false;
290 }
291 } else {
292 crtc = dev_priv->pipe_to_crtc_mapping[pch_transcoder];
293 }
294 intel_crtc = to_intel_crtc(crtc);
295
296 spin_lock_irqsave(&dev_priv->irq_lock, flags);
297
298 ret = !intel_crtc->pch_fifo_underrun_disabled;
299
300 if (enable == ret)
301 goto done;
302
303 intel_crtc->pch_fifo_underrun_disabled = !enable;
304
305 if (HAS_PCH_IBX(dev))
306 ibx_set_fifo_underrun_reporting(intel_crtc, enable);
307 else
308 cpt_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
309
310done:
311 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
312 return ret;
313}
314
315
Keith Packard7c463582008-11-04 02:03:27 -0800316void
317i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
318{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200319 u32 reg = PIPESTAT(pipe);
320 u32 pipestat = I915_READ(reg) & 0x7fff0000;
Keith Packard7c463582008-11-04 02:03:27 -0800321
Daniel Vetterb79480b2013-06-27 17:52:10 +0200322 assert_spin_locked(&dev_priv->irq_lock);
323
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200324 if ((pipestat & mask) == mask)
325 return;
326
327 /* Enable the interrupt, clear any pending status */
328 pipestat |= mask | (mask >> 16);
329 I915_WRITE(reg, pipestat);
330 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800331}
332
333void
334i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
335{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200336 u32 reg = PIPESTAT(pipe);
337 u32 pipestat = I915_READ(reg) & 0x7fff0000;
Keith Packard7c463582008-11-04 02:03:27 -0800338
Daniel Vetterb79480b2013-06-27 17:52:10 +0200339 assert_spin_locked(&dev_priv->irq_lock);
340
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200341 if ((pipestat & mask) == 0)
342 return;
343
344 pipestat &= ~mask;
345 I915_WRITE(reg, pipestat);
346 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800347}
348
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000349/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300350 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000351 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300352static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000353{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000354 drm_i915_private_t *dev_priv = dev->dev_private;
355 unsigned long irqflags;
356
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300357 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
358 return;
359
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000360 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000361
Jani Nikulaf8987802013-04-29 13:02:53 +0300362 i915_enable_pipestat(dev_priv, 1, PIPE_LEGACY_BLC_EVENT_ENABLE);
363 if (INTEL_INFO(dev)->gen >= 4)
364 i915_enable_pipestat(dev_priv, 0, PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000365
366 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000367}
368
369/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700370 * i915_pipe_enabled - check if a pipe is enabled
371 * @dev: DRM device
372 * @pipe: pipe to check
373 *
374 * Reading certain registers when the pipe is disabled can hang the chip.
375 * Use this routine to make sure the PLL is running and the pipe is active
376 * before reading such registers if unsure.
377 */
378static int
379i915_pipe_enabled(struct drm_device *dev, int pipe)
380{
381 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200382
Daniel Vettera01025a2013-05-22 00:50:23 +0200383 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
384 /* Locking is horribly broken here, but whatever. */
385 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
386 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300387
Daniel Vettera01025a2013-05-22 00:50:23 +0200388 return intel_crtc->active;
389 } else {
390 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
391 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700392}
393
Keith Packard42f52ef2008-10-18 19:39:29 -0700394/* Called from drm generic code, passed a 'crtc', which
395 * we use as a pipe index
396 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700397static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700398{
399 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
400 unsigned long high_frame;
401 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100402 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700403
404 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800405 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800406 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700407 return 0;
408 }
409
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800410 high_frame = PIPEFRAME(pipe);
411 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100412
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700413 /*
414 * High & low register fields aren't synchronized, so make sure
415 * we get a low value that's stable across two reads of the high
416 * register.
417 */
418 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100419 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
420 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
421 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700422 } while (high1 != high2);
423
Chris Wilson5eddb702010-09-11 13:48:45 +0100424 high1 >>= PIPE_FRAME_HIGH_SHIFT;
425 low >>= PIPE_FRAME_LOW_SHIFT;
426 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700427}
428
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700429static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800430{
431 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800432 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800433
434 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800435 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800436 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800437 return 0;
438 }
439
440 return I915_READ(reg);
441}
442
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700443static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100444 int *vpos, int *hpos)
445{
446 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
447 u32 vbl = 0, position = 0;
448 int vbl_start, vbl_end, htotal, vtotal;
449 bool in_vbl = true;
450 int ret = 0;
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200451 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
452 pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100453
454 if (!i915_pipe_enabled(dev, pipe)) {
455 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800456 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100457 return 0;
458 }
459
460 /* Get vtotal. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200461 vtotal = 1 + ((I915_READ(VTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100462
463 if (INTEL_INFO(dev)->gen >= 4) {
464 /* No obvious pixelcount register. Only query vertical
465 * scanout position from Display scan line register.
466 */
467 position = I915_READ(PIPEDSL(pipe));
468
469 /* Decode into vertical scanout position. Don't have
470 * horizontal scanout position.
471 */
472 *vpos = position & 0x1fff;
473 *hpos = 0;
474 } else {
475 /* Have access to pixelcount since start of frame.
476 * We can split this into vertical and horizontal
477 * scanout position.
478 */
479 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
480
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200481 htotal = 1 + ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100482 *vpos = position / htotal;
483 *hpos = position - (*vpos * htotal);
484 }
485
486 /* Query vblank area. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200487 vbl = I915_READ(VBLANK(cpu_transcoder));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100488
489 /* Test position against vblank region. */
490 vbl_start = vbl & 0x1fff;
491 vbl_end = (vbl >> 16) & 0x1fff;
492
493 if ((*vpos < vbl_start) || (*vpos > vbl_end))
494 in_vbl = false;
495
496 /* Inside "upper part" of vblank area? Apply corrective offset: */
497 if (in_vbl && (*vpos >= vbl_start))
498 *vpos = *vpos - vtotal;
499
500 /* Readouts valid? */
501 if (vbl > 0)
502 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
503
504 /* In vblank? */
505 if (in_vbl)
506 ret |= DRM_SCANOUTPOS_INVBL;
507
508 return ret;
509}
510
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700511static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100512 int *max_error,
513 struct timeval *vblank_time,
514 unsigned flags)
515{
Chris Wilson4041b852011-01-22 10:07:56 +0000516 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100517
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700518 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000519 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100520 return -EINVAL;
521 }
522
523 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000524 crtc = intel_get_crtc_for_pipe(dev, pipe);
525 if (crtc == NULL) {
526 DRM_ERROR("Invalid crtc %d\n", pipe);
527 return -EINVAL;
528 }
529
530 if (!crtc->enabled) {
531 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
532 return -EBUSY;
533 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100534
535 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000536 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
537 vblank_time, flags,
538 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100539}
540
Egbert Eich321a1b32013-04-11 16:00:26 +0200541static int intel_hpd_irq_event(struct drm_device *dev, struct drm_connector *connector)
542{
543 enum drm_connector_status old_status;
544
545 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
546 old_status = connector->status;
547
548 connector->status = connector->funcs->detect(connector, false);
549 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
550 connector->base.id,
551 drm_get_connector_name(connector),
552 old_status, connector->status);
553 return (old_status != connector->status);
554}
555
Jesse Barnes5ca58282009-03-31 14:11:15 -0700556/*
557 * Handle hotplug events outside the interrupt handler proper.
558 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200559#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
560
Jesse Barnes5ca58282009-03-31 14:11:15 -0700561static void i915_hotplug_work_func(struct work_struct *work)
562{
563 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
564 hotplug_work);
565 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700566 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200567 struct intel_connector *intel_connector;
568 struct intel_encoder *intel_encoder;
569 struct drm_connector *connector;
570 unsigned long irqflags;
571 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200572 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200573 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700574
Daniel Vetter52d7ece2012-12-01 21:03:22 +0100575 /* HPD irq before everything is fully set up. */
576 if (!dev_priv->enable_hotplug_processing)
577 return;
578
Keith Packarda65e34c2011-07-25 10:04:56 -0700579 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800580 DRM_DEBUG_KMS("running encoder hotplug functions\n");
581
Egbert Eichcd569ae2013-04-16 13:36:57 +0200582 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +0200583
584 hpd_event_bits = dev_priv->hpd_event_bits;
585 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200586 list_for_each_entry(connector, &mode_config->connector_list, head) {
587 intel_connector = to_intel_connector(connector);
588 intel_encoder = intel_connector->encoder;
589 if (intel_encoder->hpd_pin > HPD_NONE &&
590 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
591 connector->polled == DRM_CONNECTOR_POLL_HPD) {
592 DRM_INFO("HPD interrupt storm detected on connector %s: "
593 "switching from hotplug detection to polling\n",
594 drm_get_connector_name(connector));
595 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
596 connector->polled = DRM_CONNECTOR_POLL_CONNECT
597 | DRM_CONNECTOR_POLL_DISCONNECT;
598 hpd_disabled = true;
599 }
Egbert Eich142e2392013-04-11 15:57:57 +0200600 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
601 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
602 drm_get_connector_name(connector), intel_encoder->hpd_pin);
603 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200604 }
605 /* if there were no outputs to poll, poll was disabled,
606 * therefore make sure it's enabled when disabling HPD on
607 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200608 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200609 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +0200610 mod_timer(&dev_priv->hotplug_reenable_timer,
611 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
612 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200613
614 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
615
Egbert Eich321a1b32013-04-11 16:00:26 +0200616 list_for_each_entry(connector, &mode_config->connector_list, head) {
617 intel_connector = to_intel_connector(connector);
618 intel_encoder = intel_connector->encoder;
619 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
620 if (intel_encoder->hot_plug)
621 intel_encoder->hot_plug(intel_encoder);
622 if (intel_hpd_irq_event(dev, connector))
623 changed = true;
624 }
625 }
Keith Packard40ee3382011-07-28 15:31:19 -0700626 mutex_unlock(&mode_config->mutex);
627
Egbert Eich321a1b32013-04-11 16:00:26 +0200628 if (changed)
629 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700630}
631
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200632static void ironlake_handle_rps_change(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800633{
634 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000635 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200636 u8 new_delay;
637 unsigned long flags;
638
639 spin_lock_irqsave(&mchdev_lock, flags);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800640
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200641 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
642
Daniel Vetter20e4d402012-08-08 23:35:39 +0200643 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200644
Jesse Barnes7648fa92010-05-20 14:28:11 -0700645 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000646 busy_up = I915_READ(RCPREVBSYTUPAVG);
647 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800648 max_avg = I915_READ(RCBMAXAVG);
649 min_avg = I915_READ(RCBMINAVG);
650
651 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000652 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200653 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
654 new_delay = dev_priv->ips.cur_delay - 1;
655 if (new_delay < dev_priv->ips.max_delay)
656 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000657 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200658 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
659 new_delay = dev_priv->ips.cur_delay + 1;
660 if (new_delay > dev_priv->ips.min_delay)
661 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800662 }
663
Jesse Barnes7648fa92010-05-20 14:28:11 -0700664 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200665 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800666
Daniel Vetter92703882012-08-09 16:46:01 +0200667 spin_unlock_irqrestore(&mchdev_lock, flags);
668
Jesse Barnesf97108d2010-01-29 11:27:07 -0800669 return;
670}
671
Chris Wilson549f7362010-10-19 11:19:32 +0100672static void notify_ring(struct drm_device *dev,
673 struct intel_ring_buffer *ring)
674{
675 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9862e602011-01-04 22:22:17 +0000676
Chris Wilson475553d2011-01-20 09:52:56 +0000677 if (ring->obj == NULL)
678 return;
679
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100680 trace_i915_gem_request_complete(ring, ring->get_seqno(ring, false));
Chris Wilson9862e602011-01-04 22:22:17 +0000681
Chris Wilson549f7362010-10-19 11:19:32 +0100682 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700683 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +0100684 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +0100685 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700686 }
Chris Wilson549f7362010-10-19 11:19:32 +0100687}
688
Ben Widawsky4912d042011-04-25 11:25:20 -0700689static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800690{
Ben Widawsky4912d042011-04-25 11:25:20 -0700691 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200692 rps.work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700693 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100694 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800695
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200696 spin_lock_irq(&dev_priv->rps.lock);
697 pm_iir = dev_priv->rps.pm_iir;
698 dev_priv->rps.pm_iir = 0;
Ben Widawsky4912d042011-04-25 11:25:20 -0700699 pm_imr = I915_READ(GEN6_PMIMR);
Ben Widawsky48484052013-05-28 19:22:27 -0700700 /* Make sure not to corrupt PMIMR state used by ringbuffer code */
701 I915_WRITE(GEN6_PMIMR, pm_imr & ~GEN6_PM_RPS_EVENTS);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200702 spin_unlock_irq(&dev_priv->rps.lock);
Ben Widawsky4912d042011-04-25 11:25:20 -0700703
Ben Widawsky48484052013-05-28 19:22:27 -0700704 if ((pm_iir & GEN6_PM_RPS_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800705 return;
706
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700707 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100708
Ville Syrjälä74250342013-06-25 21:38:11 +0300709 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200710 new_delay = dev_priv->rps.cur_delay + 1;
Ville Syrjälä74250342013-06-25 21:38:11 +0300711
712 /*
713 * For better performance, jump directly
714 * to RPe if we're below it.
715 */
716 if (IS_VALLEYVIEW(dev_priv->dev) &&
717 dev_priv->rps.cur_delay < dev_priv->rps.rpe_delay)
718 new_delay = dev_priv->rps.rpe_delay;
719 } else
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200720 new_delay = dev_priv->rps.cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800721
Ben Widawsky79249632012-09-07 19:43:42 -0700722 /* sysfs frequency interfaces may have snuck in while servicing the
723 * interrupt
724 */
Ville Syrjäläd8289c92013-06-25 19:21:05 +0300725 if (new_delay >= dev_priv->rps.min_delay &&
726 new_delay <= dev_priv->rps.max_delay) {
Jesse Barnes0a073b82013-04-17 15:54:58 -0700727 if (IS_VALLEYVIEW(dev_priv->dev))
728 valleyview_set_rps(dev_priv->dev, new_delay);
729 else
730 gen6_set_rps(dev_priv->dev, new_delay);
Ben Widawsky79249632012-09-07 19:43:42 -0700731 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800732
Jesse Barnes52ceb902013-04-23 10:09:26 -0700733 if (IS_VALLEYVIEW(dev_priv->dev)) {
734 /*
735 * On VLV, when we enter RC6 we may not be at the minimum
736 * voltage level, so arm a timer to check. It should only
737 * fire when there's activity or once after we've entered
738 * RC6, and then won't be re-armed until the next RPS interrupt.
739 */
740 mod_delayed_work(dev_priv->wq, &dev_priv->rps.vlv_work,
741 msecs_to_jiffies(100));
742 }
743
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700744 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800745}
746
Ben Widawskye3689192012-05-25 16:56:22 -0700747
748/**
749 * ivybridge_parity_work - Workqueue called when a parity error interrupt
750 * occurred.
751 * @work: workqueue struct
752 *
753 * Doesn't actually do anything except notify userspace. As a consequence of
754 * this event, userspace should try to remap the bad rows since statistically
755 * it is likely the same row is more likely to go bad again.
756 */
757static void ivybridge_parity_work(struct work_struct *work)
758{
759 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100760 l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700761 u32 error_status, row, bank, subbank;
762 char *parity_event[5];
763 uint32_t misccpctl;
764 unsigned long flags;
765
766 /* We must turn off DOP level clock gating to access the L3 registers.
767 * In order to prevent a get/put style interface, acquire struct mutex
768 * any time we access those registers.
769 */
770 mutex_lock(&dev_priv->dev->struct_mutex);
771
772 misccpctl = I915_READ(GEN7_MISCCPCTL);
773 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
774 POSTING_READ(GEN7_MISCCPCTL);
775
776 error_status = I915_READ(GEN7_L3CDERRST1);
777 row = GEN7_PARITY_ERROR_ROW(error_status);
778 bank = GEN7_PARITY_ERROR_BANK(error_status);
779 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
780
781 I915_WRITE(GEN7_L3CDERRST1, GEN7_PARITY_ERROR_VALID |
782 GEN7_L3CDERRST1_ENABLE);
783 POSTING_READ(GEN7_L3CDERRST1);
784
785 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
786
787 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Ben Widawskycc609d52013-05-28 19:22:29 -0700788 dev_priv->gt_irq_mask &= ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Ben Widawskye3689192012-05-25 16:56:22 -0700789 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
790 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
791
792 mutex_unlock(&dev_priv->dev->struct_mutex);
793
794 parity_event[0] = "L3_PARITY_ERROR=1";
795 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
796 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
797 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
798 parity_event[4] = NULL;
799
800 kobject_uevent_env(&dev_priv->dev->primary->kdev.kobj,
801 KOBJ_CHANGE, parity_event);
802
803 DRM_DEBUG("Parity error: Row = %d, Bank = %d, Sub bank = %d.\n",
804 row, bank, subbank);
805
806 kfree(parity_event[3]);
807 kfree(parity_event[2]);
808 kfree(parity_event[1]);
809}
810
Daniel Vetterd2ba8472012-05-31 14:57:41 +0200811static void ivybridge_handle_parity_error(struct drm_device *dev)
Ben Widawskye3689192012-05-25 16:56:22 -0700812{
813 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
814 unsigned long flags;
815
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700816 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskye3689192012-05-25 16:56:22 -0700817 return;
818
819 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Ben Widawskycc609d52013-05-28 19:22:29 -0700820 dev_priv->gt_irq_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Ben Widawskye3689192012-05-25 16:56:22 -0700821 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
822 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
823
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100824 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700825}
826
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200827static void snb_gt_irq_handler(struct drm_device *dev,
828 struct drm_i915_private *dev_priv,
829 u32 gt_iir)
830{
831
Ben Widawskycc609d52013-05-28 19:22:29 -0700832 if (gt_iir &
833 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200834 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -0700835 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200836 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -0700837 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200838 notify_ring(dev, &dev_priv->ring[BCS]);
839
Ben Widawskycc609d52013-05-28 19:22:29 -0700840 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
841 GT_BSD_CS_ERROR_INTERRUPT |
842 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200843 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
844 i915_handle_error(dev, false);
845 }
Ben Widawskye3689192012-05-25 16:56:22 -0700846
Ben Widawskycc609d52013-05-28 19:22:29 -0700847 if (gt_iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
Ben Widawskye3689192012-05-25 16:56:22 -0700848 ivybridge_handle_parity_error(dev);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200849}
850
Ben Widawskybaf02a12013-05-28 19:22:24 -0700851/* Legacy way of handling PM interrupts */
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100852static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
853 u32 pm_iir)
854{
855 unsigned long flags;
856
857 /*
858 * IIR bits should never already be set because IMR should
859 * prevent an interrupt from being shown in IIR. The warning
860 * displays a case where we've unsafely cleared
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200861 * dev_priv->rps.pm_iir. Although missing an interrupt of the same
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100862 * type is not a problem, it displays a problem in the logic.
863 *
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200864 * The mask bit in IMR is cleared by dev_priv->rps.work.
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100865 */
866
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200867 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200868 dev_priv->rps.pm_iir |= pm_iir;
869 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100870 POSTING_READ(GEN6_PMIMR);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200871 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100872
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200873 queue_work(dev_priv->wq, &dev_priv->rps.work);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100874}
875
Egbert Eichb543fb02013-04-16 13:36:54 +0200876#define HPD_STORM_DETECT_PERIOD 1000
877#define HPD_STORM_THRESHOLD 5
878
Daniel Vetter10a504d2013-06-27 17:52:12 +0200879static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +0200880 u32 hotplug_trigger,
881 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +0200882{
883 drm_i915_private_t *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +0200884 int i;
Daniel Vetter10a504d2013-06-27 17:52:12 +0200885 bool storm_detected = false;
Egbert Eichb543fb02013-04-16 13:36:54 +0200886
Daniel Vetter91d131d2013-06-27 17:52:14 +0200887 if (!hotplug_trigger)
888 return;
889
Daniel Vetterb5ea2d52013-06-27 17:52:15 +0200890 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +0200891 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +0200892
Egbert Eichb543fb02013-04-16 13:36:54 +0200893 if (!(hpd[i] & hotplug_trigger) ||
894 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
895 continue;
896
Jani Nikulabc5ead8c2013-05-07 15:10:29 +0300897 dev_priv->hpd_event_bits |= (1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200898 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
899 dev_priv->hpd_stats[i].hpd_last_jiffies
900 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
901 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
902 dev_priv->hpd_stats[i].hpd_cnt = 0;
903 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
904 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +0200905 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200906 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +0200907 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +0200908 } else {
909 dev_priv->hpd_stats[i].hpd_cnt++;
910 }
911 }
912
Daniel Vetter10a504d2013-06-27 17:52:12 +0200913 if (storm_detected)
914 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +0200915 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +0200916
917 queue_work(dev_priv->wq,
918 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200919}
920
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100921static void gmbus_irq_handler(struct drm_device *dev)
922{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100923 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
924
Daniel Vetter28c70f12012-12-01 13:53:45 +0100925 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100926}
927
Daniel Vetterce99c252012-12-01 13:53:47 +0100928static void dp_aux_irq_handler(struct drm_device *dev)
929{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100930 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
931
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100932 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +0100933}
934
Ben Widawskybaf02a12013-05-28 19:22:24 -0700935/* Unlike gen6_queue_rps_work() from which this function is originally derived,
936 * we must be able to deal with other PM interrupts. This is complicated because
937 * of the way in which we use the masks to defer the RPS work (which for
938 * posterity is necessary because of forcewake).
939 */
940static void hsw_pm_irq_handler(struct drm_i915_private *dev_priv,
941 u32 pm_iir)
942{
943 unsigned long flags;
944
945 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Ben Widawsky48484052013-05-28 19:22:27 -0700946 dev_priv->rps.pm_iir |= pm_iir & GEN6_PM_RPS_EVENTS;
Ben Widawskybaf02a12013-05-28 19:22:24 -0700947 if (dev_priv->rps.pm_iir) {
948 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
949 /* never want to mask useful interrupts. (also posting read) */
Ben Widawsky48484052013-05-28 19:22:27 -0700950 WARN_ON(I915_READ_NOTRACE(GEN6_PMIMR) & ~GEN6_PM_RPS_EVENTS);
Ben Widawskybaf02a12013-05-28 19:22:24 -0700951 /* TODO: if queue_work is slow, move it out of the spinlock */
952 queue_work(dev_priv->wq, &dev_priv->rps.work);
953 }
954 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
955
Ben Widawsky12638c52013-05-28 19:22:31 -0700956 if (pm_iir & ~GEN6_PM_RPS_EVENTS) {
957 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
958 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
959
960 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
961 DRM_ERROR("VEBOX CS error interrupt 0x%08x\n", pm_iir);
962 i915_handle_error(dev_priv->dev, false);
963 }
964 }
Ben Widawskybaf02a12013-05-28 19:22:24 -0700965}
966
Daniel Vetterff1f5252012-10-02 15:10:55 +0200967static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700968{
969 struct drm_device *dev = (struct drm_device *) arg;
970 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
971 u32 iir, gt_iir, pm_iir;
972 irqreturn_t ret = IRQ_NONE;
973 unsigned long irqflags;
974 int pipe;
975 u32 pipe_stats[I915_MAX_PIPES];
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700976
977 atomic_inc(&dev_priv->irq_received);
978
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700979 while (true) {
980 iir = I915_READ(VLV_IIR);
981 gt_iir = I915_READ(GTIIR);
982 pm_iir = I915_READ(GEN6_PMIIR);
983
984 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
985 goto out;
986
987 ret = IRQ_HANDLED;
988
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200989 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700990
991 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
992 for_each_pipe(pipe) {
993 int reg = PIPESTAT(pipe);
994 pipe_stats[pipe] = I915_READ(reg);
995
996 /*
997 * Clear the PIPE*STAT regs before the IIR
998 */
999 if (pipe_stats[pipe] & 0x8000ffff) {
1000 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1001 DRM_DEBUG_DRIVER("pipe %c underrun\n",
1002 pipe_name(pipe));
1003 I915_WRITE(reg, pipe_stats[pipe]);
1004 }
1005 }
1006 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1007
Jesse Barnes31acc7f2012-06-20 10:53:11 -07001008 for_each_pipe(pipe) {
1009 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
1010 drm_handle_vblank(dev, pipe);
1011
1012 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
1013 intel_prepare_page_flip(dev, pipe);
1014 intel_finish_page_flip(dev, pipe);
1015 }
1016 }
1017
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001018 /* Consume port. Then clear IIR or we'll miss events */
1019 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
1020 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02001021 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001022
1023 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
1024 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02001025
1026 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
1027
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001028 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1029 I915_READ(PORT_HOTPLUG_STAT);
1030 }
1031
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001032 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1033 gmbus_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001034
Ben Widawsky48484052013-05-28 19:22:27 -07001035 if (pm_iir & GEN6_PM_RPS_EVENTS)
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001036 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001037
1038 I915_WRITE(GTIIR, gt_iir);
1039 I915_WRITE(GEN6_PMIIR, pm_iir);
1040 I915_WRITE(VLV_IIR, iir);
1041 }
1042
1043out:
1044 return ret;
1045}
1046
Adam Jackson23e81d62012-06-06 15:45:44 -04001047static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001048{
1049 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001050 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001051 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001052
Daniel Vetter91d131d2013-06-27 17:52:14 +02001053 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_ibx);
1054
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001055 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1056 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1057 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001058 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001059 port_name(port));
1060 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001061
Daniel Vetterce99c252012-12-01 13:53:47 +01001062 if (pch_iir & SDE_AUX_MASK)
1063 dp_aux_irq_handler(dev);
1064
Jesse Barnes776ad802011-01-04 15:09:39 -08001065 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001066 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001067
1068 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1069 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1070
1071 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1072 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1073
1074 if (pch_iir & SDE_POISON)
1075 DRM_ERROR("PCH poison interrupt\n");
1076
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001077 if (pch_iir & SDE_FDI_MASK)
1078 for_each_pipe(pipe)
1079 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1080 pipe_name(pipe),
1081 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001082
1083 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1084 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1085
1086 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1087 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1088
Jesse Barnes776ad802011-01-04 15:09:39 -08001089 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001090 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1091 false))
1092 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1093
1094 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1095 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1096 false))
1097 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1098}
1099
1100static void ivb_err_int_handler(struct drm_device *dev)
1101{
1102 struct drm_i915_private *dev_priv = dev->dev_private;
1103 u32 err_int = I915_READ(GEN7_ERR_INT);
1104
Paulo Zanonide032bf2013-04-12 17:57:58 -03001105 if (err_int & ERR_INT_POISON)
1106 DRM_ERROR("Poison interrupt\n");
1107
Paulo Zanoni86642812013-04-12 17:57:57 -03001108 if (err_int & ERR_INT_FIFO_UNDERRUN_A)
1109 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1110 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1111
1112 if (err_int & ERR_INT_FIFO_UNDERRUN_B)
1113 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1114 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1115
1116 if (err_int & ERR_INT_FIFO_UNDERRUN_C)
1117 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_C, false))
1118 DRM_DEBUG_DRIVER("Pipe C FIFO underrun\n");
1119
1120 I915_WRITE(GEN7_ERR_INT, err_int);
1121}
1122
1123static void cpt_serr_int_handler(struct drm_device *dev)
1124{
1125 struct drm_i915_private *dev_priv = dev->dev_private;
1126 u32 serr_int = I915_READ(SERR_INT);
1127
Paulo Zanonide032bf2013-04-12 17:57:58 -03001128 if (serr_int & SERR_INT_POISON)
1129 DRM_ERROR("PCH poison interrupt\n");
1130
Paulo Zanoni86642812013-04-12 17:57:57 -03001131 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1132 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1133 false))
1134 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1135
1136 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1137 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1138 false))
1139 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1140
1141 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1142 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1143 false))
1144 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1145
1146 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001147}
1148
Adam Jackson23e81d62012-06-06 15:45:44 -04001149static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1150{
1151 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1152 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001153 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001154
Daniel Vetter91d131d2013-06-27 17:52:14 +02001155 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_cpt);
1156
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001157 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1158 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1159 SDE_AUDIO_POWER_SHIFT_CPT);
1160 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1161 port_name(port));
1162 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001163
1164 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001165 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001166
1167 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001168 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001169
1170 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1171 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1172
1173 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1174 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1175
1176 if (pch_iir & SDE_FDI_MASK_CPT)
1177 for_each_pipe(pipe)
1178 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1179 pipe_name(pipe),
1180 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001181
1182 if (pch_iir & SDE_ERROR_CPT)
1183 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001184}
1185
Daniel Vetterff1f5252012-10-02 15:10:55 +02001186static irqreturn_t ivybridge_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001187{
1188 struct drm_device *dev = (struct drm_device *) arg;
1189 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskyab5c6082013-04-05 13:12:41 -07001190 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01001191 irqreturn_t ret = IRQ_NONE;
1192 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001193
1194 atomic_inc(&dev_priv->irq_received);
1195
Paulo Zanoni86642812013-04-12 17:57:57 -03001196 /* We get interrupts on unclaimed registers, so check for this before we
1197 * do any I915_{READ,WRITE}. */
1198 if (IS_HASWELL(dev) &&
1199 (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
1200 DRM_ERROR("Unclaimed register before interrupt\n");
1201 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
1202 }
1203
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001204 /* disable master interrupt before clearing iir */
1205 de_ier = I915_READ(DEIER);
1206 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +01001207
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001208 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1209 * interrupts will will be stored on its back queue, and then we'll be
1210 * able to process them after we restore SDEIER (as soon as we restore
1211 * it, we'll get an interrupt if SDEIIR still has something to process
1212 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001213 if (!HAS_PCH_NOP(dev)) {
1214 sde_ier = I915_READ(SDEIER);
1215 I915_WRITE(SDEIER, 0);
1216 POSTING_READ(SDEIER);
1217 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001218
Paulo Zanoni86642812013-04-12 17:57:57 -03001219 /* On Haswell, also mask ERR_INT because we don't want to risk
1220 * generating "unclaimed register" interrupts from inside the interrupt
1221 * handler. */
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001222 if (IS_HASWELL(dev)) {
1223 spin_lock(&dev_priv->irq_lock);
Paulo Zanoni86642812013-04-12 17:57:57 -03001224 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001225 spin_unlock(&dev_priv->irq_lock);
1226 }
Paulo Zanoni86642812013-04-12 17:57:57 -03001227
Chris Wilson0e434062012-05-09 21:45:44 +01001228 gt_iir = I915_READ(GTIIR);
1229 if (gt_iir) {
1230 snb_gt_irq_handler(dev, dev_priv, gt_iir);
1231 I915_WRITE(GTIIR, gt_iir);
1232 ret = IRQ_HANDLED;
1233 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001234
1235 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001236 if (de_iir) {
Paulo Zanoni86642812013-04-12 17:57:57 -03001237 if (de_iir & DE_ERR_INT_IVB)
1238 ivb_err_int_handler(dev);
1239
Daniel Vetterce99c252012-12-01 13:53:47 +01001240 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1241 dp_aux_irq_handler(dev);
1242
Chris Wilson0e434062012-05-09 21:45:44 +01001243 if (de_iir & DE_GSE_IVB)
Jani Nikula81a07802013-04-24 22:18:44 +03001244 intel_opregion_asle_intr(dev);
Chris Wilson0e434062012-05-09 21:45:44 +01001245
1246 for (i = 0; i < 3; i++) {
Daniel Vetter74d44442012-10-02 17:54:35 +02001247 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1248 drm_handle_vblank(dev, i);
Chris Wilson0e434062012-05-09 21:45:44 +01001249 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1250 intel_prepare_page_flip(dev, i);
1251 intel_finish_page_flip_plane(dev, i);
1252 }
Chris Wilson0e434062012-05-09 21:45:44 +01001253 }
1254
1255 /* check event from PCH */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001256 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
Chris Wilson0e434062012-05-09 21:45:44 +01001257 u32 pch_iir = I915_READ(SDEIIR);
1258
Adam Jackson23e81d62012-06-06 15:45:44 -04001259 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001260
1261 /* clear PCH hotplug event before clear CPU irq */
1262 I915_WRITE(SDEIIR, pch_iir);
1263 }
1264
1265 I915_WRITE(DEIIR, de_iir);
1266 ret = IRQ_HANDLED;
1267 }
1268
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001269 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001270 if (pm_iir) {
Ben Widawskybaf02a12013-05-28 19:22:24 -07001271 if (IS_HASWELL(dev))
1272 hsw_pm_irq_handler(dev_priv, pm_iir);
Ben Widawsky48484052013-05-28 19:22:27 -07001273 else if (pm_iir & GEN6_PM_RPS_EVENTS)
Chris Wilson0e434062012-05-09 21:45:44 +01001274 gen6_queue_rps_work(dev_priv, pm_iir);
1275 I915_WRITE(GEN6_PMIIR, pm_iir);
1276 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001277 }
1278
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001279 if (IS_HASWELL(dev)) {
1280 spin_lock(&dev_priv->irq_lock);
1281 if (ivb_can_enable_err_int(dev))
1282 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
1283 spin_unlock(&dev_priv->irq_lock);
1284 }
Paulo Zanoni86642812013-04-12 17:57:57 -03001285
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001286 I915_WRITE(DEIER, de_ier);
1287 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07001288 if (!HAS_PCH_NOP(dev)) {
1289 I915_WRITE(SDEIER, sde_ier);
1290 POSTING_READ(SDEIER);
1291 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001292
1293 return ret;
1294}
1295
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001296static void ilk_gt_irq_handler(struct drm_device *dev,
1297 struct drm_i915_private *dev_priv,
1298 u32 gt_iir)
1299{
Ben Widawskycc609d52013-05-28 19:22:29 -07001300 if (gt_iir &
1301 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001302 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001303 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001304 notify_ring(dev, &dev_priv->ring[VCS]);
1305}
1306
Daniel Vetterff1f5252012-10-02 15:10:55 +02001307static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001308{
Jesse Barnes46979952011-04-07 13:53:55 -07001309 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001310 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1311 int ret = IRQ_NONE;
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001312 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001313
Jesse Barnes46979952011-04-07 13:53:55 -07001314 atomic_inc(&dev_priv->irq_received);
1315
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001316 /* disable master interrupt before clearing iir */
1317 de_ier = I915_READ(DEIER);
1318 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001319 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001320
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001321 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1322 * interrupts will will be stored on its back queue, and then we'll be
1323 * able to process them after we restore SDEIER (as soon as we restore
1324 * it, we'll get an interrupt if SDEIIR still has something to process
1325 * due to its back queue). */
1326 sde_ier = I915_READ(SDEIER);
1327 I915_WRITE(SDEIER, 0);
1328 POSTING_READ(SDEIER);
1329
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001330 de_iir = I915_READ(DEIIR);
1331 gt_iir = I915_READ(GTIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001332 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001333
Daniel Vetteracd15b62012-11-30 11:24:50 +01001334 if (de_iir == 0 && gt_iir == 0 && (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +08001335 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001336
Zou Nan haic7c85102010-01-15 10:29:06 +08001337 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001338
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001339 if (IS_GEN5(dev))
1340 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
1341 else
1342 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001343
Daniel Vetterce99c252012-12-01 13:53:47 +01001344 if (de_iir & DE_AUX_CHANNEL_A)
1345 dp_aux_irq_handler(dev);
1346
Zou Nan haic7c85102010-01-15 10:29:06 +08001347 if (de_iir & DE_GSE)
Jani Nikula81a07802013-04-24 22:18:44 +03001348 intel_opregion_asle_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +08001349
Daniel Vetter74d44442012-10-02 17:54:35 +02001350 if (de_iir & DE_PIPEA_VBLANK)
1351 drm_handle_vblank(dev, 0);
1352
1353 if (de_iir & DE_PIPEB_VBLANK)
1354 drm_handle_vblank(dev, 1);
1355
Paulo Zanonide032bf2013-04-12 17:57:58 -03001356 if (de_iir & DE_POISON)
1357 DRM_ERROR("Poison interrupt\n");
1358
Paulo Zanoni86642812013-04-12 17:57:57 -03001359 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1360 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1361 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1362
1363 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1364 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1365 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1366
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001367 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001368 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +01001369 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001370 }
1371
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001372 if (de_iir & DE_PLANEB_FLIP_DONE) {
1373 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +01001374 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001375 }
Li Pengc062df62010-01-23 00:12:58 +08001376
Zou Nan haic7c85102010-01-15 10:29:06 +08001377 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -08001378 if (de_iir & DE_PCH_EVENT) {
Daniel Vetteracd15b62012-11-30 11:24:50 +01001379 u32 pch_iir = I915_READ(SDEIIR);
1380
Adam Jackson23e81d62012-06-06 15:45:44 -04001381 if (HAS_PCH_CPT(dev))
1382 cpt_irq_handler(dev, pch_iir);
1383 else
1384 ibx_irq_handler(dev, pch_iir);
Daniel Vetteracd15b62012-11-30 11:24:50 +01001385
1386 /* should clear PCH hotplug event before clear CPU irq */
1387 I915_WRITE(SDEIIR, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -08001388 }
Zou Nan haic7c85102010-01-15 10:29:06 +08001389
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001390 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
1391 ironlake_handle_rps_change(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001392
Ben Widawsky48484052013-05-28 19:22:27 -07001393 if (IS_GEN6(dev) && pm_iir & GEN6_PM_RPS_EVENTS)
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001394 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001395
Zou Nan haic7c85102010-01-15 10:29:06 +08001396 I915_WRITE(GTIIR, gt_iir);
1397 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -07001398 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001399
1400done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001401 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001402 POSTING_READ(DEIER);
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001403 I915_WRITE(SDEIER, sde_ier);
1404 POSTING_READ(SDEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001405
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001406 return ret;
1407}
1408
Jesse Barnes8a905232009-07-11 16:48:03 -04001409/**
1410 * i915_error_work_func - do process context error handling work
1411 * @work: work struct
1412 *
1413 * Fire an error uevent so userspace can see that a hang or error
1414 * was detected.
1415 */
1416static void i915_error_work_func(struct work_struct *work)
1417{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001418 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1419 work);
1420 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1421 gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04001422 struct drm_device *dev = dev_priv->dev;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001423 struct intel_ring_buffer *ring;
Ben Gamarif316a422009-09-14 17:48:46 -04001424 char *error_event[] = { "ERROR=1", NULL };
1425 char *reset_event[] = { "RESET=1", NULL };
1426 char *reset_done_event[] = { "ERROR=0", NULL };
Daniel Vetterf69061b2012-12-06 09:01:42 +01001427 int i, ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04001428
Ben Gamarif316a422009-09-14 17:48:46 -04001429 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04001430
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001431 /*
1432 * Note that there's only one work item which does gpu resets, so we
1433 * need not worry about concurrent gpu resets potentially incrementing
1434 * error->reset_counter twice. We only need to take care of another
1435 * racing irq/hangcheck declaring the gpu dead for a second time. A
1436 * quick check for that is good enough: schedule_work ensures the
1437 * correct ordering between hang detection and this work item, and since
1438 * the reset in-progress bit is only ever set by code outside of this
1439 * work we don't need to worry about any other races.
1440 */
1441 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01001442 DRM_DEBUG_DRIVER("resetting chip\n");
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001443 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE,
1444 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001445
Daniel Vetterf69061b2012-12-06 09:01:42 +01001446 ret = i915_reset(dev);
1447
1448 if (ret == 0) {
1449 /*
1450 * After all the gem state is reset, increment the reset
1451 * counter and wake up everyone waiting for the reset to
1452 * complete.
1453 *
1454 * Since unlock operations are a one-sided barrier only,
1455 * we need to insert a barrier here to order any seqno
1456 * updates before
1457 * the counter increment.
1458 */
1459 smp_mb__before_atomic_inc();
1460 atomic_inc(&dev_priv->gpu_error.reset_counter);
1461
1462 kobject_uevent_env(&dev->primary->kdev.kobj,
1463 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001464 } else {
1465 atomic_set(&error->reset_counter, I915_WEDGED);
Ben Gamarif316a422009-09-14 17:48:46 -04001466 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001467
Daniel Vetterf69061b2012-12-06 09:01:42 +01001468 for_each_ring(ring, dev_priv, i)
1469 wake_up_all(&ring->irq_queue);
1470
Ville Syrjälä96a02912013-02-18 19:08:49 +02001471 intel_display_handle_reset(dev);
1472
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001473 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04001474 }
Jesse Barnes8a905232009-07-11 16:48:03 -04001475}
1476
Daniel Vetter85f9e502012-08-31 21:42:26 +02001477/* NB: please notice the memset */
1478static void i915_get_extra_instdone(struct drm_device *dev,
1479 uint32_t *instdone)
1480{
1481 struct drm_i915_private *dev_priv = dev->dev_private;
1482 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1483
1484 switch(INTEL_INFO(dev)->gen) {
1485 case 2:
1486 case 3:
1487 instdone[0] = I915_READ(INSTDONE);
1488 break;
1489 case 4:
1490 case 5:
1491 case 6:
1492 instdone[0] = I915_READ(INSTDONE_I965);
1493 instdone[1] = I915_READ(INSTDONE1);
1494 break;
1495 default:
1496 WARN_ONCE(1, "Unsupported platform\n");
1497 case 7:
1498 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1499 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1500 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1501 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1502 break;
1503 }
1504}
1505
Chris Wilson3bd3c932010-08-19 08:19:30 +01001506#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +00001507static struct drm_i915_error_object *
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001508i915_error_object_create_sized(struct drm_i915_private *dev_priv,
1509 struct drm_i915_gem_object *src,
1510 const int num_pages)
Chris Wilson9df30792010-02-18 10:24:56 +00001511{
1512 struct drm_i915_error_object *dst;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001513 int i;
Chris Wilsone56660d2010-08-07 11:01:26 +01001514 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001515
Chris Wilson05394f32010-11-08 19:18:58 +00001516 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +00001517 return NULL;
1518
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001519 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001520 if (dst == NULL)
1521 return NULL;
1522
Chris Wilson05394f32010-11-08 19:18:58 +00001523 reloc_offset = src->gtt_offset;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001524 for (i = 0; i < num_pages; i++) {
Andrew Morton788885a2010-05-11 14:07:05 -07001525 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +01001526 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -07001527
Chris Wilsone56660d2010-08-07 11:01:26 +01001528 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001529 if (d == NULL)
1530 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +01001531
Andrew Morton788885a2010-05-11 14:07:05 -07001532 local_irq_save(flags);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001533 if (reloc_offset < dev_priv->gtt.mappable_end &&
Daniel Vetter74898d72012-02-15 23:50:22 +01001534 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +01001535 void __iomem *s;
1536
1537 /* Simply ignore tiling or any overlapping fence.
1538 * It's part of the error state, and this hopefully
1539 * captures what the GPU read.
1540 */
1541
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001542 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson172975aa2011-12-14 13:57:25 +01001543 reloc_offset);
1544 memcpy_fromio(d, s, PAGE_SIZE);
1545 io_mapping_unmap_atomic(s);
Chris Wilson960e3562012-11-15 11:32:23 +00001546 } else if (src->stolen) {
1547 unsigned long offset;
1548
1549 offset = dev_priv->mm.stolen_base;
1550 offset += src->stolen->start;
1551 offset += i << PAGE_SHIFT;
1552
Daniel Vetter1a240d42012-11-29 22:18:51 +01001553 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
Chris Wilson172975aa2011-12-14 13:57:25 +01001554 } else {
Chris Wilson9da3da62012-06-01 15:20:22 +01001555 struct page *page;
Chris Wilson172975aa2011-12-14 13:57:25 +01001556 void *s;
1557
Chris Wilson9da3da62012-06-01 15:20:22 +01001558 page = i915_gem_object_get_page(src, i);
Chris Wilson172975aa2011-12-14 13:57:25 +01001559
Chris Wilson9da3da62012-06-01 15:20:22 +01001560 drm_clflush_pages(&page, 1);
1561
1562 s = kmap_atomic(page);
Chris Wilson172975aa2011-12-14 13:57:25 +01001563 memcpy(d, s, PAGE_SIZE);
1564 kunmap_atomic(s);
1565
Chris Wilson9da3da62012-06-01 15:20:22 +01001566 drm_clflush_pages(&page, 1);
Chris Wilson172975aa2011-12-14 13:57:25 +01001567 }
Andrew Morton788885a2010-05-11 14:07:05 -07001568 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +01001569
Chris Wilson9da3da62012-06-01 15:20:22 +01001570 dst->pages[i] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +01001571
1572 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +00001573 }
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001574 dst->page_count = num_pages;
Chris Wilson05394f32010-11-08 19:18:58 +00001575 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001576
1577 return dst;
1578
1579unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001580 while (i--)
1581 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001582 kfree(dst);
1583 return NULL;
1584}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001585#define i915_error_object_create(dev_priv, src) \
1586 i915_error_object_create_sized((dev_priv), (src), \
1587 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001588
1589static void
1590i915_error_object_free(struct drm_i915_error_object *obj)
1591{
1592 int page;
1593
1594 if (obj == NULL)
1595 return;
1596
1597 for (page = 0; page < obj->page_count; page++)
1598 kfree(obj->pages[page]);
1599
1600 kfree(obj);
1601}
1602
Daniel Vetter742cbee2012-04-27 15:17:39 +02001603void
1604i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001605{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001606 struct drm_i915_error_state *error = container_of(error_ref,
1607 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001608 int i;
1609
Chris Wilson52d39a22012-02-15 11:25:37 +00001610 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1611 i915_error_object_free(error->ring[i].batchbuffer);
1612 i915_error_object_free(error->ring[i].ringbuffer);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001613 i915_error_object_free(error->ring[i].ctx);
Chris Wilson52d39a22012-02-15 11:25:37 +00001614 kfree(error->ring[i].requests);
1615 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001616
Chris Wilson9df30792010-02-18 10:24:56 +00001617 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001618 kfree(error->overlay);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001619 kfree(error->display);
Chris Wilson9df30792010-02-18 10:24:56 +00001620 kfree(error);
1621}
Chris Wilson1b502472012-04-24 15:47:30 +01001622static void capture_bo(struct drm_i915_error_buffer *err,
1623 struct drm_i915_gem_object *obj)
1624{
1625 err->size = obj->base.size;
1626 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001627 err->rseqno = obj->last_read_seqno;
1628 err->wseqno = obj->last_write_seqno;
Chris Wilson1b502472012-04-24 15:47:30 +01001629 err->gtt_offset = obj->gtt_offset;
1630 err->read_domains = obj->base.read_domains;
1631 err->write_domain = obj->base.write_domain;
1632 err->fence_reg = obj->fence_reg;
1633 err->pinned = 0;
1634 if (obj->pin_count > 0)
1635 err->pinned = 1;
1636 if (obj->user_pin_count > 0)
1637 err->pinned = -1;
1638 err->tiling = obj->tiling_mode;
1639 err->dirty = obj->dirty;
1640 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1641 err->ring = obj->ring ? obj->ring->id : -1;
1642 err->cache_level = obj->cache_level;
1643}
Chris Wilson9df30792010-02-18 10:24:56 +00001644
Chris Wilson1b502472012-04-24 15:47:30 +01001645static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1646 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001647{
1648 struct drm_i915_gem_object *obj;
1649 int i = 0;
1650
1651 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001652 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001653 if (++i == count)
1654 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001655 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001656
Chris Wilson1b502472012-04-24 15:47:30 +01001657 return i;
1658}
1659
1660static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1661 int count, struct list_head *head)
1662{
1663 struct drm_i915_gem_object *obj;
1664 int i = 0;
1665
Ben Widawsky35c20a62013-05-31 11:28:48 -07001666 list_for_each_entry(obj, head, global_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001667 if (obj->pin_count == 0)
1668 continue;
1669
1670 capture_bo(err++, obj);
1671 if (++i == count)
1672 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001673 }
1674
1675 return i;
1676}
1677
Chris Wilson748ebc62010-10-24 10:28:47 +01001678static void i915_gem_record_fences(struct drm_device *dev,
1679 struct drm_i915_error_state *error)
1680{
1681 struct drm_i915_private *dev_priv = dev->dev_private;
1682 int i;
1683
1684 /* Fences */
1685 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001686 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001687 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001688 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001689 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1690 break;
1691 case 5:
1692 case 4:
1693 for (i = 0; i < 16; i++)
1694 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1695 break;
1696 case 3:
1697 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1698 for (i = 0; i < 8; i++)
1699 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1700 case 2:
1701 for (i = 0; i < 8; i++)
1702 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1703 break;
1704
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001705 default:
1706 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001707 }
1708}
1709
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001710static struct drm_i915_error_object *
1711i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1712 struct intel_ring_buffer *ring)
1713{
1714 struct drm_i915_gem_object *obj;
1715 u32 seqno;
1716
1717 if (!ring->get_seqno)
1718 return NULL;
1719
Daniel Vetterb45305f2012-12-17 16:21:27 +01001720 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1721 u32 acthd = I915_READ(ACTHD);
1722
1723 if (WARN_ON(ring->id != RCS))
1724 return NULL;
1725
1726 obj = ring->private;
1727 if (acthd >= obj->gtt_offset &&
1728 acthd < obj->gtt_offset + obj->base.size)
1729 return i915_error_object_create(dev_priv, obj);
1730 }
1731
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001732 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001733 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1734 if (obj->ring != ring)
1735 continue;
1736
Chris Wilson0201f1e2012-07-20 12:41:01 +01001737 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001738 continue;
1739
1740 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1741 continue;
1742
1743 /* We need to copy these to an anonymous buffer as the simplest
1744 * method to avoid being overwritten by userspace.
1745 */
1746 return i915_error_object_create(dev_priv, obj);
1747 }
1748
1749 return NULL;
1750}
1751
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001752static void i915_record_ring_state(struct drm_device *dev,
1753 struct drm_i915_error_state *error,
1754 struct intel_ring_buffer *ring)
1755{
1756 struct drm_i915_private *dev_priv = dev->dev_private;
1757
Daniel Vetter33f3f512011-12-14 13:57:39 +01001758 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001759 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001760 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001761 error->semaphore_mboxes[ring->id][0]
1762 = I915_READ(RING_SYNC_0(ring->mmio_base));
1763 error->semaphore_mboxes[ring->id][1]
1764 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001765 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1766 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001767 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001768
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001769 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001770 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001771 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1772 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1773 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001774 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001775 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001776 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001777 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001778 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001779 error->ipeir[ring->id] = I915_READ(IPEIR);
1780 error->ipehr[ring->id] = I915_READ(IPEHR);
1781 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001782 }
1783
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001784 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001785 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001786 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001787 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001788 error->head[ring->id] = I915_READ_HEAD(ring);
1789 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001790 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001791
1792 error->cpu_ring_head[ring->id] = ring->head;
1793 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001794}
1795
Ben Widawsky8c123e52013-03-04 17:00:29 -08001796
1797static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1798 struct drm_i915_error_state *error,
1799 struct drm_i915_error_ring *ering)
1800{
1801 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1802 struct drm_i915_gem_object *obj;
1803
1804 /* Currently render ring is the only HW context user */
1805 if (ring->id != RCS || !error->ccid)
1806 return;
1807
Ben Widawsky35c20a62013-05-31 11:28:48 -07001808 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky8c123e52013-03-04 17:00:29 -08001809 if ((error->ccid & PAGE_MASK) == obj->gtt_offset) {
1810 ering->ctx = i915_error_object_create_sized(dev_priv,
1811 obj, 1);
Damien Lespiau3ef8fb52013-06-24 14:54:50 +01001812 break;
Ben Widawsky8c123e52013-03-04 17:00:29 -08001813 }
1814 }
1815}
1816
Chris Wilson52d39a22012-02-15 11:25:37 +00001817static void i915_gem_record_rings(struct drm_device *dev,
1818 struct drm_i915_error_state *error)
1819{
1820 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001821 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001822 struct drm_i915_gem_request *request;
1823 int i, count;
1824
Chris Wilsonb4519512012-05-11 14:29:30 +01001825 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001826 i915_record_ring_state(dev, error, ring);
1827
1828 error->ring[i].batchbuffer =
1829 i915_error_first_batchbuffer(dev_priv, ring);
1830
1831 error->ring[i].ringbuffer =
1832 i915_error_object_create(dev_priv, ring->obj);
1833
Ben Widawsky8c123e52013-03-04 17:00:29 -08001834
1835 i915_gem_record_active_context(ring, error, &error->ring[i]);
1836
Chris Wilson52d39a22012-02-15 11:25:37 +00001837 count = 0;
1838 list_for_each_entry(request, &ring->request_list, list)
1839 count++;
1840
1841 error->ring[i].num_requests = count;
1842 error->ring[i].requests =
1843 kmalloc(count*sizeof(struct drm_i915_error_request),
1844 GFP_ATOMIC);
1845 if (error->ring[i].requests == NULL) {
1846 error->ring[i].num_requests = 0;
1847 continue;
1848 }
1849
1850 count = 0;
1851 list_for_each_entry(request, &ring->request_list, list) {
1852 struct drm_i915_error_request *erq;
1853
1854 erq = &error->ring[i].requests[count++];
1855 erq->seqno = request->seqno;
1856 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001857 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001858 }
1859 }
1860}
1861
Ben Widawsky26b7c222013-06-27 16:30:03 -07001862static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
1863 struct drm_i915_error_state *error)
1864{
1865 struct drm_i915_gem_object *obj;
1866 int i;
1867
1868 i = 0;
1869 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1870 i++;
1871 error->active_bo_count = i;
1872 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1873 if (obj->pin_count)
1874 i++;
1875 error->pinned_bo_count = i - error->active_bo_count;
1876
1877 if (i) {
1878 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
1879 GFP_ATOMIC);
1880 if (error->active_bo)
1881 error->pinned_bo =
1882 error->active_bo + error->active_bo_count;
1883 }
1884
1885 if (error->active_bo)
1886 error->active_bo_count =
1887 capture_active_bo(error->active_bo,
1888 error->active_bo_count,
1889 &dev_priv->mm.active_list);
1890
1891 if (error->pinned_bo)
1892 error->pinned_bo_count =
1893 capture_pinned_bo(error->pinned_bo,
1894 error->pinned_bo_count,
1895 &dev_priv->mm.bound_list);
1896}
1897
Jesse Barnes8a905232009-07-11 16:48:03 -04001898/**
1899 * i915_capture_error_state - capture an error record for later analysis
1900 * @dev: drm device
1901 *
1902 * Should be called when an error is detected (either a hang or an error
1903 * interrupt) to capture error state from the time of the error. Fills
1904 * out a structure which becomes available in debugfs for user level tools
1905 * to pick up.
1906 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001907static void i915_capture_error_state(struct drm_device *dev)
1908{
1909 struct drm_i915_private *dev_priv = dev->dev_private;
1910 struct drm_i915_error_state *error;
1911 unsigned long flags;
Ben Widawsky26b7c222013-06-27 16:30:03 -07001912 int pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001913
Daniel Vetter99584db2012-11-14 17:14:04 +01001914 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1915 error = dev_priv->gpu_error.first_error;
1916 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001917 if (error)
1918 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001919
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001920 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001921 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001922 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001923 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1924 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001925 }
1926
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001927 DRM_INFO("capturing error event; look for more information in "
Mika Kuoppalaef86ddc2013-06-06 17:38:54 +03001928 "/sys/class/drm/card%d/error\n", dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001929
Daniel Vetter742cbee2012-04-27 15:17:39 +02001930 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001931 error->eir = I915_READ(EIR);
1932 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001933 if (HAS_HW_CONTEXTS(dev))
1934 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001935
1936 if (HAS_PCH_SPLIT(dev))
1937 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1938 else if (IS_VALLEYVIEW(dev))
1939 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1940 else if (IS_GEN2(dev))
1941 error->ier = I915_READ16(IER);
1942 else
1943 error->ier = I915_READ(IER);
1944
Chris Wilson0f3b6842013-01-15 12:05:55 +00001945 if (INTEL_INFO(dev)->gen >= 6)
1946 error->derrmr = I915_READ(DERRMR);
1947
1948 if (IS_VALLEYVIEW(dev))
1949 error->forcewake = I915_READ(FORCEWAKE_VLV);
1950 else if (INTEL_INFO(dev)->gen >= 7)
1951 error->forcewake = I915_READ(FORCEWAKE_MT);
1952 else if (INTEL_INFO(dev)->gen == 6)
1953 error->forcewake = I915_READ(FORCEWAKE);
1954
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001955 if (!HAS_PCH_SPLIT(dev))
1956 for_each_pipe(pipe)
1957 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001958
Daniel Vetter33f3f512011-12-14 13:57:39 +01001959 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001960 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001961 error->done_reg = I915_READ(DONE_REG);
1962 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001963
Ben Widawsky71e172e2012-08-20 16:15:13 -07001964 if (INTEL_INFO(dev)->gen == 7)
1965 error->err_int = I915_READ(GEN7_ERR_INT);
1966
Ben Widawsky050ee912012-08-22 11:32:15 -07001967 i915_get_extra_instdone(dev, error->extra_instdone);
1968
Ben Widawsky26b7c222013-06-27 16:30:03 -07001969 i915_gem_capture_buffers(dev_priv, error);
Chris Wilson748ebc62010-10-24 10:28:47 +01001970 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001971 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001972
Jesse Barnes8a905232009-07-11 16:48:03 -04001973 do_gettimeofday(&error->time);
1974
Chris Wilson6ef3d422010-08-04 20:26:07 +01001975 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001976 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001977
Daniel Vetter99584db2012-11-14 17:14:04 +01001978 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1979 if (dev_priv->gpu_error.first_error == NULL) {
1980 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00001981 error = NULL;
1982 }
Daniel Vetter99584db2012-11-14 17:14:04 +01001983 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001984
1985 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001986 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001987}
1988
1989void i915_destroy_error_state(struct drm_device *dev)
1990{
1991 struct drm_i915_private *dev_priv = dev->dev_private;
1992 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001993 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001994
Daniel Vetter99584db2012-11-14 17:14:04 +01001995 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1996 error = dev_priv->gpu_error.first_error;
1997 dev_priv->gpu_error.first_error = NULL;
1998 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001999
2000 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02002001 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002002}
Chris Wilson3bd3c932010-08-19 08:19:30 +01002003#else
2004#define i915_capture_error_state(x)
2005#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002006
Chris Wilson35aed2e2010-05-27 13:18:12 +01002007static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002008{
2009 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002010 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002011 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002012 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002013
Chris Wilson35aed2e2010-05-27 13:18:12 +01002014 if (!eir)
2015 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002016
Joe Perchesa70491c2012-03-18 13:00:11 -07002017 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002018
Ben Widawskybd9854f2012-08-23 15:18:09 -07002019 i915_get_extra_instdone(dev, instdone);
2020
Jesse Barnes8a905232009-07-11 16:48:03 -04002021 if (IS_G4X(dev)) {
2022 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2023 u32 ipeir = I915_READ(IPEIR_I965);
2024
Joe Perchesa70491c2012-03-18 13:00:11 -07002025 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2026 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002027 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2028 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002029 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002030 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002031 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002032 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002033 }
2034 if (eir & GM45_ERROR_PAGE_TABLE) {
2035 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002036 pr_err("page table error\n");
2037 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002038 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002039 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002040 }
2041 }
2042
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002043 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002044 if (eir & I915_ERROR_PAGE_TABLE) {
2045 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002046 pr_err("page table error\n");
2047 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002048 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002049 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002050 }
2051 }
2052
2053 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002054 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002055 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002056 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002057 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002058 /* pipestat has already been acked */
2059 }
2060 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002061 pr_err("instruction error\n");
2062 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002063 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2064 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002065 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002066 u32 ipeir = I915_READ(IPEIR);
2067
Joe Perchesa70491c2012-03-18 13:00:11 -07002068 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2069 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002070 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002071 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002072 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002073 } else {
2074 u32 ipeir = I915_READ(IPEIR_I965);
2075
Joe Perchesa70491c2012-03-18 13:00:11 -07002076 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2077 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002078 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002079 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002080 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002081 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002082 }
2083 }
2084
2085 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002086 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002087 eir = I915_READ(EIR);
2088 if (eir) {
2089 /*
2090 * some errors might have become stuck,
2091 * mask them.
2092 */
2093 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2094 I915_WRITE(EMR, I915_READ(EMR) | eir);
2095 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2096 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002097}
2098
2099/**
2100 * i915_handle_error - handle an error interrupt
2101 * @dev: drm device
2102 *
2103 * Do some basic checking of regsiter state at error interrupt time and
2104 * dump it to the syslog. Also call i915_capture_error_state() to make
2105 * sure we get a record and make it available in debugfs. Fire a uevent
2106 * so userspace knows something bad happened (should trigger collection
2107 * of a ring dump etc.).
2108 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002109void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002110{
2111 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002112 struct intel_ring_buffer *ring;
2113 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002114
2115 i915_capture_error_state(dev);
2116 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002117
Ben Gamariba1234d2009-09-14 17:48:47 -04002118 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002119 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2120 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002121
Ben Gamari11ed50e2009-09-14 17:48:45 -04002122 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002123 * Wakeup waiting processes so that the reset work item
2124 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002125 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002126 for_each_ring(ring, dev_priv, i)
2127 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002128 }
2129
Daniel Vetter99584db2012-11-14 17:14:04 +01002130 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002131}
2132
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002133static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002134{
2135 drm_i915_private_t *dev_priv = dev->dev_private;
2136 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2137 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002138 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002139 struct intel_unpin_work *work;
2140 unsigned long flags;
2141 bool stall_detected;
2142
2143 /* Ignore early vblank irqs */
2144 if (intel_crtc == NULL)
2145 return;
2146
2147 spin_lock_irqsave(&dev->event_lock, flags);
2148 work = intel_crtc->unpin_work;
2149
Chris Wilsone7d841c2012-12-03 11:36:30 +00002150 if (work == NULL ||
2151 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2152 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002153 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2154 spin_unlock_irqrestore(&dev->event_lock, flags);
2155 return;
2156 }
2157
2158 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002159 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002160 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002161 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002162 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
2163 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002164 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002165 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00002166 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002167 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002168 crtc->x * crtc->fb->bits_per_pixel/8);
2169 }
2170
2171 spin_unlock_irqrestore(&dev->event_lock, flags);
2172
2173 if (stall_detected) {
2174 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2175 intel_prepare_page_flip(dev, intel_crtc->plane);
2176 }
2177}
2178
Keith Packard42f52ef2008-10-18 19:39:29 -07002179/* Called from drm generic code, passed 'crtc' which
2180 * we use as a pipe index
2181 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002182static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002183{
2184 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002185 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002186
Chris Wilson5eddb702010-09-11 13:48:45 +01002187 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002188 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002189
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002190 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002191 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002192 i915_enable_pipestat(dev_priv, pipe,
2193 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002194 else
Keith Packard7c463582008-11-04 02:03:27 -08002195 i915_enable_pipestat(dev_priv, pipe,
2196 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002197
2198 /* maintain vblank delivery even in deep C-states */
2199 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002200 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002201 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002202
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002203 return 0;
2204}
2205
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002206static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002207{
2208 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2209 unsigned long irqflags;
2210
2211 if (!i915_pipe_enabled(dev, pipe))
2212 return -EINVAL;
2213
2214 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2215 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002216 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002217 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2218
2219 return 0;
2220}
2221
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002222static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002223{
2224 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2225 unsigned long irqflags;
2226
2227 if (!i915_pipe_enabled(dev, pipe))
2228 return -EINVAL;
2229
2230 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002231 ironlake_enable_display_irq(dev_priv,
2232 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002233 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2234
2235 return 0;
2236}
2237
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002238static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2239{
2240 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2241 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002242 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002243
2244 if (!i915_pipe_enabled(dev, pipe))
2245 return -EINVAL;
2246
2247 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002248 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002249 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002250 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002251 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002252 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002253 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002254 i915_enable_pipestat(dev_priv, pipe,
2255 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002256 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2257
2258 return 0;
2259}
2260
Keith Packard42f52ef2008-10-18 19:39:29 -07002261/* Called from drm generic code, passed 'crtc' which
2262 * we use as a pipe index
2263 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002264static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002265{
2266 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002267 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002268
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002269 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002270 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002271 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002272
Jesse Barnesf796cf82011-04-07 13:58:17 -07002273 i915_disable_pipestat(dev_priv, pipe,
2274 PIPE_VBLANK_INTERRUPT_ENABLE |
2275 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2276 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2277}
2278
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002279static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002280{
2281 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2282 unsigned long irqflags;
2283
2284 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2285 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002286 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002287 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002288}
2289
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002290static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002291{
2292 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2293 unsigned long irqflags;
2294
2295 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002296 ironlake_disable_display_irq(dev_priv,
2297 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002298 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2299}
2300
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002301static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2302{
2303 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2304 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002305 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002306
2307 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002308 i915_disable_pipestat(dev_priv, pipe,
2309 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002310 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002311 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002312 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002313 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002314 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002315 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002316 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2317}
2318
Chris Wilson893eead2010-10-27 14:44:35 +01002319static u32
2320ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002321{
Chris Wilson893eead2010-10-27 14:44:35 +01002322 return list_entry(ring->request_list.prev,
2323 struct drm_i915_gem_request, list)->seqno;
2324}
2325
Chris Wilson9107e9d2013-06-10 11:20:20 +01002326static bool
2327ring_idle(struct intel_ring_buffer *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002328{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002329 return (list_empty(&ring->request_list) ||
2330 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04002331}
2332
Chris Wilson6274f212013-06-10 11:20:21 +01002333static struct intel_ring_buffer *
2334semaphore_waits_for(struct intel_ring_buffer *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002335{
2336 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson6274f212013-06-10 11:20:21 +01002337 u32 cmd, ipehr, acthd, acthd_min;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002338
2339 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2340 if ((ipehr & ~(0x3 << 16)) !=
2341 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
Chris Wilson6274f212013-06-10 11:20:21 +01002342 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002343
2344 /* ACTHD is likely pointing to the dword after the actual command,
2345 * so scan backwards until we find the MBOX.
2346 */
Chris Wilson6274f212013-06-10 11:20:21 +01002347 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002348 acthd_min = max((int)acthd - 3 * 4, 0);
2349 do {
2350 cmd = ioread32(ring->virtual_start + acthd);
2351 if (cmd == ipehr)
2352 break;
2353
2354 acthd -= 4;
2355 if (acthd < acthd_min)
Chris Wilson6274f212013-06-10 11:20:21 +01002356 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002357 } while (1);
2358
Chris Wilson6274f212013-06-10 11:20:21 +01002359 *seqno = ioread32(ring->virtual_start+acthd+4)+1;
2360 return &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
Chris Wilsona24a11e2013-03-14 17:52:05 +02002361}
2362
Chris Wilson6274f212013-06-10 11:20:21 +01002363static int semaphore_passed(struct intel_ring_buffer *ring)
2364{
2365 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2366 struct intel_ring_buffer *signaller;
2367 u32 seqno, ctl;
2368
2369 ring->hangcheck.deadlock = true;
2370
2371 signaller = semaphore_waits_for(ring, &seqno);
2372 if (signaller == NULL || signaller->hangcheck.deadlock)
2373 return -1;
2374
2375 /* cursory check for an unkickable deadlock */
2376 ctl = I915_READ_CTL(signaller);
2377 if (ctl & RING_WAIT_SEMAPHORE && semaphore_passed(signaller) < 0)
2378 return -1;
2379
2380 return i915_seqno_passed(signaller->get_seqno(signaller, false), seqno);
2381}
2382
2383static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2384{
2385 struct intel_ring_buffer *ring;
2386 int i;
2387
2388 for_each_ring(ring, dev_priv, i)
2389 ring->hangcheck.deadlock = false;
2390}
2391
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002392static enum intel_ring_hangcheck_action
2393ring_stuck(struct intel_ring_buffer *ring, u32 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002394{
2395 struct drm_device *dev = ring->dev;
2396 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002397 u32 tmp;
2398
Chris Wilson6274f212013-06-10 11:20:21 +01002399 if (ring->hangcheck.acthd != acthd)
2400 return active;
2401
Chris Wilson9107e9d2013-06-10 11:20:20 +01002402 if (IS_GEN2(dev))
Chris Wilson6274f212013-06-10 11:20:21 +01002403 return hung;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002404
2405 /* Is the chip hanging on a WAIT_FOR_EVENT?
2406 * If so we can simply poke the RB_WAIT bit
2407 * and break the hang. This should work on
2408 * all but the second generation chipsets.
2409 */
2410 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002411 if (tmp & RING_WAIT) {
2412 DRM_ERROR("Kicking stuck wait on %s\n",
2413 ring->name);
2414 I915_WRITE_CTL(ring, tmp);
Chris Wilson6274f212013-06-10 11:20:21 +01002415 return kick;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002416 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002417
Chris Wilson6274f212013-06-10 11:20:21 +01002418 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2419 switch (semaphore_passed(ring)) {
2420 default:
2421 return hung;
2422 case 1:
2423 DRM_ERROR("Kicking stuck semaphore on %s\n",
2424 ring->name);
2425 I915_WRITE_CTL(ring, tmp);
2426 return kick;
2427 case 0:
2428 return wait;
2429 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002430 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002431
Chris Wilson6274f212013-06-10 11:20:21 +01002432 return hung;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002433}
2434
Ben Gamarif65d9422009-09-14 17:48:44 -04002435/**
2436 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002437 * batchbuffers in a long time. We keep track per ring seqno progress and
2438 * if there are no progress, hangcheck score for that ring is increased.
2439 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2440 * we kick the ring. If we see no progress on three subsequent calls
2441 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002442 */
2443void i915_hangcheck_elapsed(unsigned long data)
2444{
2445 struct drm_device *dev = (struct drm_device *)data;
2446 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002447 struct intel_ring_buffer *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002448 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002449 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002450 bool stuck[I915_NUM_RINGS] = { 0 };
2451#define BUSY 1
2452#define KICK 5
2453#define HUNG 20
2454#define FIRE 30
Chris Wilson893eead2010-10-27 14:44:35 +01002455
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002456 if (!i915_enable_hangcheck)
2457 return;
2458
Chris Wilsonb4519512012-05-11 14:29:30 +01002459 for_each_ring(ring, dev_priv, i) {
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002460 u32 seqno, acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002461 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002462
Chris Wilson6274f212013-06-10 11:20:21 +01002463 semaphore_clear_deadlocks(dev_priv);
2464
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002465 seqno = ring->get_seqno(ring, false);
2466 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002467
Chris Wilson9107e9d2013-06-10 11:20:20 +01002468 if (ring->hangcheck.seqno == seqno) {
2469 if (ring_idle(ring, seqno)) {
2470 if (waitqueue_active(&ring->irq_queue)) {
2471 /* Issue a wake-up to catch stuck h/w. */
2472 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2473 ring->name);
2474 wake_up_all(&ring->irq_queue);
2475 ring->hangcheck.score += HUNG;
2476 } else
2477 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002478 } else {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002479 int score;
2480
Chris Wilson6274f212013-06-10 11:20:21 +01002481 /* We always increment the hangcheck score
2482 * if the ring is busy and still processing
2483 * the same request, so that no single request
2484 * can run indefinitely (such as a chain of
2485 * batches). The only time we do not increment
2486 * the hangcheck score on this ring, if this
2487 * ring is in a legitimate wait for another
2488 * ring. In that case the waiting ring is a
2489 * victim and we want to be sure we catch the
2490 * right culprit. Then every time we do kick
2491 * the ring, add a small increment to the
2492 * score so that we can catch a batch that is
2493 * being repeatedly kicked and so responsible
2494 * for stalling the machine.
2495 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002496 ring->hangcheck.action = ring_stuck(ring,
2497 acthd);
2498
2499 switch (ring->hangcheck.action) {
Chris Wilson6274f212013-06-10 11:20:21 +01002500 case wait:
2501 score = 0;
2502 break;
2503 case active:
Chris Wilson9107e9d2013-06-10 11:20:20 +01002504 score = BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01002505 break;
2506 case kick:
2507 score = KICK;
2508 break;
2509 case hung:
2510 score = HUNG;
2511 stuck[i] = true;
2512 break;
2513 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002514 ring->hangcheck.score += score;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002515 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002516 } else {
2517 /* Gradually reduce the count so that we catch DoS
2518 * attempts across multiple batches.
2519 */
2520 if (ring->hangcheck.score > 0)
2521 ring->hangcheck.score--;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002522 }
2523
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002524 ring->hangcheck.seqno = seqno;
2525 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002526 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01002527 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002528
Mika Kuoppala92cab732013-05-24 17:16:07 +03002529 for_each_ring(ring, dev_priv, i) {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002530 if (ring->hangcheck.score > FIRE) {
Ben Widawskyacd78c12013-06-13 21:33:33 -07002531 DRM_ERROR("%s on %s\n",
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002532 stuck[i] ? "stuck" : "no progress",
Chris Wilsona43adf02013-06-10 11:20:22 +01002533 ring->name);
2534 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03002535 }
2536 }
2537
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002538 if (rings_hung)
2539 return i915_handle_error(dev, true);
Ben Gamarif65d9422009-09-14 17:48:44 -04002540
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002541 if (busy_count)
2542 /* Reset timer case chip hangs without another request
2543 * being added */
2544 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
2545 round_jiffies_up(jiffies +
2546 DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002547}
2548
Paulo Zanoni91738a92013-06-05 14:21:51 -03002549static void ibx_irq_preinstall(struct drm_device *dev)
2550{
2551 struct drm_i915_private *dev_priv = dev->dev_private;
2552
2553 if (HAS_PCH_NOP(dev))
2554 return;
2555
2556 /* south display irq */
2557 I915_WRITE(SDEIMR, 0xffffffff);
2558 /*
2559 * SDEIER is also touched by the interrupt handler to work around missed
2560 * PCH interrupts. Hence we can't update it after the interrupt handler
2561 * is enabled - instead we unconditionally enable all PCH interrupt
2562 * sources here, but then only unmask them as needed with SDEIMR.
2563 */
2564 I915_WRITE(SDEIER, 0xffffffff);
2565 POSTING_READ(SDEIER);
2566}
2567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568/* drm_dma.h hooks
2569*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002570static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002571{
2572 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2573
Jesse Barnes46979952011-04-07 13:53:55 -07002574 atomic_set(&dev_priv->irq_received, 0);
2575
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002576 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002577
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002578 /* XXX hotplug from PCH */
2579
2580 I915_WRITE(DEIMR, 0xffffffff);
2581 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002582 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002583
2584 /* and GT */
2585 I915_WRITE(GTIMR, 0xffffffff);
2586 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002587 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002588
Paulo Zanoni91738a92013-06-05 14:21:51 -03002589 ibx_irq_preinstall(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07002590}
2591
2592static void ivybridge_irq_preinstall(struct drm_device *dev)
2593{
2594 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2595
2596 atomic_set(&dev_priv->irq_received, 0);
2597
2598 I915_WRITE(HWSTAM, 0xeffe);
2599
2600 /* XXX hotplug from PCH */
2601
2602 I915_WRITE(DEIMR, 0xffffffff);
2603 I915_WRITE(DEIER, 0x0);
2604 POSTING_READ(DEIER);
2605
2606 /* and GT */
2607 I915_WRITE(GTIMR, 0xffffffff);
2608 I915_WRITE(GTIER, 0x0);
2609 POSTING_READ(GTIER);
2610
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002611 /* Power management */
2612 I915_WRITE(GEN6_PMIMR, 0xffffffff);
2613 I915_WRITE(GEN6_PMIER, 0x0);
2614 POSTING_READ(GEN6_PMIER);
2615
Paulo Zanoni91738a92013-06-05 14:21:51 -03002616 ibx_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002617}
2618
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002619static void valleyview_irq_preinstall(struct drm_device *dev)
2620{
2621 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2622 int pipe;
2623
2624 atomic_set(&dev_priv->irq_received, 0);
2625
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002626 /* VLV magic */
2627 I915_WRITE(VLV_IMR, 0);
2628 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2629 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2630 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2631
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002632 /* and GT */
2633 I915_WRITE(GTIIR, I915_READ(GTIIR));
2634 I915_WRITE(GTIIR, I915_READ(GTIIR));
2635 I915_WRITE(GTIMR, 0xffffffff);
2636 I915_WRITE(GTIER, 0x0);
2637 POSTING_READ(GTIER);
2638
2639 I915_WRITE(DPINVGTT, 0xff);
2640
2641 I915_WRITE(PORT_HOTPLUG_EN, 0);
2642 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2643 for_each_pipe(pipe)
2644 I915_WRITE(PIPESTAT(pipe), 0xffff);
2645 I915_WRITE(VLV_IIR, 0xffffffff);
2646 I915_WRITE(VLV_IMR, 0xffffffff);
2647 I915_WRITE(VLV_IER, 0x0);
2648 POSTING_READ(VLV_IER);
2649}
2650
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002651static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002652{
2653 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002654 struct drm_mode_config *mode_config = &dev->mode_config;
2655 struct intel_encoder *intel_encoder;
2656 u32 mask = ~I915_READ(SDEIMR);
2657 u32 hotplug;
Keith Packard7fe0b972011-09-19 13:31:02 -07002658
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002659 if (HAS_PCH_IBX(dev)) {
Egbert Eich995e6b32013-04-16 13:36:56 +02002660 mask &= ~SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002661 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002662 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2663 mask |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002664 } else {
Egbert Eich995e6b32013-04-16 13:36:56 +02002665 mask &= ~SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002666 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002667 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2668 mask |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002669 }
2670
2671 I915_WRITE(SDEIMR, ~mask);
2672
2673 /*
2674 * Enable digital hotplug on the PCH, and configure the DP short pulse
2675 * duration to 2ms (which is the minimum in the Display Port spec)
2676 *
2677 * This register is the same on all known PCH chips.
2678 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002679 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2680 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2681 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2682 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2683 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2684 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2685}
2686
Paulo Zanonid46da432013-02-08 17:35:15 -02002687static void ibx_irq_postinstall(struct drm_device *dev)
2688{
2689 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002690 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002691
Daniel Vetter692a04c2013-05-29 21:43:05 +02002692 if (HAS_PCH_NOP(dev))
2693 return;
2694
Paulo Zanoni86642812013-04-12 17:57:57 -03002695 if (HAS_PCH_IBX(dev)) {
2696 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002697 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002698 } else {
2699 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2700
2701 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2702 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002703
Paulo Zanonid46da432013-02-08 17:35:15 -02002704 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2705 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002706}
2707
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002708static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002709{
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002710 unsigned long irqflags;
2711
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002712 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2713 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002714 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002715 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002716 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002717 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Ben Widawskycc609d52013-05-28 19:22:29 -07002718 u32 gt_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002719
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002720 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002721
2722 /* should always can generate irq */
2723 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002724 I915_WRITE(DEIMR, dev_priv->irq_mask);
Daniel Vetter6005ce42013-06-27 13:44:59 +02002725 I915_WRITE(DEIER, display_mask |
2726 DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002727 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002728
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002729 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002730
2731 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002732 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002733
Ben Widawskycc609d52013-05-28 19:22:29 -07002734 gt_irqs = GT_RENDER_USER_INTERRUPT;
2735
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002736 if (IS_GEN6(dev))
Ben Widawskycc609d52013-05-28 19:22:29 -07002737 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002738 else
Ben Widawskycc609d52013-05-28 19:22:29 -07002739 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
2740 ILK_BSD_USER_INTERRUPT;
2741
2742 I915_WRITE(GTIER, gt_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002743 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002744
Paulo Zanonid46da432013-02-08 17:35:15 -02002745 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002746
Jesse Barnesf97108d2010-01-29 11:27:07 -08002747 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02002748 /* Enable PCU event interrupts
2749 *
2750 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002751 * setup is guaranteed to run in single-threaded context. But we
2752 * need it to make the assert_spin_locked happy. */
2753 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002754 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002755 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002756 }
2757
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002758 return 0;
2759}
2760
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002761static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002762{
2763 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2764 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002765 u32 display_mask =
2766 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2767 DE_PLANEC_FLIP_DONE_IVB |
2768 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002769 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002770 DE_AUX_CHANNEL_A_IVB |
2771 DE_ERR_INT_IVB;
Ben Widawsky12638c52013-05-28 19:22:31 -07002772 u32 pm_irqs = GEN6_PM_RPS_EVENTS;
Ben Widawskycc609d52013-05-28 19:22:29 -07002773 u32 gt_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002774
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002775 dev_priv->irq_mask = ~display_mask;
2776
2777 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002778 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002779 I915_WRITE(DEIIR, I915_READ(DEIIR));
2780 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002781 I915_WRITE(DEIER,
2782 display_mask |
2783 DE_PIPEC_VBLANK_IVB |
2784 DE_PIPEB_VBLANK_IVB |
2785 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002786 POSTING_READ(DEIER);
2787
Ben Widawskycc609d52013-05-28 19:22:29 -07002788 dev_priv->gt_irq_mask = ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002789
2790 I915_WRITE(GTIIR, I915_READ(GTIIR));
2791 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2792
Ben Widawskycc609d52013-05-28 19:22:29 -07002793 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2794 GT_BLT_USER_INTERRUPT | GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2795 I915_WRITE(GTIER, gt_irqs);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002796 POSTING_READ(GTIER);
2797
Ben Widawsky12638c52013-05-28 19:22:31 -07002798 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
2799 if (HAS_VEBOX(dev))
2800 pm_irqs |= PM_VEBOX_USER_INTERRUPT |
2801 PM_VEBOX_CS_ERROR_INTERRUPT;
2802
2803 /* Our enable/disable rps functions may touch these registers so
2804 * make sure to set a known state for only the non-RPS bits.
2805 * The RMW is extra paranoia since this should be called after being set
2806 * to a known state in preinstall.
2807 * */
2808 I915_WRITE(GEN6_PMIMR,
2809 (I915_READ(GEN6_PMIMR) | ~GEN6_PM_RPS_EVENTS) & ~pm_irqs);
2810 I915_WRITE(GEN6_PMIER,
2811 (I915_READ(GEN6_PMIER) & GEN6_PM_RPS_EVENTS) | pm_irqs);
2812 POSTING_READ(GEN6_PMIER);
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002813
Paulo Zanonid46da432013-02-08 17:35:15 -02002814 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002815
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002816 return 0;
2817}
2818
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002819static int valleyview_irq_postinstall(struct drm_device *dev)
2820{
2821 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskycc609d52013-05-28 19:22:29 -07002822 u32 gt_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002823 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002824 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Daniel Vetterb79480b2013-06-27 17:52:10 +02002825 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002826
2827 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002828 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2829 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2830 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002831 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2832
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002833 /*
2834 *Leave vblank interrupts masked initially. enable/disable will
2835 * toggle them based on usage.
2836 */
2837 dev_priv->irq_mask = (~enable_mask) |
2838 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2839 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002840
Daniel Vetter20afbda2012-12-11 14:05:07 +01002841 I915_WRITE(PORT_HOTPLUG_EN, 0);
2842 POSTING_READ(PORT_HOTPLUG_EN);
2843
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002844 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2845 I915_WRITE(VLV_IER, enable_mask);
2846 I915_WRITE(VLV_IIR, 0xffffffff);
2847 I915_WRITE(PIPESTAT(0), 0xffff);
2848 I915_WRITE(PIPESTAT(1), 0xffff);
2849 POSTING_READ(VLV_IER);
2850
Daniel Vetterb79480b2013-06-27 17:52:10 +02002851 /* Interrupt setup is already guaranteed to be single-threaded, this is
2852 * just to make the assert_spin_locked check happy. */
2853 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002854 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002855 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002856 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
Daniel Vetterb79480b2013-06-27 17:52:10 +02002857 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002858
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002859 I915_WRITE(VLV_IIR, 0xffffffff);
2860 I915_WRITE(VLV_IIR, 0xffffffff);
2861
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002862 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002863 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002864
Ben Widawskycc609d52013-05-28 19:22:29 -07002865 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2866 GT_BLT_USER_INTERRUPT;
2867 I915_WRITE(GTIER, gt_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002868 POSTING_READ(GTIER);
2869
2870 /* ack & enable invalid PTE error interrupts */
2871#if 0 /* FIXME: add support to irq handler for checking these bits */
2872 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2873 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2874#endif
2875
2876 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002877
2878 return 0;
2879}
2880
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002881static void valleyview_irq_uninstall(struct drm_device *dev)
2882{
2883 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2884 int pipe;
2885
2886 if (!dev_priv)
2887 return;
2888
Egbert Eichac4c16c2013-04-16 13:36:58 +02002889 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2890
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002891 for_each_pipe(pipe)
2892 I915_WRITE(PIPESTAT(pipe), 0xffff);
2893
2894 I915_WRITE(HWSTAM, 0xffffffff);
2895 I915_WRITE(PORT_HOTPLUG_EN, 0);
2896 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2897 for_each_pipe(pipe)
2898 I915_WRITE(PIPESTAT(pipe), 0xffff);
2899 I915_WRITE(VLV_IIR, 0xffffffff);
2900 I915_WRITE(VLV_IMR, 0xffffffff);
2901 I915_WRITE(VLV_IER, 0x0);
2902 POSTING_READ(VLV_IER);
2903}
2904
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002905static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002906{
2907 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002908
2909 if (!dev_priv)
2910 return;
2911
Egbert Eichac4c16c2013-04-16 13:36:58 +02002912 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2913
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002914 I915_WRITE(HWSTAM, 0xffffffff);
2915
2916 I915_WRITE(DEIMR, 0xffffffff);
2917 I915_WRITE(DEIER, 0x0);
2918 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002919 if (IS_GEN7(dev))
2920 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002921
2922 I915_WRITE(GTIMR, 0xffffffff);
2923 I915_WRITE(GTIER, 0x0);
2924 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002925
Ben Widawskyab5c6082013-04-05 13:12:41 -07002926 if (HAS_PCH_NOP(dev))
2927 return;
2928
Keith Packard192aac1f2011-09-20 10:12:44 -07002929 I915_WRITE(SDEIMR, 0xffffffff);
2930 I915_WRITE(SDEIER, 0x0);
2931 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002932 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2933 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002934}
2935
Chris Wilsonc2798b12012-04-22 21:13:57 +01002936static void i8xx_irq_preinstall(struct drm_device * dev)
2937{
2938 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2939 int pipe;
2940
2941 atomic_set(&dev_priv->irq_received, 0);
2942
2943 for_each_pipe(pipe)
2944 I915_WRITE(PIPESTAT(pipe), 0);
2945 I915_WRITE16(IMR, 0xffff);
2946 I915_WRITE16(IER, 0x0);
2947 POSTING_READ16(IER);
2948}
2949
2950static int i8xx_irq_postinstall(struct drm_device *dev)
2951{
2952 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2953
Chris Wilsonc2798b12012-04-22 21:13:57 +01002954 I915_WRITE16(EMR,
2955 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2956
2957 /* Unmask the interrupts that we always want on. */
2958 dev_priv->irq_mask =
2959 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2960 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2961 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2962 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2963 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2964 I915_WRITE16(IMR, dev_priv->irq_mask);
2965
2966 I915_WRITE16(IER,
2967 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2968 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2969 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2970 I915_USER_INTERRUPT);
2971 POSTING_READ16(IER);
2972
2973 return 0;
2974}
2975
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002976/*
2977 * Returns true when a page flip has completed.
2978 */
2979static bool i8xx_handle_vblank(struct drm_device *dev,
2980 int pipe, u16 iir)
2981{
2982 drm_i915_private_t *dev_priv = dev->dev_private;
2983 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2984
2985 if (!drm_handle_vblank(dev, pipe))
2986 return false;
2987
2988 if ((iir & flip_pending) == 0)
2989 return false;
2990
2991 intel_prepare_page_flip(dev, pipe);
2992
2993 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2994 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2995 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2996 * the flip is completed (no longer pending). Since this doesn't raise
2997 * an interrupt per se, we watch for the change at vblank.
2998 */
2999 if (I915_READ16(ISR) & flip_pending)
3000 return false;
3001
3002 intel_finish_page_flip(dev, pipe);
3003
3004 return true;
3005}
3006
Daniel Vetterff1f5252012-10-02 15:10:55 +02003007static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003008{
3009 struct drm_device *dev = (struct drm_device *) arg;
3010 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003011 u16 iir, new_iir;
3012 u32 pipe_stats[2];
3013 unsigned long irqflags;
3014 int irq_received;
3015 int pipe;
3016 u16 flip_mask =
3017 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3018 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3019
3020 atomic_inc(&dev_priv->irq_received);
3021
3022 iir = I915_READ16(IIR);
3023 if (iir == 0)
3024 return IRQ_NONE;
3025
3026 while (iir & ~flip_mask) {
3027 /* Can't rely on pipestat interrupt bit in iir as it might
3028 * have been cleared after the pipestat interrupt was received.
3029 * It doesn't set the bit in iir again, but it still produces
3030 * interrupts (for non-MSI).
3031 */
3032 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3033 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3034 i915_handle_error(dev, false);
3035
3036 for_each_pipe(pipe) {
3037 int reg = PIPESTAT(pipe);
3038 pipe_stats[pipe] = I915_READ(reg);
3039
3040 /*
3041 * Clear the PIPE*STAT regs before the IIR
3042 */
3043 if (pipe_stats[pipe] & 0x8000ffff) {
3044 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3045 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3046 pipe_name(pipe));
3047 I915_WRITE(reg, pipe_stats[pipe]);
3048 irq_received = 1;
3049 }
3050 }
3051 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3052
3053 I915_WRITE16(IIR, iir & ~flip_mask);
3054 new_iir = I915_READ16(IIR); /* Flush posted writes */
3055
Daniel Vetterd05c6172012-04-26 23:28:09 +02003056 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003057
3058 if (iir & I915_USER_INTERRUPT)
3059 notify_ring(dev, &dev_priv->ring[RCS]);
3060
3061 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003062 i8xx_handle_vblank(dev, 0, iir))
3063 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003064
3065 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003066 i8xx_handle_vblank(dev, 1, iir))
3067 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003068
3069 iir = new_iir;
3070 }
3071
3072 return IRQ_HANDLED;
3073}
3074
3075static void i8xx_irq_uninstall(struct drm_device * dev)
3076{
3077 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3078 int pipe;
3079
Chris Wilsonc2798b12012-04-22 21:13:57 +01003080 for_each_pipe(pipe) {
3081 /* Clear enable bits; then clear status bits */
3082 I915_WRITE(PIPESTAT(pipe), 0);
3083 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3084 }
3085 I915_WRITE16(IMR, 0xffff);
3086 I915_WRITE16(IER, 0x0);
3087 I915_WRITE16(IIR, I915_READ16(IIR));
3088}
3089
Chris Wilsona266c7d2012-04-24 22:59:44 +01003090static void i915_irq_preinstall(struct drm_device * dev)
3091{
3092 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3093 int pipe;
3094
3095 atomic_set(&dev_priv->irq_received, 0);
3096
3097 if (I915_HAS_HOTPLUG(dev)) {
3098 I915_WRITE(PORT_HOTPLUG_EN, 0);
3099 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3100 }
3101
Chris Wilson00d98eb2012-04-24 22:59:48 +01003102 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003103 for_each_pipe(pipe)
3104 I915_WRITE(PIPESTAT(pipe), 0);
3105 I915_WRITE(IMR, 0xffffffff);
3106 I915_WRITE(IER, 0x0);
3107 POSTING_READ(IER);
3108}
3109
3110static int i915_irq_postinstall(struct drm_device *dev)
3111{
3112 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003113 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003114
Chris Wilson38bde182012-04-24 22:59:50 +01003115 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3116
3117 /* Unmask the interrupts that we always want on. */
3118 dev_priv->irq_mask =
3119 ~(I915_ASLE_INTERRUPT |
3120 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3121 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3122 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3123 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3124 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3125
3126 enable_mask =
3127 I915_ASLE_INTERRUPT |
3128 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3129 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3130 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3131 I915_USER_INTERRUPT;
3132
Chris Wilsona266c7d2012-04-24 22:59:44 +01003133 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01003134 I915_WRITE(PORT_HOTPLUG_EN, 0);
3135 POSTING_READ(PORT_HOTPLUG_EN);
3136
Chris Wilsona266c7d2012-04-24 22:59:44 +01003137 /* Enable in IER... */
3138 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3139 /* and unmask in IMR */
3140 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3141 }
3142
Chris Wilsona266c7d2012-04-24 22:59:44 +01003143 I915_WRITE(IMR, dev_priv->irq_mask);
3144 I915_WRITE(IER, enable_mask);
3145 POSTING_READ(IER);
3146
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003147 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003148
3149 return 0;
3150}
3151
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003152/*
3153 * Returns true when a page flip has completed.
3154 */
3155static bool i915_handle_vblank(struct drm_device *dev,
3156 int plane, int pipe, u32 iir)
3157{
3158 drm_i915_private_t *dev_priv = dev->dev_private;
3159 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3160
3161 if (!drm_handle_vblank(dev, pipe))
3162 return false;
3163
3164 if ((iir & flip_pending) == 0)
3165 return false;
3166
3167 intel_prepare_page_flip(dev, plane);
3168
3169 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3170 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3171 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3172 * the flip is completed (no longer pending). Since this doesn't raise
3173 * an interrupt per se, we watch for the change at vblank.
3174 */
3175 if (I915_READ(ISR) & flip_pending)
3176 return false;
3177
3178 intel_finish_page_flip(dev, pipe);
3179
3180 return true;
3181}
3182
Daniel Vetterff1f5252012-10-02 15:10:55 +02003183static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003184{
3185 struct drm_device *dev = (struct drm_device *) arg;
3186 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003187 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003188 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003189 u32 flip_mask =
3190 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3191 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003192 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003193
3194 atomic_inc(&dev_priv->irq_received);
3195
3196 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003197 do {
3198 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003199 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003200
3201 /* Can't rely on pipestat interrupt bit in iir as it might
3202 * have been cleared after the pipestat interrupt was received.
3203 * It doesn't set the bit in iir again, but it still produces
3204 * interrupts (for non-MSI).
3205 */
3206 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3207 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3208 i915_handle_error(dev, false);
3209
3210 for_each_pipe(pipe) {
3211 int reg = PIPESTAT(pipe);
3212 pipe_stats[pipe] = I915_READ(reg);
3213
Chris Wilson38bde182012-04-24 22:59:50 +01003214 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003215 if (pipe_stats[pipe] & 0x8000ffff) {
3216 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3217 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3218 pipe_name(pipe));
3219 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003220 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003221 }
3222 }
3223 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3224
3225 if (!irq_received)
3226 break;
3227
Chris Wilsona266c7d2012-04-24 22:59:44 +01003228 /* Consume port. Then clear IIR or we'll miss events */
3229 if ((I915_HAS_HOTPLUG(dev)) &&
3230 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3231 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003232 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003233
3234 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3235 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02003236
3237 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
3238
Chris Wilsona266c7d2012-04-24 22:59:44 +01003239 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003240 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003241 }
3242
Chris Wilson38bde182012-04-24 22:59:50 +01003243 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003244 new_iir = I915_READ(IIR); /* Flush posted writes */
3245
Chris Wilsona266c7d2012-04-24 22:59:44 +01003246 if (iir & I915_USER_INTERRUPT)
3247 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003248
Chris Wilsona266c7d2012-04-24 22:59:44 +01003249 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003250 int plane = pipe;
3251 if (IS_MOBILE(dev))
3252 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003253
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003254 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3255 i915_handle_vblank(dev, plane, pipe, iir))
3256 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003257
3258 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3259 blc_event = true;
3260 }
3261
Chris Wilsona266c7d2012-04-24 22:59:44 +01003262 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3263 intel_opregion_asle_intr(dev);
3264
3265 /* With MSI, interrupts are only generated when iir
3266 * transitions from zero to nonzero. If another bit got
3267 * set while we were handling the existing iir bits, then
3268 * we would never get another interrupt.
3269 *
3270 * This is fine on non-MSI as well, as if we hit this path
3271 * we avoid exiting the interrupt handler only to generate
3272 * another one.
3273 *
3274 * Note that for MSI this could cause a stray interrupt report
3275 * if an interrupt landed in the time between writing IIR and
3276 * the posting read. This should be rare enough to never
3277 * trigger the 99% of 100,000 interrupts test for disabling
3278 * stray interrupts.
3279 */
Chris Wilson38bde182012-04-24 22:59:50 +01003280 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003281 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003282 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003283
Daniel Vetterd05c6172012-04-26 23:28:09 +02003284 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003285
Chris Wilsona266c7d2012-04-24 22:59:44 +01003286 return ret;
3287}
3288
3289static void i915_irq_uninstall(struct drm_device * dev)
3290{
3291 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3292 int pipe;
3293
Egbert Eichac4c16c2013-04-16 13:36:58 +02003294 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3295
Chris Wilsona266c7d2012-04-24 22:59:44 +01003296 if (I915_HAS_HOTPLUG(dev)) {
3297 I915_WRITE(PORT_HOTPLUG_EN, 0);
3298 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3299 }
3300
Chris Wilson00d98eb2012-04-24 22:59:48 +01003301 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003302 for_each_pipe(pipe) {
3303 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003304 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003305 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3306 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003307 I915_WRITE(IMR, 0xffffffff);
3308 I915_WRITE(IER, 0x0);
3309
Chris Wilsona266c7d2012-04-24 22:59:44 +01003310 I915_WRITE(IIR, I915_READ(IIR));
3311}
3312
3313static void i965_irq_preinstall(struct drm_device * dev)
3314{
3315 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3316 int pipe;
3317
3318 atomic_set(&dev_priv->irq_received, 0);
3319
Chris Wilsonadca4732012-05-11 18:01:31 +01003320 I915_WRITE(PORT_HOTPLUG_EN, 0);
3321 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003322
3323 I915_WRITE(HWSTAM, 0xeffe);
3324 for_each_pipe(pipe)
3325 I915_WRITE(PIPESTAT(pipe), 0);
3326 I915_WRITE(IMR, 0xffffffff);
3327 I915_WRITE(IER, 0x0);
3328 POSTING_READ(IER);
3329}
3330
3331static int i965_irq_postinstall(struct drm_device *dev)
3332{
3333 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003334 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003335 u32 error_mask;
Daniel Vetterb79480b2013-06-27 17:52:10 +02003336 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003337
Chris Wilsona266c7d2012-04-24 22:59:44 +01003338 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003339 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003340 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003341 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3342 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3343 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3344 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3345 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3346
3347 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003348 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3349 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003350 enable_mask |= I915_USER_INTERRUPT;
3351
3352 if (IS_G4X(dev))
3353 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003354
Daniel Vetterb79480b2013-06-27 17:52:10 +02003355 /* Interrupt setup is already guaranteed to be single-threaded, this is
3356 * just to make the assert_spin_locked check happy. */
3357 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003358 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Daniel Vetterb79480b2013-06-27 17:52:10 +02003359 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003360
Chris Wilsona266c7d2012-04-24 22:59:44 +01003361 /*
3362 * Enable some error detection, note the instruction error mask
3363 * bit is reserved, so we leave it masked.
3364 */
3365 if (IS_G4X(dev)) {
3366 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3367 GM45_ERROR_MEM_PRIV |
3368 GM45_ERROR_CP_PRIV |
3369 I915_ERROR_MEMORY_REFRESH);
3370 } else {
3371 error_mask = ~(I915_ERROR_PAGE_TABLE |
3372 I915_ERROR_MEMORY_REFRESH);
3373 }
3374 I915_WRITE(EMR, error_mask);
3375
3376 I915_WRITE(IMR, dev_priv->irq_mask);
3377 I915_WRITE(IER, enable_mask);
3378 POSTING_READ(IER);
3379
Daniel Vetter20afbda2012-12-11 14:05:07 +01003380 I915_WRITE(PORT_HOTPLUG_EN, 0);
3381 POSTING_READ(PORT_HOTPLUG_EN);
3382
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003383 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003384
3385 return 0;
3386}
3387
Egbert Eichbac56d52013-02-25 12:06:51 -05003388static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003389{
3390 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003391 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003392 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003393 u32 hotplug_en;
3394
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003395 assert_spin_locked(&dev_priv->irq_lock);
3396
Egbert Eichbac56d52013-02-25 12:06:51 -05003397 if (I915_HAS_HOTPLUG(dev)) {
3398 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3399 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3400 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003401 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003402 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3403 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3404 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003405 /* Programming the CRT detection parameters tends
3406 to generate a spurious hotplug event about three
3407 seconds later. So just do it once.
3408 */
3409 if (IS_G4X(dev))
3410 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003411 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003412 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003413
Egbert Eichbac56d52013-02-25 12:06:51 -05003414 /* Ignore TV since it's buggy */
3415 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3416 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003417}
3418
Daniel Vetterff1f5252012-10-02 15:10:55 +02003419static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003420{
3421 struct drm_device *dev = (struct drm_device *) arg;
3422 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003423 u32 iir, new_iir;
3424 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003425 unsigned long irqflags;
3426 int irq_received;
3427 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003428 u32 flip_mask =
3429 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3430 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003431
3432 atomic_inc(&dev_priv->irq_received);
3433
3434 iir = I915_READ(IIR);
3435
Chris Wilsona266c7d2012-04-24 22:59:44 +01003436 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003437 bool blc_event = false;
3438
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003439 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003440
3441 /* Can't rely on pipestat interrupt bit in iir as it might
3442 * have been cleared after the pipestat interrupt was received.
3443 * It doesn't set the bit in iir again, but it still produces
3444 * interrupts (for non-MSI).
3445 */
3446 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3447 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3448 i915_handle_error(dev, false);
3449
3450 for_each_pipe(pipe) {
3451 int reg = PIPESTAT(pipe);
3452 pipe_stats[pipe] = I915_READ(reg);
3453
3454 /*
3455 * Clear the PIPE*STAT regs before the IIR
3456 */
3457 if (pipe_stats[pipe] & 0x8000ffff) {
3458 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3459 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3460 pipe_name(pipe));
3461 I915_WRITE(reg, pipe_stats[pipe]);
3462 irq_received = 1;
3463 }
3464 }
3465 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3466
3467 if (!irq_received)
3468 break;
3469
3470 ret = IRQ_HANDLED;
3471
3472 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003473 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003474 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003475 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3476 HOTPLUG_INT_STATUS_G4X :
Daniel Vetter4f7fd702013-06-24 21:33:28 +02003477 HOTPLUG_INT_STATUS_I915);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003478
3479 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3480 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02003481
3482 intel_hpd_irq_handler(dev, hotplug_trigger,
3483 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i915);
3484
Chris Wilsona266c7d2012-04-24 22:59:44 +01003485 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3486 I915_READ(PORT_HOTPLUG_STAT);
3487 }
3488
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003489 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003490 new_iir = I915_READ(IIR); /* Flush posted writes */
3491
Chris Wilsona266c7d2012-04-24 22:59:44 +01003492 if (iir & I915_USER_INTERRUPT)
3493 notify_ring(dev, &dev_priv->ring[RCS]);
3494 if (iir & I915_BSD_USER_INTERRUPT)
3495 notify_ring(dev, &dev_priv->ring[VCS]);
3496
Chris Wilsona266c7d2012-04-24 22:59:44 +01003497 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003498 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003499 i915_handle_vblank(dev, pipe, pipe, iir))
3500 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003501
3502 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3503 blc_event = true;
3504 }
3505
3506
3507 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3508 intel_opregion_asle_intr(dev);
3509
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003510 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3511 gmbus_irq_handler(dev);
3512
Chris Wilsona266c7d2012-04-24 22:59:44 +01003513 /* With MSI, interrupts are only generated when iir
3514 * transitions from zero to nonzero. If another bit got
3515 * set while we were handling the existing iir bits, then
3516 * we would never get another interrupt.
3517 *
3518 * This is fine on non-MSI as well, as if we hit this path
3519 * we avoid exiting the interrupt handler only to generate
3520 * another one.
3521 *
3522 * Note that for MSI this could cause a stray interrupt report
3523 * if an interrupt landed in the time between writing IIR and
3524 * the posting read. This should be rare enough to never
3525 * trigger the 99% of 100,000 interrupts test for disabling
3526 * stray interrupts.
3527 */
3528 iir = new_iir;
3529 }
3530
Daniel Vetterd05c6172012-04-26 23:28:09 +02003531 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003532
Chris Wilsona266c7d2012-04-24 22:59:44 +01003533 return ret;
3534}
3535
3536static void i965_irq_uninstall(struct drm_device * dev)
3537{
3538 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3539 int pipe;
3540
3541 if (!dev_priv)
3542 return;
3543
Egbert Eichac4c16c2013-04-16 13:36:58 +02003544 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3545
Chris Wilsonadca4732012-05-11 18:01:31 +01003546 I915_WRITE(PORT_HOTPLUG_EN, 0);
3547 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003548
3549 I915_WRITE(HWSTAM, 0xffffffff);
3550 for_each_pipe(pipe)
3551 I915_WRITE(PIPESTAT(pipe), 0);
3552 I915_WRITE(IMR, 0xffffffff);
3553 I915_WRITE(IER, 0x0);
3554
3555 for_each_pipe(pipe)
3556 I915_WRITE(PIPESTAT(pipe),
3557 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3558 I915_WRITE(IIR, I915_READ(IIR));
3559}
3560
Egbert Eichac4c16c2013-04-16 13:36:58 +02003561static void i915_reenable_hotplug_timer_func(unsigned long data)
3562{
3563 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3564 struct drm_device *dev = dev_priv->dev;
3565 struct drm_mode_config *mode_config = &dev->mode_config;
3566 unsigned long irqflags;
3567 int i;
3568
3569 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3570 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3571 struct drm_connector *connector;
3572
3573 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3574 continue;
3575
3576 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3577
3578 list_for_each_entry(connector, &mode_config->connector_list, head) {
3579 struct intel_connector *intel_connector = to_intel_connector(connector);
3580
3581 if (intel_connector->encoder->hpd_pin == i) {
3582 if (connector->polled != intel_connector->polled)
3583 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3584 drm_get_connector_name(connector));
3585 connector->polled = intel_connector->polled;
3586 if (!connector->polled)
3587 connector->polled = DRM_CONNECTOR_POLL_HPD;
3588 }
3589 }
3590 }
3591 if (dev_priv->display.hpd_irq_setup)
3592 dev_priv->display.hpd_irq_setup(dev);
3593 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3594}
3595
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003596void intel_irq_init(struct drm_device *dev)
3597{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003598 struct drm_i915_private *dev_priv = dev->dev_private;
3599
3600 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003601 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003602 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003603 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003604
Daniel Vetter99584db2012-11-14 17:14:04 +01003605 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3606 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003607 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003608 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3609 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003610
Tomas Janousek97a19a22012-12-08 13:48:13 +01003611 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003612
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003613 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3614 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003615 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003616 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3617 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3618 }
3619
Keith Packardc3613de2011-08-12 17:05:54 -07003620 if (drm_core_check_feature(dev, DRIVER_MODESET))
3621 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3622 else
3623 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003624 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3625
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003626 if (IS_VALLEYVIEW(dev)) {
3627 dev->driver->irq_handler = valleyview_irq_handler;
3628 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3629 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3630 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3631 dev->driver->enable_vblank = valleyview_enable_vblank;
3632 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003633 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003634 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Ben Widawsky7d991632013-05-28 19:22:25 -07003635 /* Share uninstall handlers with ILK/SNB */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003636 dev->driver->irq_handler = ivybridge_irq_handler;
Ben Widawsky7d991632013-05-28 19:22:25 -07003637 dev->driver->irq_preinstall = ivybridge_irq_preinstall;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003638 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3639 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3640 dev->driver->enable_vblank = ivybridge_enable_vblank;
3641 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003642 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003643 } else if (HAS_PCH_SPLIT(dev)) {
3644 dev->driver->irq_handler = ironlake_irq_handler;
3645 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3646 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3647 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3648 dev->driver->enable_vblank = ironlake_enable_vblank;
3649 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003650 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003651 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003652 if (INTEL_INFO(dev)->gen == 2) {
3653 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3654 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3655 dev->driver->irq_handler = i8xx_irq_handler;
3656 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003657 } else if (INTEL_INFO(dev)->gen == 3) {
3658 dev->driver->irq_preinstall = i915_irq_preinstall;
3659 dev->driver->irq_postinstall = i915_irq_postinstall;
3660 dev->driver->irq_uninstall = i915_irq_uninstall;
3661 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003662 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003663 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003664 dev->driver->irq_preinstall = i965_irq_preinstall;
3665 dev->driver->irq_postinstall = i965_irq_postinstall;
3666 dev->driver->irq_uninstall = i965_irq_uninstall;
3667 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003668 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003669 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003670 dev->driver->enable_vblank = i915_enable_vblank;
3671 dev->driver->disable_vblank = i915_disable_vblank;
3672 }
3673}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003674
3675void intel_hpd_init(struct drm_device *dev)
3676{
3677 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003678 struct drm_mode_config *mode_config = &dev->mode_config;
3679 struct drm_connector *connector;
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003680 unsigned long irqflags;
Egbert Eich821450c2013-04-16 13:36:55 +02003681 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003682
Egbert Eich821450c2013-04-16 13:36:55 +02003683 for (i = 1; i < HPD_NUM_PINS; i++) {
3684 dev_priv->hpd_stats[i].hpd_cnt = 0;
3685 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3686 }
3687 list_for_each_entry(connector, &mode_config->connector_list, head) {
3688 struct intel_connector *intel_connector = to_intel_connector(connector);
3689 connector->polled = intel_connector->polled;
3690 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3691 connector->polled = DRM_CONNECTOR_POLL_HPD;
3692 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003693
3694 /* Interrupt setup is already guaranteed to be single-threaded, this is
3695 * just to make the assert_spin_locked checks happy. */
3696 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003697 if (dev_priv->display.hpd_irq_setup)
3698 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003699 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003700}