blob: 4aedd387c8b571611efe85ad77de8642a1e27408 [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
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001523 reloc_offset = dst->gtt_offset = i915_gem_obj_ggtt_offset(src);
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 Wilson9df30792010-02-18 10:24:56 +00001575
1576 return dst;
1577
1578unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001579 while (i--)
1580 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001581 kfree(dst);
1582 return NULL;
1583}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001584#define i915_error_object_create(dev_priv, src) \
1585 i915_error_object_create_sized((dev_priv), (src), \
1586 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001587
1588static void
1589i915_error_object_free(struct drm_i915_error_object *obj)
1590{
1591 int page;
1592
1593 if (obj == NULL)
1594 return;
1595
1596 for (page = 0; page < obj->page_count; page++)
1597 kfree(obj->pages[page]);
1598
1599 kfree(obj);
1600}
1601
Daniel Vetter742cbee2012-04-27 15:17:39 +02001602void
1603i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001604{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001605 struct drm_i915_error_state *error = container_of(error_ref,
1606 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001607 int i;
1608
Chris Wilson52d39a22012-02-15 11:25:37 +00001609 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1610 i915_error_object_free(error->ring[i].batchbuffer);
1611 i915_error_object_free(error->ring[i].ringbuffer);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001612 i915_error_object_free(error->ring[i].ctx);
Chris Wilson52d39a22012-02-15 11:25:37 +00001613 kfree(error->ring[i].requests);
1614 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001615
Chris Wilson9df30792010-02-18 10:24:56 +00001616 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001617 kfree(error->overlay);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001618 kfree(error->display);
Chris Wilson9df30792010-02-18 10:24:56 +00001619 kfree(error);
1620}
Chris Wilson1b502472012-04-24 15:47:30 +01001621static void capture_bo(struct drm_i915_error_buffer *err,
1622 struct drm_i915_gem_object *obj)
1623{
1624 err->size = obj->base.size;
1625 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001626 err->rseqno = obj->last_read_seqno;
1627 err->wseqno = obj->last_write_seqno;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001628 err->gtt_offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1b502472012-04-24 15:47:30 +01001629 err->read_domains = obj->base.read_domains;
1630 err->write_domain = obj->base.write_domain;
1631 err->fence_reg = obj->fence_reg;
1632 err->pinned = 0;
1633 if (obj->pin_count > 0)
1634 err->pinned = 1;
1635 if (obj->user_pin_count > 0)
1636 err->pinned = -1;
1637 err->tiling = obj->tiling_mode;
1638 err->dirty = obj->dirty;
1639 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1640 err->ring = obj->ring ? obj->ring->id : -1;
1641 err->cache_level = obj->cache_level;
1642}
Chris Wilson9df30792010-02-18 10:24:56 +00001643
Chris Wilson1b502472012-04-24 15:47:30 +01001644static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1645 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001646{
1647 struct drm_i915_gem_object *obj;
1648 int i = 0;
1649
1650 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001651 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001652 if (++i == count)
1653 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001654 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001655
Chris Wilson1b502472012-04-24 15:47:30 +01001656 return i;
1657}
1658
1659static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1660 int count, struct list_head *head)
1661{
1662 struct drm_i915_gem_object *obj;
1663 int i = 0;
1664
Ben Widawsky35c20a62013-05-31 11:28:48 -07001665 list_for_each_entry(obj, head, global_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001666 if (obj->pin_count == 0)
1667 continue;
1668
1669 capture_bo(err++, obj);
1670 if (++i == count)
1671 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001672 }
1673
1674 return i;
1675}
1676
Chris Wilson748ebc62010-10-24 10:28:47 +01001677static void i915_gem_record_fences(struct drm_device *dev,
1678 struct drm_i915_error_state *error)
1679{
1680 struct drm_i915_private *dev_priv = dev->dev_private;
1681 int i;
1682
1683 /* Fences */
1684 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001685 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001686 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001687 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001688 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1689 break;
1690 case 5:
1691 case 4:
1692 for (i = 0; i < 16; i++)
1693 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1694 break;
1695 case 3:
1696 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1697 for (i = 0; i < 8; i++)
1698 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1699 case 2:
1700 for (i = 0; i < 8; i++)
1701 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1702 break;
1703
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001704 default:
1705 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001706 }
1707}
1708
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001709static struct drm_i915_error_object *
1710i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1711 struct intel_ring_buffer *ring)
1712{
1713 struct drm_i915_gem_object *obj;
1714 u32 seqno;
1715
1716 if (!ring->get_seqno)
1717 return NULL;
1718
Daniel Vetterb45305f2012-12-17 16:21:27 +01001719 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1720 u32 acthd = I915_READ(ACTHD);
1721
1722 if (WARN_ON(ring->id != RCS))
1723 return NULL;
1724
1725 obj = ring->private;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001726 if (acthd >= i915_gem_obj_ggtt_offset(obj) &&
1727 acthd < i915_gem_obj_ggtt_offset(obj) + obj->base.size)
Daniel Vetterb45305f2012-12-17 16:21:27 +01001728 return i915_error_object_create(dev_priv, obj);
1729 }
1730
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001731 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001732 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1733 if (obj->ring != ring)
1734 continue;
1735
Chris Wilson0201f1e2012-07-20 12:41:01 +01001736 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001737 continue;
1738
1739 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1740 continue;
1741
1742 /* We need to copy these to an anonymous buffer as the simplest
1743 * method to avoid being overwritten by userspace.
1744 */
1745 return i915_error_object_create(dev_priv, obj);
1746 }
1747
1748 return NULL;
1749}
1750
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001751static void i915_record_ring_state(struct drm_device *dev,
1752 struct drm_i915_error_state *error,
1753 struct intel_ring_buffer *ring)
1754{
1755 struct drm_i915_private *dev_priv = dev->dev_private;
1756
Daniel Vetter33f3f512011-12-14 13:57:39 +01001757 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001758 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001759 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001760 error->semaphore_mboxes[ring->id][0]
1761 = I915_READ(RING_SYNC_0(ring->mmio_base));
1762 error->semaphore_mboxes[ring->id][1]
1763 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001764 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1765 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001766 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001767
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001768 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001769 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001770 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1771 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1772 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001773 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001774 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001775 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001776 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001777 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001778 error->ipeir[ring->id] = I915_READ(IPEIR);
1779 error->ipehr[ring->id] = I915_READ(IPEHR);
1780 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001781 }
1782
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001783 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001784 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001785 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001786 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001787 error->head[ring->id] = I915_READ_HEAD(ring);
1788 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001789 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001790
1791 error->cpu_ring_head[ring->id] = ring->head;
1792 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001793}
1794
Ben Widawsky8c123e52013-03-04 17:00:29 -08001795
1796static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1797 struct drm_i915_error_state *error,
1798 struct drm_i915_error_ring *ering)
1799{
1800 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1801 struct drm_i915_gem_object *obj;
1802
1803 /* Currently render ring is the only HW context user */
1804 if (ring->id != RCS || !error->ccid)
1805 return;
1806
Ben Widawsky35c20a62013-05-31 11:28:48 -07001807 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001808 if ((error->ccid & PAGE_MASK) == i915_gem_obj_ggtt_offset(obj)) {
Ben Widawsky8c123e52013-03-04 17:00:29 -08001809 ering->ctx = i915_error_object_create_sized(dev_priv,
1810 obj, 1);
Damien Lespiau3ef8fb52013-06-24 14:54:50 +01001811 break;
Ben Widawsky8c123e52013-03-04 17:00:29 -08001812 }
1813 }
1814}
1815
Chris Wilson52d39a22012-02-15 11:25:37 +00001816static void i915_gem_record_rings(struct drm_device *dev,
1817 struct drm_i915_error_state *error)
1818{
1819 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001820 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001821 struct drm_i915_gem_request *request;
1822 int i, count;
1823
Chris Wilsonb4519512012-05-11 14:29:30 +01001824 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001825 i915_record_ring_state(dev, error, ring);
1826
1827 error->ring[i].batchbuffer =
1828 i915_error_first_batchbuffer(dev_priv, ring);
1829
1830 error->ring[i].ringbuffer =
1831 i915_error_object_create(dev_priv, ring->obj);
1832
Ben Widawsky8c123e52013-03-04 17:00:29 -08001833
1834 i915_gem_record_active_context(ring, error, &error->ring[i]);
1835
Chris Wilson52d39a22012-02-15 11:25:37 +00001836 count = 0;
1837 list_for_each_entry(request, &ring->request_list, list)
1838 count++;
1839
1840 error->ring[i].num_requests = count;
1841 error->ring[i].requests =
1842 kmalloc(count*sizeof(struct drm_i915_error_request),
1843 GFP_ATOMIC);
1844 if (error->ring[i].requests == NULL) {
1845 error->ring[i].num_requests = 0;
1846 continue;
1847 }
1848
1849 count = 0;
1850 list_for_each_entry(request, &ring->request_list, list) {
1851 struct drm_i915_error_request *erq;
1852
1853 erq = &error->ring[i].requests[count++];
1854 erq->seqno = request->seqno;
1855 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001856 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001857 }
1858 }
1859}
1860
Ben Widawsky26b7c222013-06-27 16:30:03 -07001861static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
1862 struct drm_i915_error_state *error)
1863{
1864 struct drm_i915_gem_object *obj;
1865 int i;
1866
1867 i = 0;
1868 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1869 i++;
1870 error->active_bo_count = i;
1871 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1872 if (obj->pin_count)
1873 i++;
1874 error->pinned_bo_count = i - error->active_bo_count;
1875
1876 if (i) {
1877 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
1878 GFP_ATOMIC);
1879 if (error->active_bo)
1880 error->pinned_bo =
1881 error->active_bo + error->active_bo_count;
1882 }
1883
1884 if (error->active_bo)
1885 error->active_bo_count =
1886 capture_active_bo(error->active_bo,
1887 error->active_bo_count,
1888 &dev_priv->mm.active_list);
1889
1890 if (error->pinned_bo)
1891 error->pinned_bo_count =
1892 capture_pinned_bo(error->pinned_bo,
1893 error->pinned_bo_count,
1894 &dev_priv->mm.bound_list);
1895}
1896
Jesse Barnes8a905232009-07-11 16:48:03 -04001897/**
1898 * i915_capture_error_state - capture an error record for later analysis
1899 * @dev: drm device
1900 *
1901 * Should be called when an error is detected (either a hang or an error
1902 * interrupt) to capture error state from the time of the error. Fills
1903 * out a structure which becomes available in debugfs for user level tools
1904 * to pick up.
1905 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001906static void i915_capture_error_state(struct drm_device *dev)
1907{
1908 struct drm_i915_private *dev_priv = dev->dev_private;
1909 struct drm_i915_error_state *error;
1910 unsigned long flags;
Ben Widawsky26b7c222013-06-27 16:30:03 -07001911 int pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001912
Daniel Vetter99584db2012-11-14 17:14:04 +01001913 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1914 error = dev_priv->gpu_error.first_error;
1915 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001916 if (error)
1917 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001918
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001919 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001920 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001921 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001922 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1923 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001924 }
1925
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001926 DRM_INFO("capturing error event; look for more information in "
Mika Kuoppalaef86ddc2013-06-06 17:38:54 +03001927 "/sys/class/drm/card%d/error\n", dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001928
Daniel Vetter742cbee2012-04-27 15:17:39 +02001929 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001930 error->eir = I915_READ(EIR);
1931 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001932 if (HAS_HW_CONTEXTS(dev))
1933 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001934
1935 if (HAS_PCH_SPLIT(dev))
1936 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1937 else if (IS_VALLEYVIEW(dev))
1938 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1939 else if (IS_GEN2(dev))
1940 error->ier = I915_READ16(IER);
1941 else
1942 error->ier = I915_READ(IER);
1943
Chris Wilson0f3b6842013-01-15 12:05:55 +00001944 if (INTEL_INFO(dev)->gen >= 6)
1945 error->derrmr = I915_READ(DERRMR);
1946
1947 if (IS_VALLEYVIEW(dev))
1948 error->forcewake = I915_READ(FORCEWAKE_VLV);
1949 else if (INTEL_INFO(dev)->gen >= 7)
1950 error->forcewake = I915_READ(FORCEWAKE_MT);
1951 else if (INTEL_INFO(dev)->gen == 6)
1952 error->forcewake = I915_READ(FORCEWAKE);
1953
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001954 if (!HAS_PCH_SPLIT(dev))
1955 for_each_pipe(pipe)
1956 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001957
Daniel Vetter33f3f512011-12-14 13:57:39 +01001958 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001959 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001960 error->done_reg = I915_READ(DONE_REG);
1961 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001962
Ben Widawsky71e172e2012-08-20 16:15:13 -07001963 if (INTEL_INFO(dev)->gen == 7)
1964 error->err_int = I915_READ(GEN7_ERR_INT);
1965
Ben Widawsky050ee912012-08-22 11:32:15 -07001966 i915_get_extra_instdone(dev, error->extra_instdone);
1967
Ben Widawsky26b7c222013-06-27 16:30:03 -07001968 i915_gem_capture_buffers(dev_priv, error);
Chris Wilson748ebc62010-10-24 10:28:47 +01001969 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001970 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001971
Jesse Barnes8a905232009-07-11 16:48:03 -04001972 do_gettimeofday(&error->time);
1973
Chris Wilson6ef3d422010-08-04 20:26:07 +01001974 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001975 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001976
Daniel Vetter99584db2012-11-14 17:14:04 +01001977 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1978 if (dev_priv->gpu_error.first_error == NULL) {
1979 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00001980 error = NULL;
1981 }
Daniel Vetter99584db2012-11-14 17:14:04 +01001982 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001983
1984 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001985 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001986}
1987
1988void i915_destroy_error_state(struct drm_device *dev)
1989{
1990 struct drm_i915_private *dev_priv = dev->dev_private;
1991 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001992 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001993
Daniel Vetter99584db2012-11-14 17:14:04 +01001994 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1995 error = dev_priv->gpu_error.first_error;
1996 dev_priv->gpu_error.first_error = NULL;
1997 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001998
1999 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02002000 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002001}
Chris Wilson3bd3c932010-08-19 08:19:30 +01002002#else
2003#define i915_capture_error_state(x)
2004#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002005
Chris Wilson35aed2e2010-05-27 13:18:12 +01002006static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002007{
2008 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002009 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002010 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002011 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002012
Chris Wilson35aed2e2010-05-27 13:18:12 +01002013 if (!eir)
2014 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002015
Joe Perchesa70491c2012-03-18 13:00:11 -07002016 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002017
Ben Widawskybd9854f2012-08-23 15:18:09 -07002018 i915_get_extra_instdone(dev, instdone);
2019
Jesse Barnes8a905232009-07-11 16:48:03 -04002020 if (IS_G4X(dev)) {
2021 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2022 u32 ipeir = I915_READ(IPEIR_I965);
2023
Joe Perchesa70491c2012-03-18 13:00:11 -07002024 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2025 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002026 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2027 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002028 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002029 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002030 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002031 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002032 }
2033 if (eir & GM45_ERROR_PAGE_TABLE) {
2034 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002035 pr_err("page table error\n");
2036 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002037 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002038 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002039 }
2040 }
2041
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002042 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002043 if (eir & I915_ERROR_PAGE_TABLE) {
2044 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002045 pr_err("page table error\n");
2046 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002047 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002048 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002049 }
2050 }
2051
2052 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002053 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002054 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002055 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002056 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002057 /* pipestat has already been acked */
2058 }
2059 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002060 pr_err("instruction error\n");
2061 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002062 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2063 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002064 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002065 u32 ipeir = I915_READ(IPEIR);
2066
Joe Perchesa70491c2012-03-18 13:00:11 -07002067 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2068 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002069 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002070 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002071 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002072 } else {
2073 u32 ipeir = I915_READ(IPEIR_I965);
2074
Joe Perchesa70491c2012-03-18 13:00:11 -07002075 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2076 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002077 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002078 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002079 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002080 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002081 }
2082 }
2083
2084 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002085 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002086 eir = I915_READ(EIR);
2087 if (eir) {
2088 /*
2089 * some errors might have become stuck,
2090 * mask them.
2091 */
2092 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2093 I915_WRITE(EMR, I915_READ(EMR) | eir);
2094 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2095 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002096}
2097
2098/**
2099 * i915_handle_error - handle an error interrupt
2100 * @dev: drm device
2101 *
2102 * Do some basic checking of regsiter state at error interrupt time and
2103 * dump it to the syslog. Also call i915_capture_error_state() to make
2104 * sure we get a record and make it available in debugfs. Fire a uevent
2105 * so userspace knows something bad happened (should trigger collection
2106 * of a ring dump etc.).
2107 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002108void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002109{
2110 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002111 struct intel_ring_buffer *ring;
2112 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002113
2114 i915_capture_error_state(dev);
2115 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002116
Ben Gamariba1234d2009-09-14 17:48:47 -04002117 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002118 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2119 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002120
Ben Gamari11ed50e2009-09-14 17:48:45 -04002121 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002122 * Wakeup waiting processes so that the reset work item
2123 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002124 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002125 for_each_ring(ring, dev_priv, i)
2126 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002127 }
2128
Daniel Vetter99584db2012-11-14 17:14:04 +01002129 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002130}
2131
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002132static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002133{
2134 drm_i915_private_t *dev_priv = dev->dev_private;
2135 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2136 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002137 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002138 struct intel_unpin_work *work;
2139 unsigned long flags;
2140 bool stall_detected;
2141
2142 /* Ignore early vblank irqs */
2143 if (intel_crtc == NULL)
2144 return;
2145
2146 spin_lock_irqsave(&dev->event_lock, flags);
2147 work = intel_crtc->unpin_work;
2148
Chris Wilsone7d841c2012-12-03 11:36:30 +00002149 if (work == NULL ||
2150 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2151 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002152 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2153 spin_unlock_irqrestore(&dev->event_lock, flags);
2154 return;
2155 }
2156
2157 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002158 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002159 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002160 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002161 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002162 i915_gem_obj_ggtt_offset(obj);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002163 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002164 int dspaddr = DSPADDR(intel_crtc->plane);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002165 stall_detected = I915_READ(dspaddr) == (i915_gem_obj_ggtt_offset(obj) +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002166 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002167 crtc->x * crtc->fb->bits_per_pixel/8);
2168 }
2169
2170 spin_unlock_irqrestore(&dev->event_lock, flags);
2171
2172 if (stall_detected) {
2173 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2174 intel_prepare_page_flip(dev, intel_crtc->plane);
2175 }
2176}
2177
Keith Packard42f52ef2008-10-18 19:39:29 -07002178/* Called from drm generic code, passed 'crtc' which
2179 * we use as a pipe index
2180 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002181static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002182{
2183 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002184 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002185
Chris Wilson5eddb702010-09-11 13:48:45 +01002186 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002187 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002188
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002189 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002190 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002191 i915_enable_pipestat(dev_priv, pipe,
2192 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002193 else
Keith Packard7c463582008-11-04 02:03:27 -08002194 i915_enable_pipestat(dev_priv, pipe,
2195 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002196
2197 /* maintain vblank delivery even in deep C-states */
2198 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002199 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002200 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002201
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002202 return 0;
2203}
2204
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002205static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002206{
2207 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2208 unsigned long irqflags;
2209
2210 if (!i915_pipe_enabled(dev, pipe))
2211 return -EINVAL;
2212
2213 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2214 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002215 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002216 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2217
2218 return 0;
2219}
2220
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002221static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002222{
2223 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2224 unsigned long irqflags;
2225
2226 if (!i915_pipe_enabled(dev, pipe))
2227 return -EINVAL;
2228
2229 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002230 ironlake_enable_display_irq(dev_priv,
2231 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002232 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2233
2234 return 0;
2235}
2236
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002237static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2238{
2239 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2240 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002241 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002242
2243 if (!i915_pipe_enabled(dev, pipe))
2244 return -EINVAL;
2245
2246 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002247 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002248 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002249 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002250 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002251 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002252 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002253 i915_enable_pipestat(dev_priv, pipe,
2254 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002255 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2256
2257 return 0;
2258}
2259
Keith Packard42f52ef2008-10-18 19:39:29 -07002260/* Called from drm generic code, passed 'crtc' which
2261 * we use as a pipe index
2262 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002263static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002264{
2265 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002266 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002267
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002268 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002269 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002270 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002271
Jesse Barnesf796cf82011-04-07 13:58:17 -07002272 i915_disable_pipestat(dev_priv, pipe,
2273 PIPE_VBLANK_INTERRUPT_ENABLE |
2274 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2275 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2276}
2277
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002278static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002279{
2280 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2281 unsigned long irqflags;
2282
2283 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2284 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002285 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002286 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002287}
2288
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002289static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002290{
2291 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2292 unsigned long irqflags;
2293
2294 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002295 ironlake_disable_display_irq(dev_priv,
2296 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002297 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2298}
2299
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002300static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2301{
2302 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2303 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002304 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002305
2306 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002307 i915_disable_pipestat(dev_priv, pipe,
2308 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002309 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002310 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002311 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002312 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002313 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002314 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002315 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2316}
2317
Chris Wilson893eead2010-10-27 14:44:35 +01002318static u32
2319ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002320{
Chris Wilson893eead2010-10-27 14:44:35 +01002321 return list_entry(ring->request_list.prev,
2322 struct drm_i915_gem_request, list)->seqno;
2323}
2324
Chris Wilson9107e9d2013-06-10 11:20:20 +01002325static bool
2326ring_idle(struct intel_ring_buffer *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002327{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002328 return (list_empty(&ring->request_list) ||
2329 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04002330}
2331
Chris Wilson6274f212013-06-10 11:20:21 +01002332static struct intel_ring_buffer *
2333semaphore_waits_for(struct intel_ring_buffer *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002334{
2335 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson6274f212013-06-10 11:20:21 +01002336 u32 cmd, ipehr, acthd, acthd_min;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002337
2338 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2339 if ((ipehr & ~(0x3 << 16)) !=
2340 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
Chris Wilson6274f212013-06-10 11:20:21 +01002341 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002342
2343 /* ACTHD is likely pointing to the dword after the actual command,
2344 * so scan backwards until we find the MBOX.
2345 */
Chris Wilson6274f212013-06-10 11:20:21 +01002346 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002347 acthd_min = max((int)acthd - 3 * 4, 0);
2348 do {
2349 cmd = ioread32(ring->virtual_start + acthd);
2350 if (cmd == ipehr)
2351 break;
2352
2353 acthd -= 4;
2354 if (acthd < acthd_min)
Chris Wilson6274f212013-06-10 11:20:21 +01002355 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002356 } while (1);
2357
Chris Wilson6274f212013-06-10 11:20:21 +01002358 *seqno = ioread32(ring->virtual_start+acthd+4)+1;
2359 return &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
Chris Wilsona24a11e2013-03-14 17:52:05 +02002360}
2361
Chris Wilson6274f212013-06-10 11:20:21 +01002362static int semaphore_passed(struct intel_ring_buffer *ring)
2363{
2364 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2365 struct intel_ring_buffer *signaller;
2366 u32 seqno, ctl;
2367
2368 ring->hangcheck.deadlock = true;
2369
2370 signaller = semaphore_waits_for(ring, &seqno);
2371 if (signaller == NULL || signaller->hangcheck.deadlock)
2372 return -1;
2373
2374 /* cursory check for an unkickable deadlock */
2375 ctl = I915_READ_CTL(signaller);
2376 if (ctl & RING_WAIT_SEMAPHORE && semaphore_passed(signaller) < 0)
2377 return -1;
2378
2379 return i915_seqno_passed(signaller->get_seqno(signaller, false), seqno);
2380}
2381
2382static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2383{
2384 struct intel_ring_buffer *ring;
2385 int i;
2386
2387 for_each_ring(ring, dev_priv, i)
2388 ring->hangcheck.deadlock = false;
2389}
2390
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002391static enum intel_ring_hangcheck_action
2392ring_stuck(struct intel_ring_buffer *ring, u32 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002393{
2394 struct drm_device *dev = ring->dev;
2395 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002396 u32 tmp;
2397
Chris Wilson6274f212013-06-10 11:20:21 +01002398 if (ring->hangcheck.acthd != acthd)
2399 return active;
2400
Chris Wilson9107e9d2013-06-10 11:20:20 +01002401 if (IS_GEN2(dev))
Chris Wilson6274f212013-06-10 11:20:21 +01002402 return hung;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002403
2404 /* Is the chip hanging on a WAIT_FOR_EVENT?
2405 * If so we can simply poke the RB_WAIT bit
2406 * and break the hang. This should work on
2407 * all but the second generation chipsets.
2408 */
2409 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002410 if (tmp & RING_WAIT) {
2411 DRM_ERROR("Kicking stuck wait on %s\n",
2412 ring->name);
2413 I915_WRITE_CTL(ring, tmp);
Chris Wilson6274f212013-06-10 11:20:21 +01002414 return kick;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002415 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002416
Chris Wilson6274f212013-06-10 11:20:21 +01002417 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2418 switch (semaphore_passed(ring)) {
2419 default:
2420 return hung;
2421 case 1:
2422 DRM_ERROR("Kicking stuck semaphore on %s\n",
2423 ring->name);
2424 I915_WRITE_CTL(ring, tmp);
2425 return kick;
2426 case 0:
2427 return wait;
2428 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002429 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002430
Chris Wilson6274f212013-06-10 11:20:21 +01002431 return hung;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002432}
2433
Ben Gamarif65d9422009-09-14 17:48:44 -04002434/**
2435 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002436 * batchbuffers in a long time. We keep track per ring seqno progress and
2437 * if there are no progress, hangcheck score for that ring is increased.
2438 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2439 * we kick the ring. If we see no progress on three subsequent calls
2440 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002441 */
2442void i915_hangcheck_elapsed(unsigned long data)
2443{
2444 struct drm_device *dev = (struct drm_device *)data;
2445 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002446 struct intel_ring_buffer *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002447 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002448 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002449 bool stuck[I915_NUM_RINGS] = { 0 };
2450#define BUSY 1
2451#define KICK 5
2452#define HUNG 20
2453#define FIRE 30
Chris Wilson893eead2010-10-27 14:44:35 +01002454
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002455 if (!i915_enable_hangcheck)
2456 return;
2457
Chris Wilsonb4519512012-05-11 14:29:30 +01002458 for_each_ring(ring, dev_priv, i) {
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002459 u32 seqno, acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002460 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002461
Chris Wilson6274f212013-06-10 11:20:21 +01002462 semaphore_clear_deadlocks(dev_priv);
2463
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002464 seqno = ring->get_seqno(ring, false);
2465 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002466
Chris Wilson9107e9d2013-06-10 11:20:20 +01002467 if (ring->hangcheck.seqno == seqno) {
2468 if (ring_idle(ring, seqno)) {
2469 if (waitqueue_active(&ring->irq_queue)) {
2470 /* Issue a wake-up to catch stuck h/w. */
2471 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2472 ring->name);
2473 wake_up_all(&ring->irq_queue);
2474 ring->hangcheck.score += HUNG;
2475 } else
2476 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002477 } else {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002478 int score;
2479
Chris Wilson6274f212013-06-10 11:20:21 +01002480 /* We always increment the hangcheck score
2481 * if the ring is busy and still processing
2482 * the same request, so that no single request
2483 * can run indefinitely (such as a chain of
2484 * batches). The only time we do not increment
2485 * the hangcheck score on this ring, if this
2486 * ring is in a legitimate wait for another
2487 * ring. In that case the waiting ring is a
2488 * victim and we want to be sure we catch the
2489 * right culprit. Then every time we do kick
2490 * the ring, add a small increment to the
2491 * score so that we can catch a batch that is
2492 * being repeatedly kicked and so responsible
2493 * for stalling the machine.
2494 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002495 ring->hangcheck.action = ring_stuck(ring,
2496 acthd);
2497
2498 switch (ring->hangcheck.action) {
Chris Wilson6274f212013-06-10 11:20:21 +01002499 case wait:
2500 score = 0;
2501 break;
2502 case active:
Chris Wilson9107e9d2013-06-10 11:20:20 +01002503 score = BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01002504 break;
2505 case kick:
2506 score = KICK;
2507 break;
2508 case hung:
2509 score = HUNG;
2510 stuck[i] = true;
2511 break;
2512 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002513 ring->hangcheck.score += score;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002514 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002515 } else {
2516 /* Gradually reduce the count so that we catch DoS
2517 * attempts across multiple batches.
2518 */
2519 if (ring->hangcheck.score > 0)
2520 ring->hangcheck.score--;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002521 }
2522
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002523 ring->hangcheck.seqno = seqno;
2524 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002525 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01002526 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002527
Mika Kuoppala92cab732013-05-24 17:16:07 +03002528 for_each_ring(ring, dev_priv, i) {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002529 if (ring->hangcheck.score > FIRE) {
Ben Widawskyacd78c12013-06-13 21:33:33 -07002530 DRM_ERROR("%s on %s\n",
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002531 stuck[i] ? "stuck" : "no progress",
Chris Wilsona43adf02013-06-10 11:20:22 +01002532 ring->name);
2533 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03002534 }
2535 }
2536
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002537 if (rings_hung)
2538 return i915_handle_error(dev, true);
Ben Gamarif65d9422009-09-14 17:48:44 -04002539
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002540 if (busy_count)
2541 /* Reset timer case chip hangs without another request
2542 * being added */
2543 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
2544 round_jiffies_up(jiffies +
2545 DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002546}
2547
Paulo Zanoni91738a92013-06-05 14:21:51 -03002548static void ibx_irq_preinstall(struct drm_device *dev)
2549{
2550 struct drm_i915_private *dev_priv = dev->dev_private;
2551
2552 if (HAS_PCH_NOP(dev))
2553 return;
2554
2555 /* south display irq */
2556 I915_WRITE(SDEIMR, 0xffffffff);
2557 /*
2558 * SDEIER is also touched by the interrupt handler to work around missed
2559 * PCH interrupts. Hence we can't update it after the interrupt handler
2560 * is enabled - instead we unconditionally enable all PCH interrupt
2561 * sources here, but then only unmask them as needed with SDEIMR.
2562 */
2563 I915_WRITE(SDEIER, 0xffffffff);
2564 POSTING_READ(SDEIER);
2565}
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567/* drm_dma.h hooks
2568*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002569static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002570{
2571 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2572
Jesse Barnes46979952011-04-07 13:53:55 -07002573 atomic_set(&dev_priv->irq_received, 0);
2574
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002575 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002576
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002577 /* XXX hotplug from PCH */
2578
2579 I915_WRITE(DEIMR, 0xffffffff);
2580 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002581 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002582
2583 /* and GT */
2584 I915_WRITE(GTIMR, 0xffffffff);
2585 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002586 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002587
Paulo Zanoni91738a92013-06-05 14:21:51 -03002588 ibx_irq_preinstall(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07002589}
2590
2591static void ivybridge_irq_preinstall(struct drm_device *dev)
2592{
2593 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2594
2595 atomic_set(&dev_priv->irq_received, 0);
2596
2597 I915_WRITE(HWSTAM, 0xeffe);
2598
2599 /* XXX hotplug from PCH */
2600
2601 I915_WRITE(DEIMR, 0xffffffff);
2602 I915_WRITE(DEIER, 0x0);
2603 POSTING_READ(DEIER);
2604
2605 /* and GT */
2606 I915_WRITE(GTIMR, 0xffffffff);
2607 I915_WRITE(GTIER, 0x0);
2608 POSTING_READ(GTIER);
2609
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002610 /* Power management */
2611 I915_WRITE(GEN6_PMIMR, 0xffffffff);
2612 I915_WRITE(GEN6_PMIER, 0x0);
2613 POSTING_READ(GEN6_PMIER);
2614
Paulo Zanoni91738a92013-06-05 14:21:51 -03002615 ibx_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002616}
2617
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002618static void valleyview_irq_preinstall(struct drm_device *dev)
2619{
2620 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2621 int pipe;
2622
2623 atomic_set(&dev_priv->irq_received, 0);
2624
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002625 /* VLV magic */
2626 I915_WRITE(VLV_IMR, 0);
2627 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2628 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2629 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2630
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002631 /* and GT */
2632 I915_WRITE(GTIIR, I915_READ(GTIIR));
2633 I915_WRITE(GTIIR, I915_READ(GTIIR));
2634 I915_WRITE(GTIMR, 0xffffffff);
2635 I915_WRITE(GTIER, 0x0);
2636 POSTING_READ(GTIER);
2637
2638 I915_WRITE(DPINVGTT, 0xff);
2639
2640 I915_WRITE(PORT_HOTPLUG_EN, 0);
2641 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2642 for_each_pipe(pipe)
2643 I915_WRITE(PIPESTAT(pipe), 0xffff);
2644 I915_WRITE(VLV_IIR, 0xffffffff);
2645 I915_WRITE(VLV_IMR, 0xffffffff);
2646 I915_WRITE(VLV_IER, 0x0);
2647 POSTING_READ(VLV_IER);
2648}
2649
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002650static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002651{
2652 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002653 struct drm_mode_config *mode_config = &dev->mode_config;
2654 struct intel_encoder *intel_encoder;
2655 u32 mask = ~I915_READ(SDEIMR);
2656 u32 hotplug;
Keith Packard7fe0b972011-09-19 13:31:02 -07002657
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002658 if (HAS_PCH_IBX(dev)) {
Egbert Eich995e6b32013-04-16 13:36:56 +02002659 mask &= ~SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002660 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002661 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2662 mask |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002663 } else {
Egbert Eich995e6b32013-04-16 13:36:56 +02002664 mask &= ~SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002665 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002666 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2667 mask |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002668 }
2669
2670 I915_WRITE(SDEIMR, ~mask);
2671
2672 /*
2673 * Enable digital hotplug on the PCH, and configure the DP short pulse
2674 * duration to 2ms (which is the minimum in the Display Port spec)
2675 *
2676 * This register is the same on all known PCH chips.
2677 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002678 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2679 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2680 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2681 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2682 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2683 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2684}
2685
Paulo Zanonid46da432013-02-08 17:35:15 -02002686static void ibx_irq_postinstall(struct drm_device *dev)
2687{
2688 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002689 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002690
Daniel Vetter692a04c2013-05-29 21:43:05 +02002691 if (HAS_PCH_NOP(dev))
2692 return;
2693
Paulo Zanoni86642812013-04-12 17:57:57 -03002694 if (HAS_PCH_IBX(dev)) {
2695 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002696 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002697 } else {
2698 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2699
2700 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2701 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002702
Paulo Zanonid46da432013-02-08 17:35:15 -02002703 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2704 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002705}
2706
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002707static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002708{
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002709 unsigned long irqflags;
2710
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002711 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2712 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002713 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002714 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002715 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002716 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Ben Widawskycc609d52013-05-28 19:22:29 -07002717 u32 gt_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002718
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002719 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002720
2721 /* should always can generate irq */
2722 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002723 I915_WRITE(DEIMR, dev_priv->irq_mask);
Daniel Vetter6005ce42013-06-27 13:44:59 +02002724 I915_WRITE(DEIER, display_mask |
2725 DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002726 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002727
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002728 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002729
2730 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002731 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002732
Ben Widawskycc609d52013-05-28 19:22:29 -07002733 gt_irqs = GT_RENDER_USER_INTERRUPT;
2734
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002735 if (IS_GEN6(dev))
Ben Widawskycc609d52013-05-28 19:22:29 -07002736 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002737 else
Ben Widawskycc609d52013-05-28 19:22:29 -07002738 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
2739 ILK_BSD_USER_INTERRUPT;
2740
2741 I915_WRITE(GTIER, gt_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002742 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002743
Paulo Zanonid46da432013-02-08 17:35:15 -02002744 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002745
Jesse Barnesf97108d2010-01-29 11:27:07 -08002746 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02002747 /* Enable PCU event interrupts
2748 *
2749 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002750 * setup is guaranteed to run in single-threaded context. But we
2751 * need it to make the assert_spin_locked happy. */
2752 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002753 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002754 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002755 }
2756
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002757 return 0;
2758}
2759
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002760static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002761{
2762 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2763 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002764 u32 display_mask =
2765 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2766 DE_PLANEC_FLIP_DONE_IVB |
2767 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002768 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002769 DE_AUX_CHANNEL_A_IVB |
2770 DE_ERR_INT_IVB;
Ben Widawsky12638c52013-05-28 19:22:31 -07002771 u32 pm_irqs = GEN6_PM_RPS_EVENTS;
Ben Widawskycc609d52013-05-28 19:22:29 -07002772 u32 gt_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002773
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002774 dev_priv->irq_mask = ~display_mask;
2775
2776 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002777 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002778 I915_WRITE(DEIIR, I915_READ(DEIIR));
2779 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002780 I915_WRITE(DEIER,
2781 display_mask |
2782 DE_PIPEC_VBLANK_IVB |
2783 DE_PIPEB_VBLANK_IVB |
2784 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002785 POSTING_READ(DEIER);
2786
Ben Widawskycc609d52013-05-28 19:22:29 -07002787 dev_priv->gt_irq_mask = ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002788
2789 I915_WRITE(GTIIR, I915_READ(GTIIR));
2790 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2791
Ben Widawskycc609d52013-05-28 19:22:29 -07002792 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2793 GT_BLT_USER_INTERRUPT | GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2794 I915_WRITE(GTIER, gt_irqs);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002795 POSTING_READ(GTIER);
2796
Ben Widawsky12638c52013-05-28 19:22:31 -07002797 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
2798 if (HAS_VEBOX(dev))
2799 pm_irqs |= PM_VEBOX_USER_INTERRUPT |
2800 PM_VEBOX_CS_ERROR_INTERRUPT;
2801
2802 /* Our enable/disable rps functions may touch these registers so
2803 * make sure to set a known state for only the non-RPS bits.
2804 * The RMW is extra paranoia since this should be called after being set
2805 * to a known state in preinstall.
2806 * */
2807 I915_WRITE(GEN6_PMIMR,
2808 (I915_READ(GEN6_PMIMR) | ~GEN6_PM_RPS_EVENTS) & ~pm_irqs);
2809 I915_WRITE(GEN6_PMIER,
2810 (I915_READ(GEN6_PMIER) & GEN6_PM_RPS_EVENTS) | pm_irqs);
2811 POSTING_READ(GEN6_PMIER);
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002812
Paulo Zanonid46da432013-02-08 17:35:15 -02002813 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002814
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002815 return 0;
2816}
2817
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002818static int valleyview_irq_postinstall(struct drm_device *dev)
2819{
2820 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskycc609d52013-05-28 19:22:29 -07002821 u32 gt_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002822 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002823 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Daniel Vetterb79480b2013-06-27 17:52:10 +02002824 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002825
2826 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002827 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2828 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2829 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002830 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2831
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002832 /*
2833 *Leave vblank interrupts masked initially. enable/disable will
2834 * toggle them based on usage.
2835 */
2836 dev_priv->irq_mask = (~enable_mask) |
2837 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2838 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002839
Daniel Vetter20afbda2012-12-11 14:05:07 +01002840 I915_WRITE(PORT_HOTPLUG_EN, 0);
2841 POSTING_READ(PORT_HOTPLUG_EN);
2842
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002843 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2844 I915_WRITE(VLV_IER, enable_mask);
2845 I915_WRITE(VLV_IIR, 0xffffffff);
2846 I915_WRITE(PIPESTAT(0), 0xffff);
2847 I915_WRITE(PIPESTAT(1), 0xffff);
2848 POSTING_READ(VLV_IER);
2849
Daniel Vetterb79480b2013-06-27 17:52:10 +02002850 /* Interrupt setup is already guaranteed to be single-threaded, this is
2851 * just to make the assert_spin_locked check happy. */
2852 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002853 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002854 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002855 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
Daniel Vetterb79480b2013-06-27 17:52:10 +02002856 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002857
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002858 I915_WRITE(VLV_IIR, 0xffffffff);
2859 I915_WRITE(VLV_IIR, 0xffffffff);
2860
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002861 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002862 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002863
Ben Widawskycc609d52013-05-28 19:22:29 -07002864 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2865 GT_BLT_USER_INTERRUPT;
2866 I915_WRITE(GTIER, gt_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002867 POSTING_READ(GTIER);
2868
2869 /* ack & enable invalid PTE error interrupts */
2870#if 0 /* FIXME: add support to irq handler for checking these bits */
2871 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2872 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2873#endif
2874
2875 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002876
2877 return 0;
2878}
2879
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002880static void valleyview_irq_uninstall(struct drm_device *dev)
2881{
2882 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2883 int pipe;
2884
2885 if (!dev_priv)
2886 return;
2887
Egbert Eichac4c16c2013-04-16 13:36:58 +02002888 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2889
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002890 for_each_pipe(pipe)
2891 I915_WRITE(PIPESTAT(pipe), 0xffff);
2892
2893 I915_WRITE(HWSTAM, 0xffffffff);
2894 I915_WRITE(PORT_HOTPLUG_EN, 0);
2895 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2896 for_each_pipe(pipe)
2897 I915_WRITE(PIPESTAT(pipe), 0xffff);
2898 I915_WRITE(VLV_IIR, 0xffffffff);
2899 I915_WRITE(VLV_IMR, 0xffffffff);
2900 I915_WRITE(VLV_IER, 0x0);
2901 POSTING_READ(VLV_IER);
2902}
2903
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002904static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002905{
2906 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002907
2908 if (!dev_priv)
2909 return;
2910
Egbert Eichac4c16c2013-04-16 13:36:58 +02002911 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2912
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002913 I915_WRITE(HWSTAM, 0xffffffff);
2914
2915 I915_WRITE(DEIMR, 0xffffffff);
2916 I915_WRITE(DEIER, 0x0);
2917 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002918 if (IS_GEN7(dev))
2919 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002920
2921 I915_WRITE(GTIMR, 0xffffffff);
2922 I915_WRITE(GTIER, 0x0);
2923 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002924
Ben Widawskyab5c6082013-04-05 13:12:41 -07002925 if (HAS_PCH_NOP(dev))
2926 return;
2927
Keith Packard192aac1f2011-09-20 10:12:44 -07002928 I915_WRITE(SDEIMR, 0xffffffff);
2929 I915_WRITE(SDEIER, 0x0);
2930 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002931 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2932 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002933}
2934
Chris Wilsonc2798b12012-04-22 21:13:57 +01002935static void i8xx_irq_preinstall(struct drm_device * dev)
2936{
2937 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2938 int pipe;
2939
2940 atomic_set(&dev_priv->irq_received, 0);
2941
2942 for_each_pipe(pipe)
2943 I915_WRITE(PIPESTAT(pipe), 0);
2944 I915_WRITE16(IMR, 0xffff);
2945 I915_WRITE16(IER, 0x0);
2946 POSTING_READ16(IER);
2947}
2948
2949static int i8xx_irq_postinstall(struct drm_device *dev)
2950{
2951 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2952
Chris Wilsonc2798b12012-04-22 21:13:57 +01002953 I915_WRITE16(EMR,
2954 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2955
2956 /* Unmask the interrupts that we always want on. */
2957 dev_priv->irq_mask =
2958 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2959 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2960 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2961 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2962 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2963 I915_WRITE16(IMR, dev_priv->irq_mask);
2964
2965 I915_WRITE16(IER,
2966 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2967 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2968 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2969 I915_USER_INTERRUPT);
2970 POSTING_READ16(IER);
2971
2972 return 0;
2973}
2974
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002975/*
2976 * Returns true when a page flip has completed.
2977 */
2978static bool i8xx_handle_vblank(struct drm_device *dev,
2979 int pipe, u16 iir)
2980{
2981 drm_i915_private_t *dev_priv = dev->dev_private;
2982 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2983
2984 if (!drm_handle_vblank(dev, pipe))
2985 return false;
2986
2987 if ((iir & flip_pending) == 0)
2988 return false;
2989
2990 intel_prepare_page_flip(dev, pipe);
2991
2992 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2993 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2994 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2995 * the flip is completed (no longer pending). Since this doesn't raise
2996 * an interrupt per se, we watch for the change at vblank.
2997 */
2998 if (I915_READ16(ISR) & flip_pending)
2999 return false;
3000
3001 intel_finish_page_flip(dev, pipe);
3002
3003 return true;
3004}
3005
Daniel Vetterff1f5252012-10-02 15:10:55 +02003006static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003007{
3008 struct drm_device *dev = (struct drm_device *) arg;
3009 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003010 u16 iir, new_iir;
3011 u32 pipe_stats[2];
3012 unsigned long irqflags;
3013 int irq_received;
3014 int pipe;
3015 u16 flip_mask =
3016 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3017 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3018
3019 atomic_inc(&dev_priv->irq_received);
3020
3021 iir = I915_READ16(IIR);
3022 if (iir == 0)
3023 return IRQ_NONE;
3024
3025 while (iir & ~flip_mask) {
3026 /* Can't rely on pipestat interrupt bit in iir as it might
3027 * have been cleared after the pipestat interrupt was received.
3028 * It doesn't set the bit in iir again, but it still produces
3029 * interrupts (for non-MSI).
3030 */
3031 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3032 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3033 i915_handle_error(dev, false);
3034
3035 for_each_pipe(pipe) {
3036 int reg = PIPESTAT(pipe);
3037 pipe_stats[pipe] = I915_READ(reg);
3038
3039 /*
3040 * Clear the PIPE*STAT regs before the IIR
3041 */
3042 if (pipe_stats[pipe] & 0x8000ffff) {
3043 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3044 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3045 pipe_name(pipe));
3046 I915_WRITE(reg, pipe_stats[pipe]);
3047 irq_received = 1;
3048 }
3049 }
3050 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3051
3052 I915_WRITE16(IIR, iir & ~flip_mask);
3053 new_iir = I915_READ16(IIR); /* Flush posted writes */
3054
Daniel Vetterd05c6172012-04-26 23:28:09 +02003055 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003056
3057 if (iir & I915_USER_INTERRUPT)
3058 notify_ring(dev, &dev_priv->ring[RCS]);
3059
3060 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003061 i8xx_handle_vblank(dev, 0, iir))
3062 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003063
3064 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003065 i8xx_handle_vblank(dev, 1, iir))
3066 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003067
3068 iir = new_iir;
3069 }
3070
3071 return IRQ_HANDLED;
3072}
3073
3074static void i8xx_irq_uninstall(struct drm_device * dev)
3075{
3076 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3077 int pipe;
3078
Chris Wilsonc2798b12012-04-22 21:13:57 +01003079 for_each_pipe(pipe) {
3080 /* Clear enable bits; then clear status bits */
3081 I915_WRITE(PIPESTAT(pipe), 0);
3082 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3083 }
3084 I915_WRITE16(IMR, 0xffff);
3085 I915_WRITE16(IER, 0x0);
3086 I915_WRITE16(IIR, I915_READ16(IIR));
3087}
3088
Chris Wilsona266c7d2012-04-24 22:59:44 +01003089static void i915_irq_preinstall(struct drm_device * dev)
3090{
3091 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3092 int pipe;
3093
3094 atomic_set(&dev_priv->irq_received, 0);
3095
3096 if (I915_HAS_HOTPLUG(dev)) {
3097 I915_WRITE(PORT_HOTPLUG_EN, 0);
3098 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3099 }
3100
Chris Wilson00d98eb2012-04-24 22:59:48 +01003101 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003102 for_each_pipe(pipe)
3103 I915_WRITE(PIPESTAT(pipe), 0);
3104 I915_WRITE(IMR, 0xffffffff);
3105 I915_WRITE(IER, 0x0);
3106 POSTING_READ(IER);
3107}
3108
3109static int i915_irq_postinstall(struct drm_device *dev)
3110{
3111 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003112 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003113
Chris Wilson38bde182012-04-24 22:59:50 +01003114 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3115
3116 /* Unmask the interrupts that we always want on. */
3117 dev_priv->irq_mask =
3118 ~(I915_ASLE_INTERRUPT |
3119 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3120 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3121 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3122 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3123 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3124
3125 enable_mask =
3126 I915_ASLE_INTERRUPT |
3127 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3128 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3129 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3130 I915_USER_INTERRUPT;
3131
Chris Wilsona266c7d2012-04-24 22:59:44 +01003132 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01003133 I915_WRITE(PORT_HOTPLUG_EN, 0);
3134 POSTING_READ(PORT_HOTPLUG_EN);
3135
Chris Wilsona266c7d2012-04-24 22:59:44 +01003136 /* Enable in IER... */
3137 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3138 /* and unmask in IMR */
3139 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3140 }
3141
Chris Wilsona266c7d2012-04-24 22:59:44 +01003142 I915_WRITE(IMR, dev_priv->irq_mask);
3143 I915_WRITE(IER, enable_mask);
3144 POSTING_READ(IER);
3145
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003146 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003147
3148 return 0;
3149}
3150
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003151/*
3152 * Returns true when a page flip has completed.
3153 */
3154static bool i915_handle_vblank(struct drm_device *dev,
3155 int plane, int pipe, u32 iir)
3156{
3157 drm_i915_private_t *dev_priv = dev->dev_private;
3158 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3159
3160 if (!drm_handle_vblank(dev, pipe))
3161 return false;
3162
3163 if ((iir & flip_pending) == 0)
3164 return false;
3165
3166 intel_prepare_page_flip(dev, plane);
3167
3168 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3169 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3170 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3171 * the flip is completed (no longer pending). Since this doesn't raise
3172 * an interrupt per se, we watch for the change at vblank.
3173 */
3174 if (I915_READ(ISR) & flip_pending)
3175 return false;
3176
3177 intel_finish_page_flip(dev, pipe);
3178
3179 return true;
3180}
3181
Daniel Vetterff1f5252012-10-02 15:10:55 +02003182static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003183{
3184 struct drm_device *dev = (struct drm_device *) arg;
3185 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003186 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003187 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003188 u32 flip_mask =
3189 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3190 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003191 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003192
3193 atomic_inc(&dev_priv->irq_received);
3194
3195 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003196 do {
3197 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003198 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003199
3200 /* Can't rely on pipestat interrupt bit in iir as it might
3201 * have been cleared after the pipestat interrupt was received.
3202 * It doesn't set the bit in iir again, but it still produces
3203 * interrupts (for non-MSI).
3204 */
3205 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3206 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3207 i915_handle_error(dev, false);
3208
3209 for_each_pipe(pipe) {
3210 int reg = PIPESTAT(pipe);
3211 pipe_stats[pipe] = I915_READ(reg);
3212
Chris Wilson38bde182012-04-24 22:59:50 +01003213 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003214 if (pipe_stats[pipe] & 0x8000ffff) {
3215 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3216 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3217 pipe_name(pipe));
3218 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003219 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003220 }
3221 }
3222 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3223
3224 if (!irq_received)
3225 break;
3226
Chris Wilsona266c7d2012-04-24 22:59:44 +01003227 /* Consume port. Then clear IIR or we'll miss events */
3228 if ((I915_HAS_HOTPLUG(dev)) &&
3229 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3230 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003231 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003232
3233 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3234 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02003235
3236 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
3237
Chris Wilsona266c7d2012-04-24 22:59:44 +01003238 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003239 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003240 }
3241
Chris Wilson38bde182012-04-24 22:59:50 +01003242 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003243 new_iir = I915_READ(IIR); /* Flush posted writes */
3244
Chris Wilsona266c7d2012-04-24 22:59:44 +01003245 if (iir & I915_USER_INTERRUPT)
3246 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003247
Chris Wilsona266c7d2012-04-24 22:59:44 +01003248 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003249 int plane = pipe;
3250 if (IS_MOBILE(dev))
3251 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003252
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003253 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3254 i915_handle_vblank(dev, plane, pipe, iir))
3255 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003256
3257 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3258 blc_event = true;
3259 }
3260
Chris Wilsona266c7d2012-04-24 22:59:44 +01003261 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3262 intel_opregion_asle_intr(dev);
3263
3264 /* With MSI, interrupts are only generated when iir
3265 * transitions from zero to nonzero. If another bit got
3266 * set while we were handling the existing iir bits, then
3267 * we would never get another interrupt.
3268 *
3269 * This is fine on non-MSI as well, as if we hit this path
3270 * we avoid exiting the interrupt handler only to generate
3271 * another one.
3272 *
3273 * Note that for MSI this could cause a stray interrupt report
3274 * if an interrupt landed in the time between writing IIR and
3275 * the posting read. This should be rare enough to never
3276 * trigger the 99% of 100,000 interrupts test for disabling
3277 * stray interrupts.
3278 */
Chris Wilson38bde182012-04-24 22:59:50 +01003279 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003280 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003281 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003282
Daniel Vetterd05c6172012-04-26 23:28:09 +02003283 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003284
Chris Wilsona266c7d2012-04-24 22:59:44 +01003285 return ret;
3286}
3287
3288static void i915_irq_uninstall(struct drm_device * dev)
3289{
3290 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3291 int pipe;
3292
Egbert Eichac4c16c2013-04-16 13:36:58 +02003293 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3294
Chris Wilsona266c7d2012-04-24 22:59:44 +01003295 if (I915_HAS_HOTPLUG(dev)) {
3296 I915_WRITE(PORT_HOTPLUG_EN, 0);
3297 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3298 }
3299
Chris Wilson00d98eb2012-04-24 22:59:48 +01003300 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003301 for_each_pipe(pipe) {
3302 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003303 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003304 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3305 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003306 I915_WRITE(IMR, 0xffffffff);
3307 I915_WRITE(IER, 0x0);
3308
Chris Wilsona266c7d2012-04-24 22:59:44 +01003309 I915_WRITE(IIR, I915_READ(IIR));
3310}
3311
3312static void i965_irq_preinstall(struct drm_device * dev)
3313{
3314 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3315 int pipe;
3316
3317 atomic_set(&dev_priv->irq_received, 0);
3318
Chris Wilsonadca4732012-05-11 18:01:31 +01003319 I915_WRITE(PORT_HOTPLUG_EN, 0);
3320 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003321
3322 I915_WRITE(HWSTAM, 0xeffe);
3323 for_each_pipe(pipe)
3324 I915_WRITE(PIPESTAT(pipe), 0);
3325 I915_WRITE(IMR, 0xffffffff);
3326 I915_WRITE(IER, 0x0);
3327 POSTING_READ(IER);
3328}
3329
3330static int i965_irq_postinstall(struct drm_device *dev)
3331{
3332 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003333 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003334 u32 error_mask;
Daniel Vetterb79480b2013-06-27 17:52:10 +02003335 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003336
Chris Wilsona266c7d2012-04-24 22:59:44 +01003337 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003338 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003339 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003340 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3341 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3342 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3343 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3344 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3345
3346 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003347 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3348 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003349 enable_mask |= I915_USER_INTERRUPT;
3350
3351 if (IS_G4X(dev))
3352 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003353
Daniel Vetterb79480b2013-06-27 17:52:10 +02003354 /* Interrupt setup is already guaranteed to be single-threaded, this is
3355 * just to make the assert_spin_locked check happy. */
3356 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003357 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Daniel Vetterb79480b2013-06-27 17:52:10 +02003358 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003359
Chris Wilsona266c7d2012-04-24 22:59:44 +01003360 /*
3361 * Enable some error detection, note the instruction error mask
3362 * bit is reserved, so we leave it masked.
3363 */
3364 if (IS_G4X(dev)) {
3365 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3366 GM45_ERROR_MEM_PRIV |
3367 GM45_ERROR_CP_PRIV |
3368 I915_ERROR_MEMORY_REFRESH);
3369 } else {
3370 error_mask = ~(I915_ERROR_PAGE_TABLE |
3371 I915_ERROR_MEMORY_REFRESH);
3372 }
3373 I915_WRITE(EMR, error_mask);
3374
3375 I915_WRITE(IMR, dev_priv->irq_mask);
3376 I915_WRITE(IER, enable_mask);
3377 POSTING_READ(IER);
3378
Daniel Vetter20afbda2012-12-11 14:05:07 +01003379 I915_WRITE(PORT_HOTPLUG_EN, 0);
3380 POSTING_READ(PORT_HOTPLUG_EN);
3381
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003382 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003383
3384 return 0;
3385}
3386
Egbert Eichbac56d52013-02-25 12:06:51 -05003387static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003388{
3389 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003390 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003391 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003392 u32 hotplug_en;
3393
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003394 assert_spin_locked(&dev_priv->irq_lock);
3395
Egbert Eichbac56d52013-02-25 12:06:51 -05003396 if (I915_HAS_HOTPLUG(dev)) {
3397 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3398 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3399 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003400 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003401 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3402 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3403 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003404 /* Programming the CRT detection parameters tends
3405 to generate a spurious hotplug event about three
3406 seconds later. So just do it once.
3407 */
3408 if (IS_G4X(dev))
3409 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003410 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003411 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003412
Egbert Eichbac56d52013-02-25 12:06:51 -05003413 /* Ignore TV since it's buggy */
3414 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3415 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003416}
3417
Daniel Vetterff1f5252012-10-02 15:10:55 +02003418static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003419{
3420 struct drm_device *dev = (struct drm_device *) arg;
3421 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003422 u32 iir, new_iir;
3423 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003424 unsigned long irqflags;
3425 int irq_received;
3426 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003427 u32 flip_mask =
3428 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3429 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003430
3431 atomic_inc(&dev_priv->irq_received);
3432
3433 iir = I915_READ(IIR);
3434
Chris Wilsona266c7d2012-04-24 22:59:44 +01003435 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003436 bool blc_event = false;
3437
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003438 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003439
3440 /* Can't rely on pipestat interrupt bit in iir as it might
3441 * have been cleared after the pipestat interrupt was received.
3442 * It doesn't set the bit in iir again, but it still produces
3443 * interrupts (for non-MSI).
3444 */
3445 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3446 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3447 i915_handle_error(dev, false);
3448
3449 for_each_pipe(pipe) {
3450 int reg = PIPESTAT(pipe);
3451 pipe_stats[pipe] = I915_READ(reg);
3452
3453 /*
3454 * Clear the PIPE*STAT regs before the IIR
3455 */
3456 if (pipe_stats[pipe] & 0x8000ffff) {
3457 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3458 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3459 pipe_name(pipe));
3460 I915_WRITE(reg, pipe_stats[pipe]);
3461 irq_received = 1;
3462 }
3463 }
3464 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3465
3466 if (!irq_received)
3467 break;
3468
3469 ret = IRQ_HANDLED;
3470
3471 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003472 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003473 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003474 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3475 HOTPLUG_INT_STATUS_G4X :
Daniel Vetter4f7fd702013-06-24 21:33:28 +02003476 HOTPLUG_INT_STATUS_I915);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003477
3478 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3479 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02003480
3481 intel_hpd_irq_handler(dev, hotplug_trigger,
3482 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i915);
3483
Chris Wilsona266c7d2012-04-24 22:59:44 +01003484 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3485 I915_READ(PORT_HOTPLUG_STAT);
3486 }
3487
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003488 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003489 new_iir = I915_READ(IIR); /* Flush posted writes */
3490
Chris Wilsona266c7d2012-04-24 22:59:44 +01003491 if (iir & I915_USER_INTERRUPT)
3492 notify_ring(dev, &dev_priv->ring[RCS]);
3493 if (iir & I915_BSD_USER_INTERRUPT)
3494 notify_ring(dev, &dev_priv->ring[VCS]);
3495
Chris Wilsona266c7d2012-04-24 22:59:44 +01003496 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003497 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003498 i915_handle_vblank(dev, pipe, pipe, iir))
3499 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003500
3501 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3502 blc_event = true;
3503 }
3504
3505
3506 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3507 intel_opregion_asle_intr(dev);
3508
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003509 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3510 gmbus_irq_handler(dev);
3511
Chris Wilsona266c7d2012-04-24 22:59:44 +01003512 /* With MSI, interrupts are only generated when iir
3513 * transitions from zero to nonzero. If another bit got
3514 * set while we were handling the existing iir bits, then
3515 * we would never get another interrupt.
3516 *
3517 * This is fine on non-MSI as well, as if we hit this path
3518 * we avoid exiting the interrupt handler only to generate
3519 * another one.
3520 *
3521 * Note that for MSI this could cause a stray interrupt report
3522 * if an interrupt landed in the time between writing IIR and
3523 * the posting read. This should be rare enough to never
3524 * trigger the 99% of 100,000 interrupts test for disabling
3525 * stray interrupts.
3526 */
3527 iir = new_iir;
3528 }
3529
Daniel Vetterd05c6172012-04-26 23:28:09 +02003530 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003531
Chris Wilsona266c7d2012-04-24 22:59:44 +01003532 return ret;
3533}
3534
3535static void i965_irq_uninstall(struct drm_device * dev)
3536{
3537 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3538 int pipe;
3539
3540 if (!dev_priv)
3541 return;
3542
Egbert Eichac4c16c2013-04-16 13:36:58 +02003543 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3544
Chris Wilsonadca4732012-05-11 18:01:31 +01003545 I915_WRITE(PORT_HOTPLUG_EN, 0);
3546 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003547
3548 I915_WRITE(HWSTAM, 0xffffffff);
3549 for_each_pipe(pipe)
3550 I915_WRITE(PIPESTAT(pipe), 0);
3551 I915_WRITE(IMR, 0xffffffff);
3552 I915_WRITE(IER, 0x0);
3553
3554 for_each_pipe(pipe)
3555 I915_WRITE(PIPESTAT(pipe),
3556 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3557 I915_WRITE(IIR, I915_READ(IIR));
3558}
3559
Egbert Eichac4c16c2013-04-16 13:36:58 +02003560static void i915_reenable_hotplug_timer_func(unsigned long data)
3561{
3562 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3563 struct drm_device *dev = dev_priv->dev;
3564 struct drm_mode_config *mode_config = &dev->mode_config;
3565 unsigned long irqflags;
3566 int i;
3567
3568 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3569 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3570 struct drm_connector *connector;
3571
3572 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3573 continue;
3574
3575 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3576
3577 list_for_each_entry(connector, &mode_config->connector_list, head) {
3578 struct intel_connector *intel_connector = to_intel_connector(connector);
3579
3580 if (intel_connector->encoder->hpd_pin == i) {
3581 if (connector->polled != intel_connector->polled)
3582 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3583 drm_get_connector_name(connector));
3584 connector->polled = intel_connector->polled;
3585 if (!connector->polled)
3586 connector->polled = DRM_CONNECTOR_POLL_HPD;
3587 }
3588 }
3589 }
3590 if (dev_priv->display.hpd_irq_setup)
3591 dev_priv->display.hpd_irq_setup(dev);
3592 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3593}
3594
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003595void intel_irq_init(struct drm_device *dev)
3596{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003597 struct drm_i915_private *dev_priv = dev->dev_private;
3598
3599 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003600 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003601 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003602 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003603
Daniel Vetter99584db2012-11-14 17:14:04 +01003604 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3605 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003606 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003607 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3608 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003609
Tomas Janousek97a19a22012-12-08 13:48:13 +01003610 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003611
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003612 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3613 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003614 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003615 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3616 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3617 }
3618
Keith Packardc3613de2011-08-12 17:05:54 -07003619 if (drm_core_check_feature(dev, DRIVER_MODESET))
3620 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3621 else
3622 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003623 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3624
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003625 if (IS_VALLEYVIEW(dev)) {
3626 dev->driver->irq_handler = valleyview_irq_handler;
3627 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3628 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3629 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3630 dev->driver->enable_vblank = valleyview_enable_vblank;
3631 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003632 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003633 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Ben Widawsky7d991632013-05-28 19:22:25 -07003634 /* Share uninstall handlers with ILK/SNB */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003635 dev->driver->irq_handler = ivybridge_irq_handler;
Ben Widawsky7d991632013-05-28 19:22:25 -07003636 dev->driver->irq_preinstall = ivybridge_irq_preinstall;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003637 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3638 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3639 dev->driver->enable_vblank = ivybridge_enable_vblank;
3640 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003641 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003642 } else if (HAS_PCH_SPLIT(dev)) {
3643 dev->driver->irq_handler = ironlake_irq_handler;
3644 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3645 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3646 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3647 dev->driver->enable_vblank = ironlake_enable_vblank;
3648 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003649 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003650 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003651 if (INTEL_INFO(dev)->gen == 2) {
3652 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3653 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3654 dev->driver->irq_handler = i8xx_irq_handler;
3655 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003656 } else if (INTEL_INFO(dev)->gen == 3) {
3657 dev->driver->irq_preinstall = i915_irq_preinstall;
3658 dev->driver->irq_postinstall = i915_irq_postinstall;
3659 dev->driver->irq_uninstall = i915_irq_uninstall;
3660 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003661 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003662 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003663 dev->driver->irq_preinstall = i965_irq_preinstall;
3664 dev->driver->irq_postinstall = i965_irq_postinstall;
3665 dev->driver->irq_uninstall = i965_irq_uninstall;
3666 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003667 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003668 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003669 dev->driver->enable_vblank = i915_enable_vblank;
3670 dev->driver->disable_vblank = i915_disable_vblank;
3671 }
3672}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003673
3674void intel_hpd_init(struct drm_device *dev)
3675{
3676 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003677 struct drm_mode_config *mode_config = &dev->mode_config;
3678 struct drm_connector *connector;
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003679 unsigned long irqflags;
Egbert Eich821450c2013-04-16 13:36:55 +02003680 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003681
Egbert Eich821450c2013-04-16 13:36:55 +02003682 for (i = 1; i < HPD_NUM_PINS; i++) {
3683 dev_priv->hpd_stats[i].hpd_cnt = 0;
3684 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3685 }
3686 list_for_each_entry(connector, &mode_config->connector_list, head) {
3687 struct intel_connector *intel_connector = to_intel_connector(connector);
3688 connector->polled = intel_connector->polled;
3689 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3690 connector->polled = DRM_CONNECTOR_POLL_HPD;
3691 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003692
3693 /* Interrupt setup is already guaranteed to be single-threaded, this is
3694 * just to make the assert_spin_locked checks happy. */
3695 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003696 if (dev_priv->display.hpd_irq_setup)
3697 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003698 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003699}