blob: 531df31075d24abe9166d554368776082f335789 [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
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200322 if ((pipestat & mask) == mask)
323 return;
324
325 /* Enable the interrupt, clear any pending status */
326 pipestat |= mask | (mask >> 16);
327 I915_WRITE(reg, pipestat);
328 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800329}
330
331void
332i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
333{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200334 u32 reg = PIPESTAT(pipe);
335 u32 pipestat = I915_READ(reg) & 0x7fff0000;
Keith Packard7c463582008-11-04 02:03:27 -0800336
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200337 if ((pipestat & mask) == 0)
338 return;
339
340 pipestat &= ~mask;
341 I915_WRITE(reg, pipestat);
342 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800343}
344
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000345/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300346 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000347 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300348static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000349{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000350 drm_i915_private_t *dev_priv = dev->dev_private;
351 unsigned long irqflags;
352
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300353 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
354 return;
355
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000356 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000357
Jani Nikulaf8987802013-04-29 13:02:53 +0300358 i915_enable_pipestat(dev_priv, 1, PIPE_LEGACY_BLC_EVENT_ENABLE);
359 if (INTEL_INFO(dev)->gen >= 4)
360 i915_enable_pipestat(dev_priv, 0, PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000361
362 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000363}
364
365/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700366 * i915_pipe_enabled - check if a pipe is enabled
367 * @dev: DRM device
368 * @pipe: pipe to check
369 *
370 * Reading certain registers when the pipe is disabled can hang the chip.
371 * Use this routine to make sure the PLL is running and the pipe is active
372 * before reading such registers if unsure.
373 */
374static int
375i915_pipe_enabled(struct drm_device *dev, int pipe)
376{
377 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200378
Daniel Vettera01025a2013-05-22 00:50:23 +0200379 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
380 /* Locking is horribly broken here, but whatever. */
381 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
382 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300383
Daniel Vettera01025a2013-05-22 00:50:23 +0200384 return intel_crtc->active;
385 } else {
386 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
387 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700388}
389
Keith Packard42f52ef2008-10-18 19:39:29 -0700390/* Called from drm generic code, passed a 'crtc', which
391 * we use as a pipe index
392 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700393static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700394{
395 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
396 unsigned long high_frame;
397 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100398 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700399
400 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800401 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800402 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700403 return 0;
404 }
405
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800406 high_frame = PIPEFRAME(pipe);
407 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100408
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700409 /*
410 * High & low register fields aren't synchronized, so make sure
411 * we get a low value that's stable across two reads of the high
412 * register.
413 */
414 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100415 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
416 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
417 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700418 } while (high1 != high2);
419
Chris Wilson5eddb702010-09-11 13:48:45 +0100420 high1 >>= PIPE_FRAME_HIGH_SHIFT;
421 low >>= PIPE_FRAME_LOW_SHIFT;
422 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700423}
424
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700425static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800426{
427 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800428 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800429
430 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800431 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800432 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800433 return 0;
434 }
435
436 return I915_READ(reg);
437}
438
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700439static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100440 int *vpos, int *hpos)
441{
442 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
443 u32 vbl = 0, position = 0;
444 int vbl_start, vbl_end, htotal, vtotal;
445 bool in_vbl = true;
446 int ret = 0;
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200447 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
448 pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100449
450 if (!i915_pipe_enabled(dev, pipe)) {
451 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800452 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100453 return 0;
454 }
455
456 /* Get vtotal. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200457 vtotal = 1 + ((I915_READ(VTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100458
459 if (INTEL_INFO(dev)->gen >= 4) {
460 /* No obvious pixelcount register. Only query vertical
461 * scanout position from Display scan line register.
462 */
463 position = I915_READ(PIPEDSL(pipe));
464
465 /* Decode into vertical scanout position. Don't have
466 * horizontal scanout position.
467 */
468 *vpos = position & 0x1fff;
469 *hpos = 0;
470 } else {
471 /* Have access to pixelcount since start of frame.
472 * We can split this into vertical and horizontal
473 * scanout position.
474 */
475 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
476
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200477 htotal = 1 + ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100478 *vpos = position / htotal;
479 *hpos = position - (*vpos * htotal);
480 }
481
482 /* Query vblank area. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200483 vbl = I915_READ(VBLANK(cpu_transcoder));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100484
485 /* Test position against vblank region. */
486 vbl_start = vbl & 0x1fff;
487 vbl_end = (vbl >> 16) & 0x1fff;
488
489 if ((*vpos < vbl_start) || (*vpos > vbl_end))
490 in_vbl = false;
491
492 /* Inside "upper part" of vblank area? Apply corrective offset: */
493 if (in_vbl && (*vpos >= vbl_start))
494 *vpos = *vpos - vtotal;
495
496 /* Readouts valid? */
497 if (vbl > 0)
498 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
499
500 /* In vblank? */
501 if (in_vbl)
502 ret |= DRM_SCANOUTPOS_INVBL;
503
504 return ret;
505}
506
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700507static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100508 int *max_error,
509 struct timeval *vblank_time,
510 unsigned flags)
511{
Chris Wilson4041b852011-01-22 10:07:56 +0000512 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100513
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700514 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000515 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100516 return -EINVAL;
517 }
518
519 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000520 crtc = intel_get_crtc_for_pipe(dev, pipe);
521 if (crtc == NULL) {
522 DRM_ERROR("Invalid crtc %d\n", pipe);
523 return -EINVAL;
524 }
525
526 if (!crtc->enabled) {
527 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
528 return -EBUSY;
529 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100530
531 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000532 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
533 vblank_time, flags,
534 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100535}
536
Egbert Eich321a1b32013-04-11 16:00:26 +0200537static int intel_hpd_irq_event(struct drm_device *dev, struct drm_connector *connector)
538{
539 enum drm_connector_status old_status;
540
541 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
542 old_status = connector->status;
543
544 connector->status = connector->funcs->detect(connector, false);
545 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
546 connector->base.id,
547 drm_get_connector_name(connector),
548 old_status, connector->status);
549 return (old_status != connector->status);
550}
551
Jesse Barnes5ca58282009-03-31 14:11:15 -0700552/*
553 * Handle hotplug events outside the interrupt handler proper.
554 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200555#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
556
Jesse Barnes5ca58282009-03-31 14:11:15 -0700557static void i915_hotplug_work_func(struct work_struct *work)
558{
559 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
560 hotplug_work);
561 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700562 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200563 struct intel_connector *intel_connector;
564 struct intel_encoder *intel_encoder;
565 struct drm_connector *connector;
566 unsigned long irqflags;
567 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200568 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200569 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700570
Daniel Vetter52d7ece2012-12-01 21:03:22 +0100571 /* HPD irq before everything is fully set up. */
572 if (!dev_priv->enable_hotplug_processing)
573 return;
574
Keith Packarda65e34c2011-07-25 10:04:56 -0700575 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800576 DRM_DEBUG_KMS("running encoder hotplug functions\n");
577
Egbert Eichcd569ae2013-04-16 13:36:57 +0200578 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +0200579
580 hpd_event_bits = dev_priv->hpd_event_bits;
581 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200582 list_for_each_entry(connector, &mode_config->connector_list, head) {
583 intel_connector = to_intel_connector(connector);
584 intel_encoder = intel_connector->encoder;
585 if (intel_encoder->hpd_pin > HPD_NONE &&
586 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
587 connector->polled == DRM_CONNECTOR_POLL_HPD) {
588 DRM_INFO("HPD interrupt storm detected on connector %s: "
589 "switching from hotplug detection to polling\n",
590 drm_get_connector_name(connector));
591 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
592 connector->polled = DRM_CONNECTOR_POLL_CONNECT
593 | DRM_CONNECTOR_POLL_DISCONNECT;
594 hpd_disabled = true;
595 }
Egbert Eich142e2392013-04-11 15:57:57 +0200596 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
597 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
598 drm_get_connector_name(connector), intel_encoder->hpd_pin);
599 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200600 }
601 /* if there were no outputs to poll, poll was disabled,
602 * therefore make sure it's enabled when disabling HPD on
603 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200604 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200605 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +0200606 mod_timer(&dev_priv->hotplug_reenable_timer,
607 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
608 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200609
610 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
611
Egbert Eich321a1b32013-04-11 16:00:26 +0200612 list_for_each_entry(connector, &mode_config->connector_list, head) {
613 intel_connector = to_intel_connector(connector);
614 intel_encoder = intel_connector->encoder;
615 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
616 if (intel_encoder->hot_plug)
617 intel_encoder->hot_plug(intel_encoder);
618 if (intel_hpd_irq_event(dev, connector))
619 changed = true;
620 }
621 }
Keith Packard40ee3382011-07-28 15:31:19 -0700622 mutex_unlock(&mode_config->mutex);
623
Egbert Eich321a1b32013-04-11 16:00:26 +0200624 if (changed)
625 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700626}
627
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200628static void ironlake_handle_rps_change(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800629{
630 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000631 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200632 u8 new_delay;
633 unsigned long flags;
634
635 spin_lock_irqsave(&mchdev_lock, flags);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800636
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200637 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
638
Daniel Vetter20e4d402012-08-08 23:35:39 +0200639 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200640
Jesse Barnes7648fa92010-05-20 14:28:11 -0700641 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000642 busy_up = I915_READ(RCPREVBSYTUPAVG);
643 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800644 max_avg = I915_READ(RCBMAXAVG);
645 min_avg = I915_READ(RCBMINAVG);
646
647 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000648 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200649 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
650 new_delay = dev_priv->ips.cur_delay - 1;
651 if (new_delay < dev_priv->ips.max_delay)
652 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000653 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200654 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
655 new_delay = dev_priv->ips.cur_delay + 1;
656 if (new_delay > dev_priv->ips.min_delay)
657 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800658 }
659
Jesse Barnes7648fa92010-05-20 14:28:11 -0700660 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200661 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800662
Daniel Vetter92703882012-08-09 16:46:01 +0200663 spin_unlock_irqrestore(&mchdev_lock, flags);
664
Jesse Barnesf97108d2010-01-29 11:27:07 -0800665 return;
666}
667
Chris Wilson549f7362010-10-19 11:19:32 +0100668static void notify_ring(struct drm_device *dev,
669 struct intel_ring_buffer *ring)
670{
671 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9862e602011-01-04 22:22:17 +0000672
Chris Wilson475553d2011-01-20 09:52:56 +0000673 if (ring->obj == NULL)
674 return;
675
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100676 trace_i915_gem_request_complete(ring, ring->get_seqno(ring, false));
Chris Wilson9862e602011-01-04 22:22:17 +0000677
Chris Wilson549f7362010-10-19 11:19:32 +0100678 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700679 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +0100680 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +0100681 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700682 }
Chris Wilson549f7362010-10-19 11:19:32 +0100683}
684
Ben Widawsky4912d042011-04-25 11:25:20 -0700685static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800686{
Ben Widawsky4912d042011-04-25 11:25:20 -0700687 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200688 rps.work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700689 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100690 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800691
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200692 spin_lock_irq(&dev_priv->rps.lock);
693 pm_iir = dev_priv->rps.pm_iir;
694 dev_priv->rps.pm_iir = 0;
Ben Widawsky4912d042011-04-25 11:25:20 -0700695 pm_imr = I915_READ(GEN6_PMIMR);
Ben Widawsky48484052013-05-28 19:22:27 -0700696 /* Make sure not to corrupt PMIMR state used by ringbuffer code */
697 I915_WRITE(GEN6_PMIMR, pm_imr & ~GEN6_PM_RPS_EVENTS);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200698 spin_unlock_irq(&dev_priv->rps.lock);
Ben Widawsky4912d042011-04-25 11:25:20 -0700699
Ben Widawsky48484052013-05-28 19:22:27 -0700700 if ((pm_iir & GEN6_PM_RPS_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800701 return;
702
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700703 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100704
Ville Syrjälä74250342013-06-25 21:38:11 +0300705 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200706 new_delay = dev_priv->rps.cur_delay + 1;
Ville Syrjälä74250342013-06-25 21:38:11 +0300707
708 /*
709 * For better performance, jump directly
710 * to RPe if we're below it.
711 */
712 if (IS_VALLEYVIEW(dev_priv->dev) &&
713 dev_priv->rps.cur_delay < dev_priv->rps.rpe_delay)
714 new_delay = dev_priv->rps.rpe_delay;
715 } else
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200716 new_delay = dev_priv->rps.cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800717
Ben Widawsky79249632012-09-07 19:43:42 -0700718 /* sysfs frequency interfaces may have snuck in while servicing the
719 * interrupt
720 */
Ville Syrjäläd8289c92013-06-25 19:21:05 +0300721 if (new_delay >= dev_priv->rps.min_delay &&
722 new_delay <= dev_priv->rps.max_delay) {
Jesse Barnes0a073b82013-04-17 15:54:58 -0700723 if (IS_VALLEYVIEW(dev_priv->dev))
724 valleyview_set_rps(dev_priv->dev, new_delay);
725 else
726 gen6_set_rps(dev_priv->dev, new_delay);
Ben Widawsky79249632012-09-07 19:43:42 -0700727 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800728
Jesse Barnes52ceb902013-04-23 10:09:26 -0700729 if (IS_VALLEYVIEW(dev_priv->dev)) {
730 /*
731 * On VLV, when we enter RC6 we may not be at the minimum
732 * voltage level, so arm a timer to check. It should only
733 * fire when there's activity or once after we've entered
734 * RC6, and then won't be re-armed until the next RPS interrupt.
735 */
736 mod_delayed_work(dev_priv->wq, &dev_priv->rps.vlv_work,
737 msecs_to_jiffies(100));
738 }
739
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700740 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800741}
742
Ben Widawskye3689192012-05-25 16:56:22 -0700743
744/**
745 * ivybridge_parity_work - Workqueue called when a parity error interrupt
746 * occurred.
747 * @work: workqueue struct
748 *
749 * Doesn't actually do anything except notify userspace. As a consequence of
750 * this event, userspace should try to remap the bad rows since statistically
751 * it is likely the same row is more likely to go bad again.
752 */
753static void ivybridge_parity_work(struct work_struct *work)
754{
755 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100756 l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700757 u32 error_status, row, bank, subbank;
758 char *parity_event[5];
759 uint32_t misccpctl;
760 unsigned long flags;
761
762 /* We must turn off DOP level clock gating to access the L3 registers.
763 * In order to prevent a get/put style interface, acquire struct mutex
764 * any time we access those registers.
765 */
766 mutex_lock(&dev_priv->dev->struct_mutex);
767
768 misccpctl = I915_READ(GEN7_MISCCPCTL);
769 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
770 POSTING_READ(GEN7_MISCCPCTL);
771
772 error_status = I915_READ(GEN7_L3CDERRST1);
773 row = GEN7_PARITY_ERROR_ROW(error_status);
774 bank = GEN7_PARITY_ERROR_BANK(error_status);
775 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
776
777 I915_WRITE(GEN7_L3CDERRST1, GEN7_PARITY_ERROR_VALID |
778 GEN7_L3CDERRST1_ENABLE);
779 POSTING_READ(GEN7_L3CDERRST1);
780
781 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
782
783 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Ben Widawskycc609d52013-05-28 19:22:29 -0700784 dev_priv->gt_irq_mask &= ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Ben Widawskye3689192012-05-25 16:56:22 -0700785 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
786 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
787
788 mutex_unlock(&dev_priv->dev->struct_mutex);
789
790 parity_event[0] = "L3_PARITY_ERROR=1";
791 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
792 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
793 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
794 parity_event[4] = NULL;
795
796 kobject_uevent_env(&dev_priv->dev->primary->kdev.kobj,
797 KOBJ_CHANGE, parity_event);
798
799 DRM_DEBUG("Parity error: Row = %d, Bank = %d, Sub bank = %d.\n",
800 row, bank, subbank);
801
802 kfree(parity_event[3]);
803 kfree(parity_event[2]);
804 kfree(parity_event[1]);
805}
806
Daniel Vetterd2ba8472012-05-31 14:57:41 +0200807static void ivybridge_handle_parity_error(struct drm_device *dev)
Ben Widawskye3689192012-05-25 16:56:22 -0700808{
809 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
810 unsigned long flags;
811
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700812 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskye3689192012-05-25 16:56:22 -0700813 return;
814
815 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Ben Widawskycc609d52013-05-28 19:22:29 -0700816 dev_priv->gt_irq_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Ben Widawskye3689192012-05-25 16:56:22 -0700817 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
818 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
819
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100820 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700821}
822
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200823static void snb_gt_irq_handler(struct drm_device *dev,
824 struct drm_i915_private *dev_priv,
825 u32 gt_iir)
826{
827
Ben Widawskycc609d52013-05-28 19:22:29 -0700828 if (gt_iir &
829 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200830 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -0700831 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200832 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -0700833 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200834 notify_ring(dev, &dev_priv->ring[BCS]);
835
Ben Widawskycc609d52013-05-28 19:22:29 -0700836 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
837 GT_BSD_CS_ERROR_INTERRUPT |
838 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200839 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
840 i915_handle_error(dev, false);
841 }
Ben Widawskye3689192012-05-25 16:56:22 -0700842
Ben Widawskycc609d52013-05-28 19:22:29 -0700843 if (gt_iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
Ben Widawskye3689192012-05-25 16:56:22 -0700844 ivybridge_handle_parity_error(dev);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200845}
846
Ben Widawskybaf02a12013-05-28 19:22:24 -0700847/* Legacy way of handling PM interrupts */
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100848static void gen6_queue_rps_work(struct drm_i915_private *dev_priv,
849 u32 pm_iir)
850{
851 unsigned long flags;
852
853 /*
854 * IIR bits should never already be set because IMR should
855 * prevent an interrupt from being shown in IIR. The warning
856 * displays a case where we've unsafely cleared
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200857 * dev_priv->rps.pm_iir. Although missing an interrupt of the same
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100858 * type is not a problem, it displays a problem in the logic.
859 *
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200860 * The mask bit in IMR is cleared by dev_priv->rps.work.
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100861 */
862
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200863 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200864 dev_priv->rps.pm_iir |= pm_iir;
865 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100866 POSTING_READ(GEN6_PMIMR);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200867 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100868
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200869 queue_work(dev_priv->wq, &dev_priv->rps.work);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100870}
871
Egbert Eichb543fb02013-04-16 13:36:54 +0200872#define HPD_STORM_DETECT_PERIOD 1000
873#define HPD_STORM_THRESHOLD 5
874
Daniel Vetter10a504d2013-06-27 17:52:12 +0200875static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +0200876 u32 hotplug_trigger,
877 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +0200878{
879 drm_i915_private_t *dev_priv = dev->dev_private;
880 unsigned long irqflags;
881 int i;
Daniel Vetter10a504d2013-06-27 17:52:12 +0200882 bool storm_detected = false;
Egbert Eichb543fb02013-04-16 13:36:54 +0200883
884 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
885
886 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +0200887
Egbert Eichb543fb02013-04-16 13:36:54 +0200888 if (!(hpd[i] & hotplug_trigger) ||
889 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
890 continue;
891
Jani Nikulabc5ead8c2013-05-07 15:10:29 +0300892 dev_priv->hpd_event_bits |= (1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200893 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
894 dev_priv->hpd_stats[i].hpd_last_jiffies
895 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
896 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
897 dev_priv->hpd_stats[i].hpd_cnt = 0;
898 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
899 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +0200900 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200901 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +0200902 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +0200903 } else {
904 dev_priv->hpd_stats[i].hpd_cnt++;
905 }
906 }
907
908 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Egbert Eichcd569ae2013-04-16 13:36:57 +0200909
Daniel Vetter10a504d2013-06-27 17:52:12 +0200910 if (storm_detected)
911 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetter5876fa02013-06-27 17:52:13 +0200912
913 queue_work(dev_priv->wq,
914 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200915}
916
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100917static void gmbus_irq_handler(struct drm_device *dev)
918{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100919 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
920
Daniel Vetter28c70f12012-12-01 13:53:45 +0100921 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100922}
923
Daniel Vetterce99c252012-12-01 13:53:47 +0100924static void dp_aux_irq_handler(struct drm_device *dev)
925{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100926 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
927
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100928 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +0100929}
930
Ben Widawskybaf02a12013-05-28 19:22:24 -0700931/* Unlike gen6_queue_rps_work() from which this function is originally derived,
932 * we must be able to deal with other PM interrupts. This is complicated because
933 * of the way in which we use the masks to defer the RPS work (which for
934 * posterity is necessary because of forcewake).
935 */
936static void hsw_pm_irq_handler(struct drm_i915_private *dev_priv,
937 u32 pm_iir)
938{
939 unsigned long flags;
940
941 spin_lock_irqsave(&dev_priv->rps.lock, flags);
Ben Widawsky48484052013-05-28 19:22:27 -0700942 dev_priv->rps.pm_iir |= pm_iir & GEN6_PM_RPS_EVENTS;
Ben Widawskybaf02a12013-05-28 19:22:24 -0700943 if (dev_priv->rps.pm_iir) {
944 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
945 /* never want to mask useful interrupts. (also posting read) */
Ben Widawsky48484052013-05-28 19:22:27 -0700946 WARN_ON(I915_READ_NOTRACE(GEN6_PMIMR) & ~GEN6_PM_RPS_EVENTS);
Ben Widawskybaf02a12013-05-28 19:22:24 -0700947 /* TODO: if queue_work is slow, move it out of the spinlock */
948 queue_work(dev_priv->wq, &dev_priv->rps.work);
949 }
950 spin_unlock_irqrestore(&dev_priv->rps.lock, flags);
951
Ben Widawsky12638c52013-05-28 19:22:31 -0700952 if (pm_iir & ~GEN6_PM_RPS_EVENTS) {
953 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
954 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
955
956 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
957 DRM_ERROR("VEBOX CS error interrupt 0x%08x\n", pm_iir);
958 i915_handle_error(dev_priv->dev, false);
959 }
960 }
Ben Widawskybaf02a12013-05-28 19:22:24 -0700961}
962
Daniel Vetterff1f5252012-10-02 15:10:55 +0200963static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700964{
965 struct drm_device *dev = (struct drm_device *) arg;
966 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
967 u32 iir, gt_iir, pm_iir;
968 irqreturn_t ret = IRQ_NONE;
969 unsigned long irqflags;
970 int pipe;
971 u32 pipe_stats[I915_MAX_PIPES];
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700972
973 atomic_inc(&dev_priv->irq_received);
974
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700975 while (true) {
976 iir = I915_READ(VLV_IIR);
977 gt_iir = I915_READ(GTIIR);
978 pm_iir = I915_READ(GEN6_PMIIR);
979
980 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
981 goto out;
982
983 ret = IRQ_HANDLED;
984
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200985 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700986
987 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
988 for_each_pipe(pipe) {
989 int reg = PIPESTAT(pipe);
990 pipe_stats[pipe] = I915_READ(reg);
991
992 /*
993 * Clear the PIPE*STAT regs before the IIR
994 */
995 if (pipe_stats[pipe] & 0x8000ffff) {
996 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
997 DRM_DEBUG_DRIVER("pipe %c underrun\n",
998 pipe_name(pipe));
999 I915_WRITE(reg, pipe_stats[pipe]);
1000 }
1001 }
1002 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1003
Jesse Barnes31acc7f2012-06-20 10:53:11 -07001004 for_each_pipe(pipe) {
1005 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
1006 drm_handle_vblank(dev, pipe);
1007
1008 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
1009 intel_prepare_page_flip(dev, pipe);
1010 intel_finish_page_flip(dev, pipe);
1011 }
1012 }
1013
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001014 /* Consume port. Then clear IIR or we'll miss events */
1015 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
1016 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02001017 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001018
1019 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
1020 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02001021 if (hotplug_trigger) {
Daniel Vetter10a504d2013-06-27 17:52:12 +02001022 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
Egbert Eichb543fb02013-04-16 13:36:54 +02001023 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001024 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1025 I915_READ(PORT_HOTPLUG_STAT);
1026 }
1027
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001028 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1029 gmbus_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001030
Ben Widawsky48484052013-05-28 19:22:27 -07001031 if (pm_iir & GEN6_PM_RPS_EVENTS)
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001032 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001033
1034 I915_WRITE(GTIIR, gt_iir);
1035 I915_WRITE(GEN6_PMIIR, pm_iir);
1036 I915_WRITE(VLV_IIR, iir);
1037 }
1038
1039out:
1040 return ret;
1041}
1042
Adam Jackson23e81d62012-06-06 15:45:44 -04001043static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001044{
1045 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001046 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001047 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001048
Egbert Eichb543fb02013-04-16 13:36:54 +02001049 if (hotplug_trigger) {
Daniel Vetter10a504d2013-06-27 17:52:12 +02001050 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_ibx);
Egbert Eichb543fb02013-04-16 13:36:54 +02001051 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001052 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1053 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1054 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001055 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001056 port_name(port));
1057 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001058
Daniel Vetterce99c252012-12-01 13:53:47 +01001059 if (pch_iir & SDE_AUX_MASK)
1060 dp_aux_irq_handler(dev);
1061
Jesse Barnes776ad802011-01-04 15:09:39 -08001062 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001063 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001064
1065 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1066 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1067
1068 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1069 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1070
1071 if (pch_iir & SDE_POISON)
1072 DRM_ERROR("PCH poison interrupt\n");
1073
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001074 if (pch_iir & SDE_FDI_MASK)
1075 for_each_pipe(pipe)
1076 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1077 pipe_name(pipe),
1078 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001079
1080 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1081 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1082
1083 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1084 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1085
Jesse Barnes776ad802011-01-04 15:09:39 -08001086 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001087 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1088 false))
1089 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1090
1091 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1092 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1093 false))
1094 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1095}
1096
1097static void ivb_err_int_handler(struct drm_device *dev)
1098{
1099 struct drm_i915_private *dev_priv = dev->dev_private;
1100 u32 err_int = I915_READ(GEN7_ERR_INT);
1101
Paulo Zanonide032bf2013-04-12 17:57:58 -03001102 if (err_int & ERR_INT_POISON)
1103 DRM_ERROR("Poison interrupt\n");
1104
Paulo Zanoni86642812013-04-12 17:57:57 -03001105 if (err_int & ERR_INT_FIFO_UNDERRUN_A)
1106 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1107 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1108
1109 if (err_int & ERR_INT_FIFO_UNDERRUN_B)
1110 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1111 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1112
1113 if (err_int & ERR_INT_FIFO_UNDERRUN_C)
1114 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_C, false))
1115 DRM_DEBUG_DRIVER("Pipe C FIFO underrun\n");
1116
1117 I915_WRITE(GEN7_ERR_INT, err_int);
1118}
1119
1120static void cpt_serr_int_handler(struct drm_device *dev)
1121{
1122 struct drm_i915_private *dev_priv = dev->dev_private;
1123 u32 serr_int = I915_READ(SERR_INT);
1124
Paulo Zanonide032bf2013-04-12 17:57:58 -03001125 if (serr_int & SERR_INT_POISON)
1126 DRM_ERROR("PCH poison interrupt\n");
1127
Paulo Zanoni86642812013-04-12 17:57:57 -03001128 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1129 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1130 false))
1131 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1132
1133 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1134 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1135 false))
1136 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1137
1138 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1139 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1140 false))
1141 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1142
1143 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001144}
1145
Adam Jackson23e81d62012-06-06 15:45:44 -04001146static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1147{
1148 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1149 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001150 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001151
Egbert Eichb543fb02013-04-16 13:36:54 +02001152 if (hotplug_trigger) {
Daniel Vetter10a504d2013-06-27 17:52:12 +02001153 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_cpt);
Egbert Eichb543fb02013-04-16 13:36:54 +02001154 }
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001155 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1156 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1157 SDE_AUDIO_POWER_SHIFT_CPT);
1158 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1159 port_name(port));
1160 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001161
1162 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001163 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001164
1165 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001166 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001167
1168 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1169 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1170
1171 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1172 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1173
1174 if (pch_iir & SDE_FDI_MASK_CPT)
1175 for_each_pipe(pipe)
1176 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1177 pipe_name(pipe),
1178 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001179
1180 if (pch_iir & SDE_ERROR_CPT)
1181 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001182}
1183
Daniel Vetterff1f5252012-10-02 15:10:55 +02001184static irqreturn_t ivybridge_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001185{
1186 struct drm_device *dev = (struct drm_device *) arg;
1187 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskyab5c6082013-04-05 13:12:41 -07001188 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01001189 irqreturn_t ret = IRQ_NONE;
1190 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001191
1192 atomic_inc(&dev_priv->irq_received);
1193
Paulo Zanoni86642812013-04-12 17:57:57 -03001194 /* We get interrupts on unclaimed registers, so check for this before we
1195 * do any I915_{READ,WRITE}. */
1196 if (IS_HASWELL(dev) &&
1197 (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
1198 DRM_ERROR("Unclaimed register before interrupt\n");
1199 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
1200 }
1201
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001202 /* disable master interrupt before clearing iir */
1203 de_ier = I915_READ(DEIER);
1204 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +01001205
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001206 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1207 * interrupts will will be stored on its back queue, and then we'll be
1208 * able to process them after we restore SDEIER (as soon as we restore
1209 * it, we'll get an interrupt if SDEIIR still has something to process
1210 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001211 if (!HAS_PCH_NOP(dev)) {
1212 sde_ier = I915_READ(SDEIER);
1213 I915_WRITE(SDEIER, 0);
1214 POSTING_READ(SDEIER);
1215 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001216
Paulo Zanoni86642812013-04-12 17:57:57 -03001217 /* On Haswell, also mask ERR_INT because we don't want to risk
1218 * generating "unclaimed register" interrupts from inside the interrupt
1219 * handler. */
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001220 if (IS_HASWELL(dev)) {
1221 spin_lock(&dev_priv->irq_lock);
Paulo Zanoni86642812013-04-12 17:57:57 -03001222 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001223 spin_unlock(&dev_priv->irq_lock);
1224 }
Paulo Zanoni86642812013-04-12 17:57:57 -03001225
Chris Wilson0e434062012-05-09 21:45:44 +01001226 gt_iir = I915_READ(GTIIR);
1227 if (gt_iir) {
1228 snb_gt_irq_handler(dev, dev_priv, gt_iir);
1229 I915_WRITE(GTIIR, gt_iir);
1230 ret = IRQ_HANDLED;
1231 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001232
1233 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001234 if (de_iir) {
Paulo Zanoni86642812013-04-12 17:57:57 -03001235 if (de_iir & DE_ERR_INT_IVB)
1236 ivb_err_int_handler(dev);
1237
Daniel Vetterce99c252012-12-01 13:53:47 +01001238 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1239 dp_aux_irq_handler(dev);
1240
Chris Wilson0e434062012-05-09 21:45:44 +01001241 if (de_iir & DE_GSE_IVB)
Jani Nikula81a07802013-04-24 22:18:44 +03001242 intel_opregion_asle_intr(dev);
Chris Wilson0e434062012-05-09 21:45:44 +01001243
1244 for (i = 0; i < 3; i++) {
Daniel Vetter74d44442012-10-02 17:54:35 +02001245 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1246 drm_handle_vblank(dev, i);
Chris Wilson0e434062012-05-09 21:45:44 +01001247 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1248 intel_prepare_page_flip(dev, i);
1249 intel_finish_page_flip_plane(dev, i);
1250 }
Chris Wilson0e434062012-05-09 21:45:44 +01001251 }
1252
1253 /* check event from PCH */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001254 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
Chris Wilson0e434062012-05-09 21:45:44 +01001255 u32 pch_iir = I915_READ(SDEIIR);
1256
Adam Jackson23e81d62012-06-06 15:45:44 -04001257 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001258
1259 /* clear PCH hotplug event before clear CPU irq */
1260 I915_WRITE(SDEIIR, pch_iir);
1261 }
1262
1263 I915_WRITE(DEIIR, de_iir);
1264 ret = IRQ_HANDLED;
1265 }
1266
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001267 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001268 if (pm_iir) {
Ben Widawskybaf02a12013-05-28 19:22:24 -07001269 if (IS_HASWELL(dev))
1270 hsw_pm_irq_handler(dev_priv, pm_iir);
Ben Widawsky48484052013-05-28 19:22:27 -07001271 else if (pm_iir & GEN6_PM_RPS_EVENTS)
Chris Wilson0e434062012-05-09 21:45:44 +01001272 gen6_queue_rps_work(dev_priv, pm_iir);
1273 I915_WRITE(GEN6_PMIIR, pm_iir);
1274 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001275 }
1276
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001277 if (IS_HASWELL(dev)) {
1278 spin_lock(&dev_priv->irq_lock);
1279 if (ivb_can_enable_err_int(dev))
1280 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
1281 spin_unlock(&dev_priv->irq_lock);
1282 }
Paulo Zanoni86642812013-04-12 17:57:57 -03001283
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001284 I915_WRITE(DEIER, de_ier);
1285 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07001286 if (!HAS_PCH_NOP(dev)) {
1287 I915_WRITE(SDEIER, sde_ier);
1288 POSTING_READ(SDEIER);
1289 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001290
1291 return ret;
1292}
1293
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001294static void ilk_gt_irq_handler(struct drm_device *dev,
1295 struct drm_i915_private *dev_priv,
1296 u32 gt_iir)
1297{
Ben Widawskycc609d52013-05-28 19:22:29 -07001298 if (gt_iir &
1299 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001300 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001301 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001302 notify_ring(dev, &dev_priv->ring[VCS]);
1303}
1304
Daniel Vetterff1f5252012-10-02 15:10:55 +02001305static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001306{
Jesse Barnes46979952011-04-07 13:53:55 -07001307 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001308 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1309 int ret = IRQ_NONE;
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001310 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001311
Jesse Barnes46979952011-04-07 13:53:55 -07001312 atomic_inc(&dev_priv->irq_received);
1313
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001314 /* disable master interrupt before clearing iir */
1315 de_ier = I915_READ(DEIER);
1316 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001317 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001318
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001319 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1320 * interrupts will will be stored on its back queue, and then we'll be
1321 * able to process them after we restore SDEIER (as soon as we restore
1322 * it, we'll get an interrupt if SDEIIR still has something to process
1323 * due to its back queue). */
1324 sde_ier = I915_READ(SDEIER);
1325 I915_WRITE(SDEIER, 0);
1326 POSTING_READ(SDEIER);
1327
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001328 de_iir = I915_READ(DEIIR);
1329 gt_iir = I915_READ(GTIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001330 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001331
Daniel Vetteracd15b62012-11-30 11:24:50 +01001332 if (de_iir == 0 && gt_iir == 0 && (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +08001333 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001334
Zou Nan haic7c85102010-01-15 10:29:06 +08001335 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001336
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001337 if (IS_GEN5(dev))
1338 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
1339 else
1340 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001341
Daniel Vetterce99c252012-12-01 13:53:47 +01001342 if (de_iir & DE_AUX_CHANNEL_A)
1343 dp_aux_irq_handler(dev);
1344
Zou Nan haic7c85102010-01-15 10:29:06 +08001345 if (de_iir & DE_GSE)
Jani Nikula81a07802013-04-24 22:18:44 +03001346 intel_opregion_asle_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +08001347
Daniel Vetter74d44442012-10-02 17:54:35 +02001348 if (de_iir & DE_PIPEA_VBLANK)
1349 drm_handle_vblank(dev, 0);
1350
1351 if (de_iir & DE_PIPEB_VBLANK)
1352 drm_handle_vblank(dev, 1);
1353
Paulo Zanonide032bf2013-04-12 17:57:58 -03001354 if (de_iir & DE_POISON)
1355 DRM_ERROR("Poison interrupt\n");
1356
Paulo Zanoni86642812013-04-12 17:57:57 -03001357 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1358 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1359 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1360
1361 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1362 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1363 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1364
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001365 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001366 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +01001367 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001368 }
1369
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001370 if (de_iir & DE_PLANEB_FLIP_DONE) {
1371 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +01001372 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001373 }
Li Pengc062df62010-01-23 00:12:58 +08001374
Zou Nan haic7c85102010-01-15 10:29:06 +08001375 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -08001376 if (de_iir & DE_PCH_EVENT) {
Daniel Vetteracd15b62012-11-30 11:24:50 +01001377 u32 pch_iir = I915_READ(SDEIIR);
1378
Adam Jackson23e81d62012-06-06 15:45:44 -04001379 if (HAS_PCH_CPT(dev))
1380 cpt_irq_handler(dev, pch_iir);
1381 else
1382 ibx_irq_handler(dev, pch_iir);
Daniel Vetteracd15b62012-11-30 11:24:50 +01001383
1384 /* should clear PCH hotplug event before clear CPU irq */
1385 I915_WRITE(SDEIIR, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -08001386 }
Zou Nan haic7c85102010-01-15 10:29:06 +08001387
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001388 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
1389 ironlake_handle_rps_change(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001390
Ben Widawsky48484052013-05-28 19:22:27 -07001391 if (IS_GEN6(dev) && pm_iir & GEN6_PM_RPS_EVENTS)
Chris Wilsonfc6826d2012-04-15 11:56:03 +01001392 gen6_queue_rps_work(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001393
Zou Nan haic7c85102010-01-15 10:29:06 +08001394 I915_WRITE(GTIIR, gt_iir);
1395 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -07001396 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001397
1398done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001399 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001400 POSTING_READ(DEIER);
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001401 I915_WRITE(SDEIER, sde_ier);
1402 POSTING_READ(SDEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001403
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001404 return ret;
1405}
1406
Jesse Barnes8a905232009-07-11 16:48:03 -04001407/**
1408 * i915_error_work_func - do process context error handling work
1409 * @work: work struct
1410 *
1411 * Fire an error uevent so userspace can see that a hang or error
1412 * was detected.
1413 */
1414static void i915_error_work_func(struct work_struct *work)
1415{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001416 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1417 work);
1418 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1419 gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04001420 struct drm_device *dev = dev_priv->dev;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001421 struct intel_ring_buffer *ring;
Ben Gamarif316a422009-09-14 17:48:46 -04001422 char *error_event[] = { "ERROR=1", NULL };
1423 char *reset_event[] = { "RESET=1", NULL };
1424 char *reset_done_event[] = { "ERROR=0", NULL };
Daniel Vetterf69061b2012-12-06 09:01:42 +01001425 int i, ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04001426
Ben Gamarif316a422009-09-14 17:48:46 -04001427 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04001428
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001429 /*
1430 * Note that there's only one work item which does gpu resets, so we
1431 * need not worry about concurrent gpu resets potentially incrementing
1432 * error->reset_counter twice. We only need to take care of another
1433 * racing irq/hangcheck declaring the gpu dead for a second time. A
1434 * quick check for that is good enough: schedule_work ensures the
1435 * correct ordering between hang detection and this work item, and since
1436 * the reset in-progress bit is only ever set by code outside of this
1437 * work we don't need to worry about any other races.
1438 */
1439 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01001440 DRM_DEBUG_DRIVER("resetting chip\n");
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001441 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE,
1442 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001443
Daniel Vetterf69061b2012-12-06 09:01:42 +01001444 ret = i915_reset(dev);
1445
1446 if (ret == 0) {
1447 /*
1448 * After all the gem state is reset, increment the reset
1449 * counter and wake up everyone waiting for the reset to
1450 * complete.
1451 *
1452 * Since unlock operations are a one-sided barrier only,
1453 * we need to insert a barrier here to order any seqno
1454 * updates before
1455 * the counter increment.
1456 */
1457 smp_mb__before_atomic_inc();
1458 atomic_inc(&dev_priv->gpu_error.reset_counter);
1459
1460 kobject_uevent_env(&dev->primary->kdev.kobj,
1461 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001462 } else {
1463 atomic_set(&error->reset_counter, I915_WEDGED);
Ben Gamarif316a422009-09-14 17:48:46 -04001464 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001465
Daniel Vetterf69061b2012-12-06 09:01:42 +01001466 for_each_ring(ring, dev_priv, i)
1467 wake_up_all(&ring->irq_queue);
1468
Ville Syrjälä96a02912013-02-18 19:08:49 +02001469 intel_display_handle_reset(dev);
1470
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001471 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04001472 }
Jesse Barnes8a905232009-07-11 16:48:03 -04001473}
1474
Daniel Vetter85f9e502012-08-31 21:42:26 +02001475/* NB: please notice the memset */
1476static void i915_get_extra_instdone(struct drm_device *dev,
1477 uint32_t *instdone)
1478{
1479 struct drm_i915_private *dev_priv = dev->dev_private;
1480 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1481
1482 switch(INTEL_INFO(dev)->gen) {
1483 case 2:
1484 case 3:
1485 instdone[0] = I915_READ(INSTDONE);
1486 break;
1487 case 4:
1488 case 5:
1489 case 6:
1490 instdone[0] = I915_READ(INSTDONE_I965);
1491 instdone[1] = I915_READ(INSTDONE1);
1492 break;
1493 default:
1494 WARN_ONCE(1, "Unsupported platform\n");
1495 case 7:
1496 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1497 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1498 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1499 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1500 break;
1501 }
1502}
1503
Chris Wilson3bd3c932010-08-19 08:19:30 +01001504#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +00001505static struct drm_i915_error_object *
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001506i915_error_object_create_sized(struct drm_i915_private *dev_priv,
1507 struct drm_i915_gem_object *src,
1508 const int num_pages)
Chris Wilson9df30792010-02-18 10:24:56 +00001509{
1510 struct drm_i915_error_object *dst;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001511 int i;
Chris Wilsone56660d2010-08-07 11:01:26 +01001512 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001513
Chris Wilson05394f32010-11-08 19:18:58 +00001514 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +00001515 return NULL;
1516
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001517 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001518 if (dst == NULL)
1519 return NULL;
1520
Chris Wilson05394f32010-11-08 19:18:58 +00001521 reloc_offset = src->gtt_offset;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001522 for (i = 0; i < num_pages; i++) {
Andrew Morton788885a2010-05-11 14:07:05 -07001523 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +01001524 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -07001525
Chris Wilsone56660d2010-08-07 11:01:26 +01001526 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001527 if (d == NULL)
1528 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +01001529
Andrew Morton788885a2010-05-11 14:07:05 -07001530 local_irq_save(flags);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001531 if (reloc_offset < dev_priv->gtt.mappable_end &&
Daniel Vetter74898d72012-02-15 23:50:22 +01001532 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +01001533 void __iomem *s;
1534
1535 /* Simply ignore tiling or any overlapping fence.
1536 * It's part of the error state, and this hopefully
1537 * captures what the GPU read.
1538 */
1539
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001540 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson172975aa2011-12-14 13:57:25 +01001541 reloc_offset);
1542 memcpy_fromio(d, s, PAGE_SIZE);
1543 io_mapping_unmap_atomic(s);
Chris Wilson960e3562012-11-15 11:32:23 +00001544 } else if (src->stolen) {
1545 unsigned long offset;
1546
1547 offset = dev_priv->mm.stolen_base;
1548 offset += src->stolen->start;
1549 offset += i << PAGE_SHIFT;
1550
Daniel Vetter1a240d42012-11-29 22:18:51 +01001551 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
Chris Wilson172975aa2011-12-14 13:57:25 +01001552 } else {
Chris Wilson9da3da62012-06-01 15:20:22 +01001553 struct page *page;
Chris Wilson172975aa2011-12-14 13:57:25 +01001554 void *s;
1555
Chris Wilson9da3da62012-06-01 15:20:22 +01001556 page = i915_gem_object_get_page(src, i);
Chris Wilson172975aa2011-12-14 13:57:25 +01001557
Chris Wilson9da3da62012-06-01 15:20:22 +01001558 drm_clflush_pages(&page, 1);
1559
1560 s = kmap_atomic(page);
Chris Wilson172975aa2011-12-14 13:57:25 +01001561 memcpy(d, s, PAGE_SIZE);
1562 kunmap_atomic(s);
1563
Chris Wilson9da3da62012-06-01 15:20:22 +01001564 drm_clflush_pages(&page, 1);
Chris Wilson172975aa2011-12-14 13:57:25 +01001565 }
Andrew Morton788885a2010-05-11 14:07:05 -07001566 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +01001567
Chris Wilson9da3da62012-06-01 15:20:22 +01001568 dst->pages[i] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +01001569
1570 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +00001571 }
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001572 dst->page_count = num_pages;
Chris Wilson05394f32010-11-08 19:18:58 +00001573 dst->gtt_offset = src->gtt_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001574
1575 return dst;
1576
1577unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001578 while (i--)
1579 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001580 kfree(dst);
1581 return NULL;
1582}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001583#define i915_error_object_create(dev_priv, src) \
1584 i915_error_object_create_sized((dev_priv), (src), \
1585 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001586
1587static void
1588i915_error_object_free(struct drm_i915_error_object *obj)
1589{
1590 int page;
1591
1592 if (obj == NULL)
1593 return;
1594
1595 for (page = 0; page < obj->page_count; page++)
1596 kfree(obj->pages[page]);
1597
1598 kfree(obj);
1599}
1600
Daniel Vetter742cbee2012-04-27 15:17:39 +02001601void
1602i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001603{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001604 struct drm_i915_error_state *error = container_of(error_ref,
1605 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001606 int i;
1607
Chris Wilson52d39a22012-02-15 11:25:37 +00001608 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1609 i915_error_object_free(error->ring[i].batchbuffer);
1610 i915_error_object_free(error->ring[i].ringbuffer);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001611 i915_error_object_free(error->ring[i].ctx);
Chris Wilson52d39a22012-02-15 11:25:37 +00001612 kfree(error->ring[i].requests);
1613 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001614
Chris Wilson9df30792010-02-18 10:24:56 +00001615 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001616 kfree(error->overlay);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001617 kfree(error->display);
Chris Wilson9df30792010-02-18 10:24:56 +00001618 kfree(error);
1619}
Chris Wilson1b502472012-04-24 15:47:30 +01001620static void capture_bo(struct drm_i915_error_buffer *err,
1621 struct drm_i915_gem_object *obj)
1622{
1623 err->size = obj->base.size;
1624 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001625 err->rseqno = obj->last_read_seqno;
1626 err->wseqno = obj->last_write_seqno;
Chris Wilson1b502472012-04-24 15:47:30 +01001627 err->gtt_offset = obj->gtt_offset;
1628 err->read_domains = obj->base.read_domains;
1629 err->write_domain = obj->base.write_domain;
1630 err->fence_reg = obj->fence_reg;
1631 err->pinned = 0;
1632 if (obj->pin_count > 0)
1633 err->pinned = 1;
1634 if (obj->user_pin_count > 0)
1635 err->pinned = -1;
1636 err->tiling = obj->tiling_mode;
1637 err->dirty = obj->dirty;
1638 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1639 err->ring = obj->ring ? obj->ring->id : -1;
1640 err->cache_level = obj->cache_level;
1641}
Chris Wilson9df30792010-02-18 10:24:56 +00001642
Chris Wilson1b502472012-04-24 15:47:30 +01001643static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1644 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001645{
1646 struct drm_i915_gem_object *obj;
1647 int i = 0;
1648
1649 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001650 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001651 if (++i == count)
1652 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001653 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001654
Chris Wilson1b502472012-04-24 15:47:30 +01001655 return i;
1656}
1657
1658static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1659 int count, struct list_head *head)
1660{
1661 struct drm_i915_gem_object *obj;
1662 int i = 0;
1663
Ben Widawsky35c20a62013-05-31 11:28:48 -07001664 list_for_each_entry(obj, head, global_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001665 if (obj->pin_count == 0)
1666 continue;
1667
1668 capture_bo(err++, obj);
1669 if (++i == count)
1670 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001671 }
1672
1673 return i;
1674}
1675
Chris Wilson748ebc62010-10-24 10:28:47 +01001676static void i915_gem_record_fences(struct drm_device *dev,
1677 struct drm_i915_error_state *error)
1678{
1679 struct drm_i915_private *dev_priv = dev->dev_private;
1680 int i;
1681
1682 /* Fences */
1683 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001684 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001685 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001686 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001687 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1688 break;
1689 case 5:
1690 case 4:
1691 for (i = 0; i < 16; i++)
1692 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1693 break;
1694 case 3:
1695 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1696 for (i = 0; i < 8; i++)
1697 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1698 case 2:
1699 for (i = 0; i < 8; i++)
1700 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1701 break;
1702
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001703 default:
1704 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001705 }
1706}
1707
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001708static struct drm_i915_error_object *
1709i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1710 struct intel_ring_buffer *ring)
1711{
1712 struct drm_i915_gem_object *obj;
1713 u32 seqno;
1714
1715 if (!ring->get_seqno)
1716 return NULL;
1717
Daniel Vetterb45305f2012-12-17 16:21:27 +01001718 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1719 u32 acthd = I915_READ(ACTHD);
1720
1721 if (WARN_ON(ring->id != RCS))
1722 return NULL;
1723
1724 obj = ring->private;
1725 if (acthd >= obj->gtt_offset &&
1726 acthd < obj->gtt_offset + obj->base.size)
1727 return i915_error_object_create(dev_priv, obj);
1728 }
1729
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001730 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001731 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1732 if (obj->ring != ring)
1733 continue;
1734
Chris Wilson0201f1e2012-07-20 12:41:01 +01001735 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001736 continue;
1737
1738 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1739 continue;
1740
1741 /* We need to copy these to an anonymous buffer as the simplest
1742 * method to avoid being overwritten by userspace.
1743 */
1744 return i915_error_object_create(dev_priv, obj);
1745 }
1746
1747 return NULL;
1748}
1749
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001750static void i915_record_ring_state(struct drm_device *dev,
1751 struct drm_i915_error_state *error,
1752 struct intel_ring_buffer *ring)
1753{
1754 struct drm_i915_private *dev_priv = dev->dev_private;
1755
Daniel Vetter33f3f512011-12-14 13:57:39 +01001756 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001757 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001758 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001759 error->semaphore_mboxes[ring->id][0]
1760 = I915_READ(RING_SYNC_0(ring->mmio_base));
1761 error->semaphore_mboxes[ring->id][1]
1762 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001763 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1764 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001765 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001766
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001767 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001768 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001769 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1770 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1771 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001772 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001773 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001774 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001775 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001776 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001777 error->ipeir[ring->id] = I915_READ(IPEIR);
1778 error->ipehr[ring->id] = I915_READ(IPEHR);
1779 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001780 }
1781
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001782 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001783 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001784 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001785 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001786 error->head[ring->id] = I915_READ_HEAD(ring);
1787 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001788 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001789
1790 error->cpu_ring_head[ring->id] = ring->head;
1791 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001792}
1793
Ben Widawsky8c123e52013-03-04 17:00:29 -08001794
1795static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1796 struct drm_i915_error_state *error,
1797 struct drm_i915_error_ring *ering)
1798{
1799 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1800 struct drm_i915_gem_object *obj;
1801
1802 /* Currently render ring is the only HW context user */
1803 if (ring->id != RCS || !error->ccid)
1804 return;
1805
Ben Widawsky35c20a62013-05-31 11:28:48 -07001806 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawsky8c123e52013-03-04 17:00:29 -08001807 if ((error->ccid & PAGE_MASK) == obj->gtt_offset) {
1808 ering->ctx = i915_error_object_create_sized(dev_priv,
1809 obj, 1);
1810 }
1811 }
1812}
1813
Chris Wilson52d39a22012-02-15 11:25:37 +00001814static void i915_gem_record_rings(struct drm_device *dev,
1815 struct drm_i915_error_state *error)
1816{
1817 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001818 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001819 struct drm_i915_gem_request *request;
1820 int i, count;
1821
Chris Wilsonb4519512012-05-11 14:29:30 +01001822 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001823 i915_record_ring_state(dev, error, ring);
1824
1825 error->ring[i].batchbuffer =
1826 i915_error_first_batchbuffer(dev_priv, ring);
1827
1828 error->ring[i].ringbuffer =
1829 i915_error_object_create(dev_priv, ring->obj);
1830
Ben Widawsky8c123e52013-03-04 17:00:29 -08001831
1832 i915_gem_record_active_context(ring, error, &error->ring[i]);
1833
Chris Wilson52d39a22012-02-15 11:25:37 +00001834 count = 0;
1835 list_for_each_entry(request, &ring->request_list, list)
1836 count++;
1837
1838 error->ring[i].num_requests = count;
1839 error->ring[i].requests =
1840 kmalloc(count*sizeof(struct drm_i915_error_request),
1841 GFP_ATOMIC);
1842 if (error->ring[i].requests == NULL) {
1843 error->ring[i].num_requests = 0;
1844 continue;
1845 }
1846
1847 count = 0;
1848 list_for_each_entry(request, &ring->request_list, list) {
1849 struct drm_i915_error_request *erq;
1850
1851 erq = &error->ring[i].requests[count++];
1852 erq->seqno = request->seqno;
1853 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001854 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001855 }
1856 }
1857}
1858
Jesse Barnes8a905232009-07-11 16:48:03 -04001859/**
1860 * i915_capture_error_state - capture an error record for later analysis
1861 * @dev: drm device
1862 *
1863 * Should be called when an error is detected (either a hang or an error
1864 * interrupt) to capture error state from the time of the error. Fills
1865 * out a structure which becomes available in debugfs for user level tools
1866 * to pick up.
1867 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001868static void i915_capture_error_state(struct drm_device *dev)
1869{
1870 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson05394f32010-11-08 19:18:58 +00001871 struct drm_i915_gem_object *obj;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001872 struct drm_i915_error_state *error;
1873 unsigned long flags;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001874 int i, pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001875
Daniel Vetter99584db2012-11-14 17:14:04 +01001876 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1877 error = dev_priv->gpu_error.first_error;
1878 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001879 if (error)
1880 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001881
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001882 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001883 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001884 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001885 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1886 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001887 }
1888
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001889 DRM_INFO("capturing error event; look for more information in "
Ben Widawsky2f86f192013-01-28 15:32:15 -08001890 "/sys/kernel/debug/dri/%d/i915_error_state\n",
Chris Wilsonb6f78332011-02-01 14:15:55 +00001891 dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001892
Daniel Vetter742cbee2012-04-27 15:17:39 +02001893 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001894 error->eir = I915_READ(EIR);
1895 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001896 if (HAS_HW_CONTEXTS(dev))
1897 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001898
1899 if (HAS_PCH_SPLIT(dev))
1900 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1901 else if (IS_VALLEYVIEW(dev))
1902 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1903 else if (IS_GEN2(dev))
1904 error->ier = I915_READ16(IER);
1905 else
1906 error->ier = I915_READ(IER);
1907
Chris Wilson0f3b6842013-01-15 12:05:55 +00001908 if (INTEL_INFO(dev)->gen >= 6)
1909 error->derrmr = I915_READ(DERRMR);
1910
1911 if (IS_VALLEYVIEW(dev))
1912 error->forcewake = I915_READ(FORCEWAKE_VLV);
1913 else if (INTEL_INFO(dev)->gen >= 7)
1914 error->forcewake = I915_READ(FORCEWAKE_MT);
1915 else if (INTEL_INFO(dev)->gen == 6)
1916 error->forcewake = I915_READ(FORCEWAKE);
1917
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001918 if (!HAS_PCH_SPLIT(dev))
1919 for_each_pipe(pipe)
1920 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001921
Daniel Vetter33f3f512011-12-14 13:57:39 +01001922 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001923 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001924 error->done_reg = I915_READ(DONE_REG);
1925 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001926
Ben Widawsky71e172e2012-08-20 16:15:13 -07001927 if (INTEL_INFO(dev)->gen == 7)
1928 error->err_int = I915_READ(GEN7_ERR_INT);
1929
Ben Widawsky050ee912012-08-22 11:32:15 -07001930 i915_get_extra_instdone(dev, error->extra_instdone);
1931
Chris Wilson748ebc62010-10-24 10:28:47 +01001932 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001933 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001934
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001935 /* Record buffers on the active and pinned lists. */
Chris Wilson9df30792010-02-18 10:24:56 +00001936 error->active_bo = NULL;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001937 error->pinned_bo = NULL;
Chris Wilson9df30792010-02-18 10:24:56 +00001938
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001939 i = 0;
1940 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1941 i++;
1942 error->active_bo_count = i;
Ben Widawsky35c20a62013-05-31 11:28:48 -07001943 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
Chris Wilson1b502472012-04-24 15:47:30 +01001944 if (obj->pin_count)
1945 i++;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001946 error->pinned_bo_count = i - error->active_bo_count;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001947
Chris Wilson8e934db2011-01-24 12:34:00 +00001948 error->active_bo = NULL;
1949 error->pinned_bo = NULL;
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001950 if (i) {
1951 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
Chris Wilson9df30792010-02-18 10:24:56 +00001952 GFP_ATOMIC);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001953 if (error->active_bo)
1954 error->pinned_bo =
1955 error->active_bo + error->active_bo_count;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001956 }
1957
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001958 if (error->active_bo)
1959 error->active_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001960 capture_active_bo(error->active_bo,
1961 error->active_bo_count,
1962 &dev_priv->mm.active_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001963
1964 if (error->pinned_bo)
1965 error->pinned_bo_count =
Chris Wilson1b502472012-04-24 15:47:30 +01001966 capture_pinned_bo(error->pinned_bo,
1967 error->pinned_bo_count,
Chris Wilson6c085a72012-08-20 11:40:46 +02001968 &dev_priv->mm.bound_list);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001969
Jesse Barnes8a905232009-07-11 16:48:03 -04001970 do_gettimeofday(&error->time);
1971
Chris Wilson6ef3d422010-08-04 20:26:07 +01001972 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001973 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001974
Daniel Vetter99584db2012-11-14 17:14:04 +01001975 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1976 if (dev_priv->gpu_error.first_error == NULL) {
1977 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00001978 error = NULL;
1979 }
Daniel Vetter99584db2012-11-14 17:14:04 +01001980 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001981
1982 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001983 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00001984}
1985
1986void i915_destroy_error_state(struct drm_device *dev)
1987{
1988 struct drm_i915_private *dev_priv = dev->dev_private;
1989 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08001990 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00001991
Daniel Vetter99584db2012-11-14 17:14:04 +01001992 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1993 error = dev_priv->gpu_error.first_error;
1994 dev_priv->gpu_error.first_error = NULL;
1995 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001996
1997 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02001998 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001999}
Chris Wilson3bd3c932010-08-19 08:19:30 +01002000#else
2001#define i915_capture_error_state(x)
2002#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002003
Chris Wilson35aed2e2010-05-27 13:18:12 +01002004static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002005{
2006 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002007 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002008 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002009 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002010
Chris Wilson35aed2e2010-05-27 13:18:12 +01002011 if (!eir)
2012 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002013
Joe Perchesa70491c2012-03-18 13:00:11 -07002014 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002015
Ben Widawskybd9854f2012-08-23 15:18:09 -07002016 i915_get_extra_instdone(dev, instdone);
2017
Jesse Barnes8a905232009-07-11 16:48:03 -04002018 if (IS_G4X(dev)) {
2019 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2020 u32 ipeir = I915_READ(IPEIR_I965);
2021
Joe Perchesa70491c2012-03-18 13:00:11 -07002022 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2023 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002024 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2025 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002026 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002027 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002028 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002029 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002030 }
2031 if (eir & GM45_ERROR_PAGE_TABLE) {
2032 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002033 pr_err("page table error\n");
2034 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002035 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002036 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002037 }
2038 }
2039
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002040 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002041 if (eir & I915_ERROR_PAGE_TABLE) {
2042 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002043 pr_err("page table error\n");
2044 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002045 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002046 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002047 }
2048 }
2049
2050 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002051 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002052 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002053 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002054 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002055 /* pipestat has already been acked */
2056 }
2057 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002058 pr_err("instruction error\n");
2059 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002060 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2061 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002062 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002063 u32 ipeir = I915_READ(IPEIR);
2064
Joe Perchesa70491c2012-03-18 13:00:11 -07002065 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2066 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002067 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002068 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002069 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002070 } else {
2071 u32 ipeir = I915_READ(IPEIR_I965);
2072
Joe Perchesa70491c2012-03-18 13:00:11 -07002073 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2074 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002075 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002076 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002077 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002078 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002079 }
2080 }
2081
2082 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002083 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002084 eir = I915_READ(EIR);
2085 if (eir) {
2086 /*
2087 * some errors might have become stuck,
2088 * mask them.
2089 */
2090 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2091 I915_WRITE(EMR, I915_READ(EMR) | eir);
2092 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2093 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002094}
2095
2096/**
2097 * i915_handle_error - handle an error interrupt
2098 * @dev: drm device
2099 *
2100 * Do some basic checking of regsiter state at error interrupt time and
2101 * dump it to the syslog. Also call i915_capture_error_state() to make
2102 * sure we get a record and make it available in debugfs. Fire a uevent
2103 * so userspace knows something bad happened (should trigger collection
2104 * of a ring dump etc.).
2105 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002106void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002107{
2108 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002109 struct intel_ring_buffer *ring;
2110 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002111
2112 i915_capture_error_state(dev);
2113 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002114
Ben Gamariba1234d2009-09-14 17:48:47 -04002115 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002116 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2117 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002118
Ben Gamari11ed50e2009-09-14 17:48:45 -04002119 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002120 * Wakeup waiting processes so that the reset work item
2121 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002122 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002123 for_each_ring(ring, dev_priv, i)
2124 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002125 }
2126
Daniel Vetter99584db2012-11-14 17:14:04 +01002127 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002128}
2129
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002130static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002131{
2132 drm_i915_private_t *dev_priv = dev->dev_private;
2133 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2134 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002135 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002136 struct intel_unpin_work *work;
2137 unsigned long flags;
2138 bool stall_detected;
2139
2140 /* Ignore early vblank irqs */
2141 if (intel_crtc == NULL)
2142 return;
2143
2144 spin_lock_irqsave(&dev->event_lock, flags);
2145 work = intel_crtc->unpin_work;
2146
Chris Wilsone7d841c2012-12-03 11:36:30 +00002147 if (work == NULL ||
2148 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2149 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002150 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2151 spin_unlock_irqrestore(&dev->event_lock, flags);
2152 return;
2153 }
2154
2155 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002156 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002157 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002158 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002159 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
2160 obj->gtt_offset;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002161 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002162 int dspaddr = DSPADDR(intel_crtc->plane);
Chris Wilson05394f32010-11-08 19:18:58 +00002163 stall_detected = I915_READ(dspaddr) == (obj->gtt_offset +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002164 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002165 crtc->x * crtc->fb->bits_per_pixel/8);
2166 }
2167
2168 spin_unlock_irqrestore(&dev->event_lock, flags);
2169
2170 if (stall_detected) {
2171 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2172 intel_prepare_page_flip(dev, intel_crtc->plane);
2173 }
2174}
2175
Keith Packard42f52ef2008-10-18 19:39:29 -07002176/* Called from drm generic code, passed 'crtc' which
2177 * we use as a pipe index
2178 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002179static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002180{
2181 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002182 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002183
Chris Wilson5eddb702010-09-11 13:48:45 +01002184 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002185 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002186
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002187 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002188 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002189 i915_enable_pipestat(dev_priv, pipe,
2190 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002191 else
Keith Packard7c463582008-11-04 02:03:27 -08002192 i915_enable_pipestat(dev_priv, pipe,
2193 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002194
2195 /* maintain vblank delivery even in deep C-states */
2196 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002197 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002198 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002199
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002200 return 0;
2201}
2202
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002203static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002204{
2205 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2206 unsigned long irqflags;
2207
2208 if (!i915_pipe_enabled(dev, pipe))
2209 return -EINVAL;
2210
2211 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2212 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002213 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002214 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2215
2216 return 0;
2217}
2218
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002219static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002220{
2221 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2222 unsigned long irqflags;
2223
2224 if (!i915_pipe_enabled(dev, pipe))
2225 return -EINVAL;
2226
2227 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002228 ironlake_enable_display_irq(dev_priv,
2229 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002230 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2231
2232 return 0;
2233}
2234
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002235static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2236{
2237 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2238 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002239 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002240
2241 if (!i915_pipe_enabled(dev, pipe))
2242 return -EINVAL;
2243
2244 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002245 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002246 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002247 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002248 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002249 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002250 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002251 i915_enable_pipestat(dev_priv, pipe,
2252 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002253 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2254
2255 return 0;
2256}
2257
Keith Packard42f52ef2008-10-18 19:39:29 -07002258/* Called from drm generic code, passed 'crtc' which
2259 * we use as a pipe index
2260 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002261static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002262{
2263 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002264 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002265
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002266 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002267 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002268 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002269
Jesse Barnesf796cf82011-04-07 13:58:17 -07002270 i915_disable_pipestat(dev_priv, pipe,
2271 PIPE_VBLANK_INTERRUPT_ENABLE |
2272 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2273 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2274}
2275
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002276static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002277{
2278 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2279 unsigned long irqflags;
2280
2281 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2282 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002283 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002284 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002285}
2286
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002287static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002288{
2289 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2290 unsigned long irqflags;
2291
2292 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002293 ironlake_disable_display_irq(dev_priv,
2294 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002295 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2296}
2297
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002298static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2299{
2300 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2301 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002302 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002303
2304 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002305 i915_disable_pipestat(dev_priv, pipe,
2306 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002307 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002308 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002309 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002310 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002311 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002312 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002313 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2314}
2315
Chris Wilson893eead2010-10-27 14:44:35 +01002316static u32
2317ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002318{
Chris Wilson893eead2010-10-27 14:44:35 +01002319 return list_entry(ring->request_list.prev,
2320 struct drm_i915_gem_request, list)->seqno;
2321}
2322
Chris Wilson9107e9d2013-06-10 11:20:20 +01002323static bool
2324ring_idle(struct intel_ring_buffer *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002325{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002326 return (list_empty(&ring->request_list) ||
2327 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04002328}
2329
Chris Wilson6274f212013-06-10 11:20:21 +01002330static struct intel_ring_buffer *
2331semaphore_waits_for(struct intel_ring_buffer *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002332{
2333 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson6274f212013-06-10 11:20:21 +01002334 u32 cmd, ipehr, acthd, acthd_min;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002335
2336 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2337 if ((ipehr & ~(0x3 << 16)) !=
2338 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
Chris Wilson6274f212013-06-10 11:20:21 +01002339 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002340
2341 /* ACTHD is likely pointing to the dword after the actual command,
2342 * so scan backwards until we find the MBOX.
2343 */
Chris Wilson6274f212013-06-10 11:20:21 +01002344 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002345 acthd_min = max((int)acthd - 3 * 4, 0);
2346 do {
2347 cmd = ioread32(ring->virtual_start + acthd);
2348 if (cmd == ipehr)
2349 break;
2350
2351 acthd -= 4;
2352 if (acthd < acthd_min)
Chris Wilson6274f212013-06-10 11:20:21 +01002353 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002354 } while (1);
2355
Chris Wilson6274f212013-06-10 11:20:21 +01002356 *seqno = ioread32(ring->virtual_start+acthd+4)+1;
2357 return &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
Chris Wilsona24a11e2013-03-14 17:52:05 +02002358}
2359
Chris Wilson6274f212013-06-10 11:20:21 +01002360static int semaphore_passed(struct intel_ring_buffer *ring)
2361{
2362 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2363 struct intel_ring_buffer *signaller;
2364 u32 seqno, ctl;
2365
2366 ring->hangcheck.deadlock = true;
2367
2368 signaller = semaphore_waits_for(ring, &seqno);
2369 if (signaller == NULL || signaller->hangcheck.deadlock)
2370 return -1;
2371
2372 /* cursory check for an unkickable deadlock */
2373 ctl = I915_READ_CTL(signaller);
2374 if (ctl & RING_WAIT_SEMAPHORE && semaphore_passed(signaller) < 0)
2375 return -1;
2376
2377 return i915_seqno_passed(signaller->get_seqno(signaller, false), seqno);
2378}
2379
2380static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2381{
2382 struct intel_ring_buffer *ring;
2383 int i;
2384
2385 for_each_ring(ring, dev_priv, i)
2386 ring->hangcheck.deadlock = false;
2387}
2388
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002389static enum intel_ring_hangcheck_action
2390ring_stuck(struct intel_ring_buffer *ring, u32 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002391{
2392 struct drm_device *dev = ring->dev;
2393 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002394 u32 tmp;
2395
Chris Wilson6274f212013-06-10 11:20:21 +01002396 if (ring->hangcheck.acthd != acthd)
2397 return active;
2398
Chris Wilson9107e9d2013-06-10 11:20:20 +01002399 if (IS_GEN2(dev))
Chris Wilson6274f212013-06-10 11:20:21 +01002400 return hung;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002401
2402 /* Is the chip hanging on a WAIT_FOR_EVENT?
2403 * If so we can simply poke the RB_WAIT bit
2404 * and break the hang. This should work on
2405 * all but the second generation chipsets.
2406 */
2407 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002408 if (tmp & RING_WAIT) {
2409 DRM_ERROR("Kicking stuck wait on %s\n",
2410 ring->name);
2411 I915_WRITE_CTL(ring, tmp);
Chris Wilson6274f212013-06-10 11:20:21 +01002412 return kick;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002413 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002414
Chris Wilson6274f212013-06-10 11:20:21 +01002415 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2416 switch (semaphore_passed(ring)) {
2417 default:
2418 return hung;
2419 case 1:
2420 DRM_ERROR("Kicking stuck semaphore on %s\n",
2421 ring->name);
2422 I915_WRITE_CTL(ring, tmp);
2423 return kick;
2424 case 0:
2425 return wait;
2426 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002427 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002428
Chris Wilson6274f212013-06-10 11:20:21 +01002429 return hung;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002430}
2431
Ben Gamarif65d9422009-09-14 17:48:44 -04002432/**
2433 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002434 * batchbuffers in a long time. We keep track per ring seqno progress and
2435 * if there are no progress, hangcheck score for that ring is increased.
2436 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2437 * we kick the ring. If we see no progress on three subsequent calls
2438 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002439 */
2440void i915_hangcheck_elapsed(unsigned long data)
2441{
2442 struct drm_device *dev = (struct drm_device *)data;
2443 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002444 struct intel_ring_buffer *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002445 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002446 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002447 bool stuck[I915_NUM_RINGS] = { 0 };
2448#define BUSY 1
2449#define KICK 5
2450#define HUNG 20
2451#define FIRE 30
Chris Wilson893eead2010-10-27 14:44:35 +01002452
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002453 if (!i915_enable_hangcheck)
2454 return;
2455
Chris Wilsonb4519512012-05-11 14:29:30 +01002456 for_each_ring(ring, dev_priv, i) {
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002457 u32 seqno, acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002458 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002459
Chris Wilson6274f212013-06-10 11:20:21 +01002460 semaphore_clear_deadlocks(dev_priv);
2461
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002462 seqno = ring->get_seqno(ring, false);
2463 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002464
Chris Wilson9107e9d2013-06-10 11:20:20 +01002465 if (ring->hangcheck.seqno == seqno) {
2466 if (ring_idle(ring, seqno)) {
2467 if (waitqueue_active(&ring->irq_queue)) {
2468 /* Issue a wake-up to catch stuck h/w. */
2469 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2470 ring->name);
2471 wake_up_all(&ring->irq_queue);
2472 ring->hangcheck.score += HUNG;
2473 } else
2474 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002475 } else {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002476 int score;
2477
Chris Wilson6274f212013-06-10 11:20:21 +01002478 /* We always increment the hangcheck score
2479 * if the ring is busy and still processing
2480 * the same request, so that no single request
2481 * can run indefinitely (such as a chain of
2482 * batches). The only time we do not increment
2483 * the hangcheck score on this ring, if this
2484 * ring is in a legitimate wait for another
2485 * ring. In that case the waiting ring is a
2486 * victim and we want to be sure we catch the
2487 * right culprit. Then every time we do kick
2488 * the ring, add a small increment to the
2489 * score so that we can catch a batch that is
2490 * being repeatedly kicked and so responsible
2491 * for stalling the machine.
2492 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002493 ring->hangcheck.action = ring_stuck(ring,
2494 acthd);
2495
2496 switch (ring->hangcheck.action) {
Chris Wilson6274f212013-06-10 11:20:21 +01002497 case wait:
2498 score = 0;
2499 break;
2500 case active:
Chris Wilson9107e9d2013-06-10 11:20:20 +01002501 score = BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01002502 break;
2503 case kick:
2504 score = KICK;
2505 break;
2506 case hung:
2507 score = HUNG;
2508 stuck[i] = true;
2509 break;
2510 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002511 ring->hangcheck.score += score;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002512 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002513 } else {
2514 /* Gradually reduce the count so that we catch DoS
2515 * attempts across multiple batches.
2516 */
2517 if (ring->hangcheck.score > 0)
2518 ring->hangcheck.score--;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002519 }
2520
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002521 ring->hangcheck.seqno = seqno;
2522 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002523 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01002524 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002525
Mika Kuoppala92cab732013-05-24 17:16:07 +03002526 for_each_ring(ring, dev_priv, i) {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002527 if (ring->hangcheck.score > FIRE) {
Ben Widawskyacd78c12013-06-13 21:33:33 -07002528 DRM_ERROR("%s on %s\n",
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002529 stuck[i] ? "stuck" : "no progress",
Chris Wilsona43adf02013-06-10 11:20:22 +01002530 ring->name);
2531 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03002532 }
2533 }
2534
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002535 if (rings_hung)
2536 return i915_handle_error(dev, true);
Ben Gamarif65d9422009-09-14 17:48:44 -04002537
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002538 if (busy_count)
2539 /* Reset timer case chip hangs without another request
2540 * being added */
2541 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
2542 round_jiffies_up(jiffies +
2543 DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002544}
2545
Paulo Zanoni91738a92013-06-05 14:21:51 -03002546static void ibx_irq_preinstall(struct drm_device *dev)
2547{
2548 struct drm_i915_private *dev_priv = dev->dev_private;
2549
2550 if (HAS_PCH_NOP(dev))
2551 return;
2552
2553 /* south display irq */
2554 I915_WRITE(SDEIMR, 0xffffffff);
2555 /*
2556 * SDEIER is also touched by the interrupt handler to work around missed
2557 * PCH interrupts. Hence we can't update it after the interrupt handler
2558 * is enabled - instead we unconditionally enable all PCH interrupt
2559 * sources here, but then only unmask them as needed with SDEIMR.
2560 */
2561 I915_WRITE(SDEIER, 0xffffffff);
2562 POSTING_READ(SDEIER);
2563}
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565/* drm_dma.h hooks
2566*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002567static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002568{
2569 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2570
Jesse Barnes46979952011-04-07 13:53:55 -07002571 atomic_set(&dev_priv->irq_received, 0);
2572
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002573 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002574
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002575 /* XXX hotplug from PCH */
2576
2577 I915_WRITE(DEIMR, 0xffffffff);
2578 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002579 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002580
2581 /* and GT */
2582 I915_WRITE(GTIMR, 0xffffffff);
2583 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002584 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002585
Paulo Zanoni91738a92013-06-05 14:21:51 -03002586 ibx_irq_preinstall(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07002587}
2588
2589static void ivybridge_irq_preinstall(struct drm_device *dev)
2590{
2591 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2592
2593 atomic_set(&dev_priv->irq_received, 0);
2594
2595 I915_WRITE(HWSTAM, 0xeffe);
2596
2597 /* XXX hotplug from PCH */
2598
2599 I915_WRITE(DEIMR, 0xffffffff);
2600 I915_WRITE(DEIER, 0x0);
2601 POSTING_READ(DEIER);
2602
2603 /* and GT */
2604 I915_WRITE(GTIMR, 0xffffffff);
2605 I915_WRITE(GTIER, 0x0);
2606 POSTING_READ(GTIER);
2607
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002608 /* Power management */
2609 I915_WRITE(GEN6_PMIMR, 0xffffffff);
2610 I915_WRITE(GEN6_PMIER, 0x0);
2611 POSTING_READ(GEN6_PMIER);
2612
Paulo Zanoni91738a92013-06-05 14:21:51 -03002613 ibx_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002614}
2615
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002616static void valleyview_irq_preinstall(struct drm_device *dev)
2617{
2618 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2619 int pipe;
2620
2621 atomic_set(&dev_priv->irq_received, 0);
2622
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002623 /* VLV magic */
2624 I915_WRITE(VLV_IMR, 0);
2625 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2626 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2627 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2628
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002629 /* and GT */
2630 I915_WRITE(GTIIR, I915_READ(GTIIR));
2631 I915_WRITE(GTIIR, I915_READ(GTIIR));
2632 I915_WRITE(GTIMR, 0xffffffff);
2633 I915_WRITE(GTIER, 0x0);
2634 POSTING_READ(GTIER);
2635
2636 I915_WRITE(DPINVGTT, 0xff);
2637
2638 I915_WRITE(PORT_HOTPLUG_EN, 0);
2639 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2640 for_each_pipe(pipe)
2641 I915_WRITE(PIPESTAT(pipe), 0xffff);
2642 I915_WRITE(VLV_IIR, 0xffffffff);
2643 I915_WRITE(VLV_IMR, 0xffffffff);
2644 I915_WRITE(VLV_IER, 0x0);
2645 POSTING_READ(VLV_IER);
2646}
2647
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002648static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002649{
2650 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002651 struct drm_mode_config *mode_config = &dev->mode_config;
2652 struct intel_encoder *intel_encoder;
2653 u32 mask = ~I915_READ(SDEIMR);
2654 u32 hotplug;
Keith Packard7fe0b972011-09-19 13:31:02 -07002655
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002656 if (HAS_PCH_IBX(dev)) {
Egbert Eich995e6b32013-04-16 13:36:56 +02002657 mask &= ~SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002658 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002659 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2660 mask |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002661 } else {
Egbert Eich995e6b32013-04-16 13:36:56 +02002662 mask &= ~SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002663 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002664 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
2665 mask |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002666 }
2667
2668 I915_WRITE(SDEIMR, ~mask);
2669
2670 /*
2671 * Enable digital hotplug on the PCH, and configure the DP short pulse
2672 * duration to 2ms (which is the minimum in the Display Port spec)
2673 *
2674 * This register is the same on all known PCH chips.
2675 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002676 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2677 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2678 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2679 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2680 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2681 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2682}
2683
Paulo Zanonid46da432013-02-08 17:35:15 -02002684static void ibx_irq_postinstall(struct drm_device *dev)
2685{
2686 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002687 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002688
Daniel Vetter692a04c2013-05-29 21:43:05 +02002689 if (HAS_PCH_NOP(dev))
2690 return;
2691
Paulo Zanoni86642812013-04-12 17:57:57 -03002692 if (HAS_PCH_IBX(dev)) {
2693 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002694 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002695 } else {
2696 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2697
2698 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2699 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002700
Paulo Zanonid46da432013-02-08 17:35:15 -02002701 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2702 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002703}
2704
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002705static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002706{
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002707 unsigned long irqflags;
2708
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002709 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2710 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002711 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002712 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002713 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002714 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Ben Widawskycc609d52013-05-28 19:22:29 -07002715 u32 gt_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002716
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002717 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002718
2719 /* should always can generate irq */
2720 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002721 I915_WRITE(DEIMR, dev_priv->irq_mask);
Daniel Vetter6005ce42013-06-27 13:44:59 +02002722 I915_WRITE(DEIER, display_mask |
2723 DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002724 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002725
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002726 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002727
2728 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002729 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002730
Ben Widawskycc609d52013-05-28 19:22:29 -07002731 gt_irqs = GT_RENDER_USER_INTERRUPT;
2732
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002733 if (IS_GEN6(dev))
Ben Widawskycc609d52013-05-28 19:22:29 -07002734 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002735 else
Ben Widawskycc609d52013-05-28 19:22:29 -07002736 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
2737 ILK_BSD_USER_INTERRUPT;
2738
2739 I915_WRITE(GTIER, gt_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002740 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002741
Paulo Zanonid46da432013-02-08 17:35:15 -02002742 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002743
Jesse Barnesf97108d2010-01-29 11:27:07 -08002744 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02002745 /* Enable PCU event interrupts
2746 *
2747 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002748 * setup is guaranteed to run in single-threaded context. But we
2749 * need it to make the assert_spin_locked happy. */
2750 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002751 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002752 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002753 }
2754
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002755 return 0;
2756}
2757
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002758static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002759{
2760 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2761 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002762 u32 display_mask =
2763 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2764 DE_PLANEC_FLIP_DONE_IVB |
2765 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002766 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002767 DE_AUX_CHANNEL_A_IVB |
2768 DE_ERR_INT_IVB;
Ben Widawsky12638c52013-05-28 19:22:31 -07002769 u32 pm_irqs = GEN6_PM_RPS_EVENTS;
Ben Widawskycc609d52013-05-28 19:22:29 -07002770 u32 gt_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002771
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002772 dev_priv->irq_mask = ~display_mask;
2773
2774 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002775 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002776 I915_WRITE(DEIIR, I915_READ(DEIIR));
2777 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002778 I915_WRITE(DEIER,
2779 display_mask |
2780 DE_PIPEC_VBLANK_IVB |
2781 DE_PIPEB_VBLANK_IVB |
2782 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002783 POSTING_READ(DEIER);
2784
Ben Widawskycc609d52013-05-28 19:22:29 -07002785 dev_priv->gt_irq_mask = ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002786
2787 I915_WRITE(GTIIR, I915_READ(GTIIR));
2788 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2789
Ben Widawskycc609d52013-05-28 19:22:29 -07002790 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2791 GT_BLT_USER_INTERRUPT | GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2792 I915_WRITE(GTIER, gt_irqs);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002793 POSTING_READ(GTIER);
2794
Ben Widawsky12638c52013-05-28 19:22:31 -07002795 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
2796 if (HAS_VEBOX(dev))
2797 pm_irqs |= PM_VEBOX_USER_INTERRUPT |
2798 PM_VEBOX_CS_ERROR_INTERRUPT;
2799
2800 /* Our enable/disable rps functions may touch these registers so
2801 * make sure to set a known state for only the non-RPS bits.
2802 * The RMW is extra paranoia since this should be called after being set
2803 * to a known state in preinstall.
2804 * */
2805 I915_WRITE(GEN6_PMIMR,
2806 (I915_READ(GEN6_PMIMR) | ~GEN6_PM_RPS_EVENTS) & ~pm_irqs);
2807 I915_WRITE(GEN6_PMIER,
2808 (I915_READ(GEN6_PMIER) & GEN6_PM_RPS_EVENTS) | pm_irqs);
2809 POSTING_READ(GEN6_PMIER);
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002810
Paulo Zanonid46da432013-02-08 17:35:15 -02002811 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002812
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002813 return 0;
2814}
2815
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002816static int valleyview_irq_postinstall(struct drm_device *dev)
2817{
2818 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskycc609d52013-05-28 19:22:29 -07002819 u32 gt_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002820 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002821 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002822
2823 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002824 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2825 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2826 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002827 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2828
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002829 /*
2830 *Leave vblank interrupts masked initially. enable/disable will
2831 * toggle them based on usage.
2832 */
2833 dev_priv->irq_mask = (~enable_mask) |
2834 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2835 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002836
Daniel Vetter20afbda2012-12-11 14:05:07 +01002837 I915_WRITE(PORT_HOTPLUG_EN, 0);
2838 POSTING_READ(PORT_HOTPLUG_EN);
2839
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002840 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2841 I915_WRITE(VLV_IER, enable_mask);
2842 I915_WRITE(VLV_IIR, 0xffffffff);
2843 I915_WRITE(PIPESTAT(0), 0xffff);
2844 I915_WRITE(PIPESTAT(1), 0xffff);
2845 POSTING_READ(VLV_IER);
2846
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002847 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002848 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002849 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
2850
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002851 I915_WRITE(VLV_IIR, 0xffffffff);
2852 I915_WRITE(VLV_IIR, 0xffffffff);
2853
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002854 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002855 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002856
Ben Widawskycc609d52013-05-28 19:22:29 -07002857 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2858 GT_BLT_USER_INTERRUPT;
2859 I915_WRITE(GTIER, gt_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002860 POSTING_READ(GTIER);
2861
2862 /* ack & enable invalid PTE error interrupts */
2863#if 0 /* FIXME: add support to irq handler for checking these bits */
2864 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2865 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2866#endif
2867
2868 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002869
2870 return 0;
2871}
2872
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002873static void valleyview_irq_uninstall(struct drm_device *dev)
2874{
2875 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2876 int pipe;
2877
2878 if (!dev_priv)
2879 return;
2880
Egbert Eichac4c16c2013-04-16 13:36:58 +02002881 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2882
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002883 for_each_pipe(pipe)
2884 I915_WRITE(PIPESTAT(pipe), 0xffff);
2885
2886 I915_WRITE(HWSTAM, 0xffffffff);
2887 I915_WRITE(PORT_HOTPLUG_EN, 0);
2888 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2889 for_each_pipe(pipe)
2890 I915_WRITE(PIPESTAT(pipe), 0xffff);
2891 I915_WRITE(VLV_IIR, 0xffffffff);
2892 I915_WRITE(VLV_IMR, 0xffffffff);
2893 I915_WRITE(VLV_IER, 0x0);
2894 POSTING_READ(VLV_IER);
2895}
2896
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002897static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002898{
2899 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002900
2901 if (!dev_priv)
2902 return;
2903
Egbert Eichac4c16c2013-04-16 13:36:58 +02002904 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2905
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002906 I915_WRITE(HWSTAM, 0xffffffff);
2907
2908 I915_WRITE(DEIMR, 0xffffffff);
2909 I915_WRITE(DEIER, 0x0);
2910 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002911 if (IS_GEN7(dev))
2912 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002913
2914 I915_WRITE(GTIMR, 0xffffffff);
2915 I915_WRITE(GTIER, 0x0);
2916 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002917
Ben Widawskyab5c6082013-04-05 13:12:41 -07002918 if (HAS_PCH_NOP(dev))
2919 return;
2920
Keith Packard192aac1f2011-09-20 10:12:44 -07002921 I915_WRITE(SDEIMR, 0xffffffff);
2922 I915_WRITE(SDEIER, 0x0);
2923 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002924 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2925 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002926}
2927
Chris Wilsonc2798b12012-04-22 21:13:57 +01002928static void i8xx_irq_preinstall(struct drm_device * dev)
2929{
2930 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2931 int pipe;
2932
2933 atomic_set(&dev_priv->irq_received, 0);
2934
2935 for_each_pipe(pipe)
2936 I915_WRITE(PIPESTAT(pipe), 0);
2937 I915_WRITE16(IMR, 0xffff);
2938 I915_WRITE16(IER, 0x0);
2939 POSTING_READ16(IER);
2940}
2941
2942static int i8xx_irq_postinstall(struct drm_device *dev)
2943{
2944 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2945
Chris Wilsonc2798b12012-04-22 21:13:57 +01002946 I915_WRITE16(EMR,
2947 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2948
2949 /* Unmask the interrupts that we always want on. */
2950 dev_priv->irq_mask =
2951 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2952 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2953 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2954 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2955 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2956 I915_WRITE16(IMR, dev_priv->irq_mask);
2957
2958 I915_WRITE16(IER,
2959 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2960 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2961 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2962 I915_USER_INTERRUPT);
2963 POSTING_READ16(IER);
2964
2965 return 0;
2966}
2967
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002968/*
2969 * Returns true when a page flip has completed.
2970 */
2971static bool i8xx_handle_vblank(struct drm_device *dev,
2972 int pipe, u16 iir)
2973{
2974 drm_i915_private_t *dev_priv = dev->dev_private;
2975 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
2976
2977 if (!drm_handle_vblank(dev, pipe))
2978 return false;
2979
2980 if ((iir & flip_pending) == 0)
2981 return false;
2982
2983 intel_prepare_page_flip(dev, pipe);
2984
2985 /* We detect FlipDone by looking for the change in PendingFlip from '1'
2986 * to '0' on the following vblank, i.e. IIR has the Pendingflip
2987 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
2988 * the flip is completed (no longer pending). Since this doesn't raise
2989 * an interrupt per se, we watch for the change at vblank.
2990 */
2991 if (I915_READ16(ISR) & flip_pending)
2992 return false;
2993
2994 intel_finish_page_flip(dev, pipe);
2995
2996 return true;
2997}
2998
Daniel Vetterff1f5252012-10-02 15:10:55 +02002999static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003000{
3001 struct drm_device *dev = (struct drm_device *) arg;
3002 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003003 u16 iir, new_iir;
3004 u32 pipe_stats[2];
3005 unsigned long irqflags;
3006 int irq_received;
3007 int pipe;
3008 u16 flip_mask =
3009 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3010 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3011
3012 atomic_inc(&dev_priv->irq_received);
3013
3014 iir = I915_READ16(IIR);
3015 if (iir == 0)
3016 return IRQ_NONE;
3017
3018 while (iir & ~flip_mask) {
3019 /* Can't rely on pipestat interrupt bit in iir as it might
3020 * have been cleared after the pipestat interrupt was received.
3021 * It doesn't set the bit in iir again, but it still produces
3022 * interrupts (for non-MSI).
3023 */
3024 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3025 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3026 i915_handle_error(dev, false);
3027
3028 for_each_pipe(pipe) {
3029 int reg = PIPESTAT(pipe);
3030 pipe_stats[pipe] = I915_READ(reg);
3031
3032 /*
3033 * Clear the PIPE*STAT regs before the IIR
3034 */
3035 if (pipe_stats[pipe] & 0x8000ffff) {
3036 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3037 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3038 pipe_name(pipe));
3039 I915_WRITE(reg, pipe_stats[pipe]);
3040 irq_received = 1;
3041 }
3042 }
3043 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3044
3045 I915_WRITE16(IIR, iir & ~flip_mask);
3046 new_iir = I915_READ16(IIR); /* Flush posted writes */
3047
Daniel Vetterd05c6172012-04-26 23:28:09 +02003048 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003049
3050 if (iir & I915_USER_INTERRUPT)
3051 notify_ring(dev, &dev_priv->ring[RCS]);
3052
3053 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003054 i8xx_handle_vblank(dev, 0, iir))
3055 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003056
3057 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003058 i8xx_handle_vblank(dev, 1, iir))
3059 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003060
3061 iir = new_iir;
3062 }
3063
3064 return IRQ_HANDLED;
3065}
3066
3067static void i8xx_irq_uninstall(struct drm_device * dev)
3068{
3069 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3070 int pipe;
3071
Chris Wilsonc2798b12012-04-22 21:13:57 +01003072 for_each_pipe(pipe) {
3073 /* Clear enable bits; then clear status bits */
3074 I915_WRITE(PIPESTAT(pipe), 0);
3075 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3076 }
3077 I915_WRITE16(IMR, 0xffff);
3078 I915_WRITE16(IER, 0x0);
3079 I915_WRITE16(IIR, I915_READ16(IIR));
3080}
3081
Chris Wilsona266c7d2012-04-24 22:59:44 +01003082static void i915_irq_preinstall(struct drm_device * dev)
3083{
3084 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3085 int pipe;
3086
3087 atomic_set(&dev_priv->irq_received, 0);
3088
3089 if (I915_HAS_HOTPLUG(dev)) {
3090 I915_WRITE(PORT_HOTPLUG_EN, 0);
3091 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3092 }
3093
Chris Wilson00d98eb2012-04-24 22:59:48 +01003094 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003095 for_each_pipe(pipe)
3096 I915_WRITE(PIPESTAT(pipe), 0);
3097 I915_WRITE(IMR, 0xffffffff);
3098 I915_WRITE(IER, 0x0);
3099 POSTING_READ(IER);
3100}
3101
3102static int i915_irq_postinstall(struct drm_device *dev)
3103{
3104 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003105 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003106
Chris Wilson38bde182012-04-24 22:59:50 +01003107 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3108
3109 /* Unmask the interrupts that we always want on. */
3110 dev_priv->irq_mask =
3111 ~(I915_ASLE_INTERRUPT |
3112 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3113 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3114 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3115 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3116 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3117
3118 enable_mask =
3119 I915_ASLE_INTERRUPT |
3120 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3121 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3122 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3123 I915_USER_INTERRUPT;
3124
Chris Wilsona266c7d2012-04-24 22:59:44 +01003125 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01003126 I915_WRITE(PORT_HOTPLUG_EN, 0);
3127 POSTING_READ(PORT_HOTPLUG_EN);
3128
Chris Wilsona266c7d2012-04-24 22:59:44 +01003129 /* Enable in IER... */
3130 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3131 /* and unmask in IMR */
3132 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3133 }
3134
Chris Wilsona266c7d2012-04-24 22:59:44 +01003135 I915_WRITE(IMR, dev_priv->irq_mask);
3136 I915_WRITE(IER, enable_mask);
3137 POSTING_READ(IER);
3138
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003139 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003140
3141 return 0;
3142}
3143
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003144/*
3145 * Returns true when a page flip has completed.
3146 */
3147static bool i915_handle_vblank(struct drm_device *dev,
3148 int plane, int pipe, u32 iir)
3149{
3150 drm_i915_private_t *dev_priv = dev->dev_private;
3151 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3152
3153 if (!drm_handle_vblank(dev, pipe))
3154 return false;
3155
3156 if ((iir & flip_pending) == 0)
3157 return false;
3158
3159 intel_prepare_page_flip(dev, plane);
3160
3161 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3162 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3163 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3164 * the flip is completed (no longer pending). Since this doesn't raise
3165 * an interrupt per se, we watch for the change at vblank.
3166 */
3167 if (I915_READ(ISR) & flip_pending)
3168 return false;
3169
3170 intel_finish_page_flip(dev, pipe);
3171
3172 return true;
3173}
3174
Daniel Vetterff1f5252012-10-02 15:10:55 +02003175static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003176{
3177 struct drm_device *dev = (struct drm_device *) arg;
3178 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003179 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003180 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003181 u32 flip_mask =
3182 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3183 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003184 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003185
3186 atomic_inc(&dev_priv->irq_received);
3187
3188 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003189 do {
3190 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003191 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003192
3193 /* Can't rely on pipestat interrupt bit in iir as it might
3194 * have been cleared after the pipestat interrupt was received.
3195 * It doesn't set the bit in iir again, but it still produces
3196 * interrupts (for non-MSI).
3197 */
3198 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3199 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3200 i915_handle_error(dev, false);
3201
3202 for_each_pipe(pipe) {
3203 int reg = PIPESTAT(pipe);
3204 pipe_stats[pipe] = I915_READ(reg);
3205
Chris Wilson38bde182012-04-24 22:59:50 +01003206 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003207 if (pipe_stats[pipe] & 0x8000ffff) {
3208 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3209 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3210 pipe_name(pipe));
3211 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003212 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003213 }
3214 }
3215 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3216
3217 if (!irq_received)
3218 break;
3219
Chris Wilsona266c7d2012-04-24 22:59:44 +01003220 /* Consume port. Then clear IIR or we'll miss events */
3221 if ((I915_HAS_HOTPLUG(dev)) &&
3222 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3223 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003224 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003225
3226 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3227 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003228 if (hotplug_trigger) {
Daniel Vetter10a504d2013-06-27 17:52:12 +02003229 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
Egbert Eichb543fb02013-04-16 13:36:54 +02003230 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003231 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003232 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003233 }
3234
Chris Wilson38bde182012-04-24 22:59:50 +01003235 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003236 new_iir = I915_READ(IIR); /* Flush posted writes */
3237
Chris Wilsona266c7d2012-04-24 22:59:44 +01003238 if (iir & I915_USER_INTERRUPT)
3239 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003240
Chris Wilsona266c7d2012-04-24 22:59:44 +01003241 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003242 int plane = pipe;
3243 if (IS_MOBILE(dev))
3244 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003245
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003246 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3247 i915_handle_vblank(dev, plane, pipe, iir))
3248 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003249
3250 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3251 blc_event = true;
3252 }
3253
Chris Wilsona266c7d2012-04-24 22:59:44 +01003254 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3255 intel_opregion_asle_intr(dev);
3256
3257 /* With MSI, interrupts are only generated when iir
3258 * transitions from zero to nonzero. If another bit got
3259 * set while we were handling the existing iir bits, then
3260 * we would never get another interrupt.
3261 *
3262 * This is fine on non-MSI as well, as if we hit this path
3263 * we avoid exiting the interrupt handler only to generate
3264 * another one.
3265 *
3266 * Note that for MSI this could cause a stray interrupt report
3267 * if an interrupt landed in the time between writing IIR and
3268 * the posting read. This should be rare enough to never
3269 * trigger the 99% of 100,000 interrupts test for disabling
3270 * stray interrupts.
3271 */
Chris Wilson38bde182012-04-24 22:59:50 +01003272 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003273 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003274 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003275
Daniel Vetterd05c6172012-04-26 23:28:09 +02003276 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003277
Chris Wilsona266c7d2012-04-24 22:59:44 +01003278 return ret;
3279}
3280
3281static void i915_irq_uninstall(struct drm_device * dev)
3282{
3283 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3284 int pipe;
3285
Egbert Eichac4c16c2013-04-16 13:36:58 +02003286 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3287
Chris Wilsona266c7d2012-04-24 22:59:44 +01003288 if (I915_HAS_HOTPLUG(dev)) {
3289 I915_WRITE(PORT_HOTPLUG_EN, 0);
3290 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3291 }
3292
Chris Wilson00d98eb2012-04-24 22:59:48 +01003293 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003294 for_each_pipe(pipe) {
3295 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003296 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003297 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3298 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003299 I915_WRITE(IMR, 0xffffffff);
3300 I915_WRITE(IER, 0x0);
3301
Chris Wilsona266c7d2012-04-24 22:59:44 +01003302 I915_WRITE(IIR, I915_READ(IIR));
3303}
3304
3305static void i965_irq_preinstall(struct drm_device * dev)
3306{
3307 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3308 int pipe;
3309
3310 atomic_set(&dev_priv->irq_received, 0);
3311
Chris Wilsonadca4732012-05-11 18:01:31 +01003312 I915_WRITE(PORT_HOTPLUG_EN, 0);
3313 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003314
3315 I915_WRITE(HWSTAM, 0xeffe);
3316 for_each_pipe(pipe)
3317 I915_WRITE(PIPESTAT(pipe), 0);
3318 I915_WRITE(IMR, 0xffffffff);
3319 I915_WRITE(IER, 0x0);
3320 POSTING_READ(IER);
3321}
3322
3323static int i965_irq_postinstall(struct drm_device *dev)
3324{
3325 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003326 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003327 u32 error_mask;
3328
Chris Wilsona266c7d2012-04-24 22:59:44 +01003329 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003330 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003331 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003332 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3333 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3334 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3335 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3336 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3337
3338 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003339 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3340 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003341 enable_mask |= I915_USER_INTERRUPT;
3342
3343 if (IS_G4X(dev))
3344 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003345
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003346 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003347
Chris Wilsona266c7d2012-04-24 22:59:44 +01003348 /*
3349 * Enable some error detection, note the instruction error mask
3350 * bit is reserved, so we leave it masked.
3351 */
3352 if (IS_G4X(dev)) {
3353 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3354 GM45_ERROR_MEM_PRIV |
3355 GM45_ERROR_CP_PRIV |
3356 I915_ERROR_MEMORY_REFRESH);
3357 } else {
3358 error_mask = ~(I915_ERROR_PAGE_TABLE |
3359 I915_ERROR_MEMORY_REFRESH);
3360 }
3361 I915_WRITE(EMR, error_mask);
3362
3363 I915_WRITE(IMR, dev_priv->irq_mask);
3364 I915_WRITE(IER, enable_mask);
3365 POSTING_READ(IER);
3366
Daniel Vetter20afbda2012-12-11 14:05:07 +01003367 I915_WRITE(PORT_HOTPLUG_EN, 0);
3368 POSTING_READ(PORT_HOTPLUG_EN);
3369
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003370 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003371
3372 return 0;
3373}
3374
Egbert Eichbac56d52013-02-25 12:06:51 -05003375static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003376{
3377 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003378 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003379 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003380 u32 hotplug_en;
3381
Egbert Eichbac56d52013-02-25 12:06:51 -05003382 if (I915_HAS_HOTPLUG(dev)) {
3383 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3384 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3385 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003386 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003387 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3388 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3389 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003390 /* Programming the CRT detection parameters tends
3391 to generate a spurious hotplug event about three
3392 seconds later. So just do it once.
3393 */
3394 if (IS_G4X(dev))
3395 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003396 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003397 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003398
Egbert Eichbac56d52013-02-25 12:06:51 -05003399 /* Ignore TV since it's buggy */
3400 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3401 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003402}
3403
Daniel Vetterff1f5252012-10-02 15:10:55 +02003404static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003405{
3406 struct drm_device *dev = (struct drm_device *) arg;
3407 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003408 u32 iir, new_iir;
3409 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003410 unsigned long irqflags;
3411 int irq_received;
3412 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003413 u32 flip_mask =
3414 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3415 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003416
3417 atomic_inc(&dev_priv->irq_received);
3418
3419 iir = I915_READ(IIR);
3420
Chris Wilsona266c7d2012-04-24 22:59:44 +01003421 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003422 bool blc_event = false;
3423
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003424 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003425
3426 /* Can't rely on pipestat interrupt bit in iir as it might
3427 * have been cleared after the pipestat interrupt was received.
3428 * It doesn't set the bit in iir again, but it still produces
3429 * interrupts (for non-MSI).
3430 */
3431 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3432 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3433 i915_handle_error(dev, false);
3434
3435 for_each_pipe(pipe) {
3436 int reg = PIPESTAT(pipe);
3437 pipe_stats[pipe] = I915_READ(reg);
3438
3439 /*
3440 * Clear the PIPE*STAT regs before the IIR
3441 */
3442 if (pipe_stats[pipe] & 0x8000ffff) {
3443 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3444 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3445 pipe_name(pipe));
3446 I915_WRITE(reg, pipe_stats[pipe]);
3447 irq_received = 1;
3448 }
3449 }
3450 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3451
3452 if (!irq_received)
3453 break;
3454
3455 ret = IRQ_HANDLED;
3456
3457 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003458 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003459 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003460 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3461 HOTPLUG_INT_STATUS_G4X :
Daniel Vetter4f7fd702013-06-24 21:33:28 +02003462 HOTPLUG_INT_STATUS_I915);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003463
3464 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3465 hotplug_status);
Egbert Eichb543fb02013-04-16 13:36:54 +02003466 if (hotplug_trigger) {
Daniel Vetter10a504d2013-06-27 17:52:12 +02003467 intel_hpd_irq_handler(dev, hotplug_trigger,
3468 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i915);
Egbert Eichb543fb02013-04-16 13:36:54 +02003469 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003470 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3471 I915_READ(PORT_HOTPLUG_STAT);
3472 }
3473
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003474 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003475 new_iir = I915_READ(IIR); /* Flush posted writes */
3476
Chris Wilsona266c7d2012-04-24 22:59:44 +01003477 if (iir & I915_USER_INTERRUPT)
3478 notify_ring(dev, &dev_priv->ring[RCS]);
3479 if (iir & I915_BSD_USER_INTERRUPT)
3480 notify_ring(dev, &dev_priv->ring[VCS]);
3481
Chris Wilsona266c7d2012-04-24 22:59:44 +01003482 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003483 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003484 i915_handle_vblank(dev, pipe, pipe, iir))
3485 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003486
3487 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3488 blc_event = true;
3489 }
3490
3491
3492 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3493 intel_opregion_asle_intr(dev);
3494
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003495 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3496 gmbus_irq_handler(dev);
3497
Chris Wilsona266c7d2012-04-24 22:59:44 +01003498 /* With MSI, interrupts are only generated when iir
3499 * transitions from zero to nonzero. If another bit got
3500 * set while we were handling the existing iir bits, then
3501 * we would never get another interrupt.
3502 *
3503 * This is fine on non-MSI as well, as if we hit this path
3504 * we avoid exiting the interrupt handler only to generate
3505 * another one.
3506 *
3507 * Note that for MSI this could cause a stray interrupt report
3508 * if an interrupt landed in the time between writing IIR and
3509 * the posting read. This should be rare enough to never
3510 * trigger the 99% of 100,000 interrupts test for disabling
3511 * stray interrupts.
3512 */
3513 iir = new_iir;
3514 }
3515
Daniel Vetterd05c6172012-04-26 23:28:09 +02003516 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003517
Chris Wilsona266c7d2012-04-24 22:59:44 +01003518 return ret;
3519}
3520
3521static void i965_irq_uninstall(struct drm_device * dev)
3522{
3523 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3524 int pipe;
3525
3526 if (!dev_priv)
3527 return;
3528
Egbert Eichac4c16c2013-04-16 13:36:58 +02003529 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3530
Chris Wilsonadca4732012-05-11 18:01:31 +01003531 I915_WRITE(PORT_HOTPLUG_EN, 0);
3532 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003533
3534 I915_WRITE(HWSTAM, 0xffffffff);
3535 for_each_pipe(pipe)
3536 I915_WRITE(PIPESTAT(pipe), 0);
3537 I915_WRITE(IMR, 0xffffffff);
3538 I915_WRITE(IER, 0x0);
3539
3540 for_each_pipe(pipe)
3541 I915_WRITE(PIPESTAT(pipe),
3542 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3543 I915_WRITE(IIR, I915_READ(IIR));
3544}
3545
Egbert Eichac4c16c2013-04-16 13:36:58 +02003546static void i915_reenable_hotplug_timer_func(unsigned long data)
3547{
3548 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3549 struct drm_device *dev = dev_priv->dev;
3550 struct drm_mode_config *mode_config = &dev->mode_config;
3551 unsigned long irqflags;
3552 int i;
3553
3554 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3555 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3556 struct drm_connector *connector;
3557
3558 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3559 continue;
3560
3561 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3562
3563 list_for_each_entry(connector, &mode_config->connector_list, head) {
3564 struct intel_connector *intel_connector = to_intel_connector(connector);
3565
3566 if (intel_connector->encoder->hpd_pin == i) {
3567 if (connector->polled != intel_connector->polled)
3568 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3569 drm_get_connector_name(connector));
3570 connector->polled = intel_connector->polled;
3571 if (!connector->polled)
3572 connector->polled = DRM_CONNECTOR_POLL_HPD;
3573 }
3574 }
3575 }
3576 if (dev_priv->display.hpd_irq_setup)
3577 dev_priv->display.hpd_irq_setup(dev);
3578 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3579}
3580
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003581void intel_irq_init(struct drm_device *dev)
3582{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003583 struct drm_i915_private *dev_priv = dev->dev_private;
3584
3585 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003586 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003587 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003588 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003589
Daniel Vetter99584db2012-11-14 17:14:04 +01003590 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3591 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003592 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003593 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3594 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003595
Tomas Janousek97a19a22012-12-08 13:48:13 +01003596 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003597
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003598 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3599 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003600 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003601 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3602 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3603 }
3604
Keith Packardc3613de2011-08-12 17:05:54 -07003605 if (drm_core_check_feature(dev, DRIVER_MODESET))
3606 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3607 else
3608 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003609 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3610
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003611 if (IS_VALLEYVIEW(dev)) {
3612 dev->driver->irq_handler = valleyview_irq_handler;
3613 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3614 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3615 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3616 dev->driver->enable_vblank = valleyview_enable_vblank;
3617 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003618 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003619 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Ben Widawsky7d991632013-05-28 19:22:25 -07003620 /* Share uninstall handlers with ILK/SNB */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003621 dev->driver->irq_handler = ivybridge_irq_handler;
Ben Widawsky7d991632013-05-28 19:22:25 -07003622 dev->driver->irq_preinstall = ivybridge_irq_preinstall;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003623 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3624 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3625 dev->driver->enable_vblank = ivybridge_enable_vblank;
3626 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003627 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003628 } else if (HAS_PCH_SPLIT(dev)) {
3629 dev->driver->irq_handler = ironlake_irq_handler;
3630 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3631 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3632 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3633 dev->driver->enable_vblank = ironlake_enable_vblank;
3634 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003635 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003636 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003637 if (INTEL_INFO(dev)->gen == 2) {
3638 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3639 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3640 dev->driver->irq_handler = i8xx_irq_handler;
3641 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003642 } else if (INTEL_INFO(dev)->gen == 3) {
3643 dev->driver->irq_preinstall = i915_irq_preinstall;
3644 dev->driver->irq_postinstall = i915_irq_postinstall;
3645 dev->driver->irq_uninstall = i915_irq_uninstall;
3646 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003647 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003648 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003649 dev->driver->irq_preinstall = i965_irq_preinstall;
3650 dev->driver->irq_postinstall = i965_irq_postinstall;
3651 dev->driver->irq_uninstall = i965_irq_uninstall;
3652 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003653 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003654 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003655 dev->driver->enable_vblank = i915_enable_vblank;
3656 dev->driver->disable_vblank = i915_disable_vblank;
3657 }
3658}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003659
3660void intel_hpd_init(struct drm_device *dev)
3661{
3662 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003663 struct drm_mode_config *mode_config = &dev->mode_config;
3664 struct drm_connector *connector;
3665 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003666
Egbert Eich821450c2013-04-16 13:36:55 +02003667 for (i = 1; i < HPD_NUM_PINS; i++) {
3668 dev_priv->hpd_stats[i].hpd_cnt = 0;
3669 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3670 }
3671 list_for_each_entry(connector, &mode_config->connector_list, head) {
3672 struct intel_connector *intel_connector = to_intel_connector(connector);
3673 connector->polled = intel_connector->polled;
3674 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3675 connector->polled = DRM_CONNECTOR_POLL_HPD;
3676 }
Daniel Vetter20afbda2012-12-11 14:05:07 +01003677 if (dev_priv->display.hpd_irq_setup)
3678 dev_priv->display.hpd_irq_setup(dev);
3679}