blob: a7c0a730a6e1d0167b77c4bd7c426aeec1013c0a [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
Daniel Vetterfee884e2013-07-04 23:35:21 +0200131 assert_spin_locked(&dev_priv->irq_lock);
132
Paulo Zanoni86642812013-04-12 17:57:57 -0300133 for_each_pipe(pipe) {
134 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
135
136 if (crtc->pch_fifo_underrun_disabled)
137 return false;
138 }
139
140 return true;
141}
142
143static void ironlake_set_fifo_underrun_reporting(struct drm_device *dev,
144 enum pipe pipe, bool enable)
145{
146 struct drm_i915_private *dev_priv = dev->dev_private;
147 uint32_t bit = (pipe == PIPE_A) ? DE_PIPEA_FIFO_UNDERRUN :
148 DE_PIPEB_FIFO_UNDERRUN;
149
150 if (enable)
151 ironlake_enable_display_irq(dev_priv, bit);
152 else
153 ironlake_disable_display_irq(dev_priv, bit);
154}
155
156static void ivybridge_set_fifo_underrun_reporting(struct drm_device *dev,
Daniel Vetter7336df62013-07-09 22:59:16 +0200157 enum pipe pipe, bool enable)
Paulo Zanoni86642812013-04-12 17:57:57 -0300158{
159 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni86642812013-04-12 17:57:57 -0300160 if (enable) {
Daniel Vetter7336df62013-07-09 22:59:16 +0200161 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN(pipe));
162
Paulo Zanoni86642812013-04-12 17:57:57 -0300163 if (!ivb_can_enable_err_int(dev))
164 return;
165
Paulo Zanoni86642812013-04-12 17:57:57 -0300166 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
167 } else {
Daniel Vetter7336df62013-07-09 22:59:16 +0200168 bool was_enabled = !(I915_READ(DEIMR) & DE_ERR_INT_IVB);
169
170 /* Change the state _after_ we've read out the current one. */
Paulo Zanoni86642812013-04-12 17:57:57 -0300171 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter7336df62013-07-09 22:59:16 +0200172
173 if (!was_enabled &&
174 (I915_READ(GEN7_ERR_INT) & ERR_INT_FIFO_UNDERRUN(pipe))) {
175 DRM_DEBUG_KMS("uncleared fifo underrun on pipe %c\n",
176 pipe_name(pipe));
177 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300178 }
179}
180
Daniel Vetterfee884e2013-07-04 23:35:21 +0200181/**
182 * ibx_display_interrupt_update - update SDEIMR
183 * @dev_priv: driver private
184 * @interrupt_mask: mask of interrupt bits to update
185 * @enabled_irq_mask: mask of interrupt bits to enable
186 */
187static void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
188 uint32_t interrupt_mask,
189 uint32_t enabled_irq_mask)
190{
191 uint32_t sdeimr = I915_READ(SDEIMR);
192 sdeimr &= ~interrupt_mask;
193 sdeimr |= (~enabled_irq_mask & interrupt_mask);
194
195 assert_spin_locked(&dev_priv->irq_lock);
196
197 I915_WRITE(SDEIMR, sdeimr);
198 POSTING_READ(SDEIMR);
199}
200#define ibx_enable_display_interrupt(dev_priv, bits) \
201 ibx_display_interrupt_update((dev_priv), (bits), (bits))
202#define ibx_disable_display_interrupt(dev_priv, bits) \
203 ibx_display_interrupt_update((dev_priv), (bits), 0)
204
Daniel Vetterde280752013-07-04 23:35:24 +0200205static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
206 enum transcoder pch_transcoder,
Paulo Zanoni86642812013-04-12 17:57:57 -0300207 bool enable)
208{
Paulo Zanoni86642812013-04-12 17:57:57 -0300209 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200210 uint32_t bit = (pch_transcoder == TRANSCODER_A) ?
211 SDE_TRANSA_FIFO_UNDER : SDE_TRANSB_FIFO_UNDER;
Paulo Zanoni86642812013-04-12 17:57:57 -0300212
213 if (enable)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200214 ibx_enable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300215 else
Daniel Vetterfee884e2013-07-04 23:35:21 +0200216 ibx_disable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300217}
218
219static void cpt_set_fifo_underrun_reporting(struct drm_device *dev,
220 enum transcoder pch_transcoder,
221 bool enable)
222{
223 struct drm_i915_private *dev_priv = dev->dev_private;
224
225 if (enable) {
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200226 I915_WRITE(SERR_INT,
227 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder));
228
Paulo Zanoni86642812013-04-12 17:57:57 -0300229 if (!cpt_can_enable_serr_int(dev))
230 return;
231
Daniel Vetterfee884e2013-07-04 23:35:21 +0200232 ibx_enable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Paulo Zanoni86642812013-04-12 17:57:57 -0300233 } else {
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200234 uint32_t tmp = I915_READ(SERR_INT);
235 bool was_enabled = !(I915_READ(SDEIMR) & SDE_ERROR_CPT);
236
237 /* Change the state _after_ we've read out the current one. */
Daniel Vetterfee884e2013-07-04 23:35:21 +0200238 ibx_disable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200239
240 if (!was_enabled &&
241 (tmp & SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder))) {
242 DRM_DEBUG_KMS("uncleared pch fifo underrun on pch transcoder %c\n",
243 transcoder_name(pch_transcoder));
244 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300245 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300246}
247
248/**
249 * intel_set_cpu_fifo_underrun_reporting - enable/disable FIFO underrun messages
250 * @dev: drm device
251 * @pipe: pipe
252 * @enable: true if we want to report FIFO underrun errors, false otherwise
253 *
254 * This function makes us disable or enable CPU fifo underruns for a specific
255 * pipe. Notice that on some Gens (e.g. IVB, HSW), disabling FIFO underrun
256 * reporting for one pipe may also disable all the other CPU error interruts for
257 * the other pipes, due to the fact that there's just one interrupt mask/enable
258 * bit for all the pipes.
259 *
260 * Returns the previous state of underrun reporting.
261 */
262bool intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
263 enum pipe pipe, bool enable)
264{
265 struct drm_i915_private *dev_priv = dev->dev_private;
266 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
267 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
268 unsigned long flags;
269 bool ret;
270
271 spin_lock_irqsave(&dev_priv->irq_lock, flags);
272
273 ret = !intel_crtc->cpu_fifo_underrun_disabled;
274
275 if (enable == ret)
276 goto done;
277
278 intel_crtc->cpu_fifo_underrun_disabled = !enable;
279
280 if (IS_GEN5(dev) || IS_GEN6(dev))
281 ironlake_set_fifo_underrun_reporting(dev, pipe, enable);
282 else if (IS_GEN7(dev))
Daniel Vetter7336df62013-07-09 22:59:16 +0200283 ivybridge_set_fifo_underrun_reporting(dev, pipe, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300284
285done:
286 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
287 return ret;
288}
289
290/**
291 * intel_set_pch_fifo_underrun_reporting - enable/disable FIFO underrun messages
292 * @dev: drm device
293 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
294 * @enable: true if we want to report FIFO underrun errors, false otherwise
295 *
296 * This function makes us disable or enable PCH fifo underruns for a specific
297 * PCH transcoder. Notice that on some PCHs (e.g. CPT/PPT), disabling FIFO
298 * underrun reporting for one transcoder may also disable all the other PCH
299 * error interruts for the other transcoders, due to the fact that there's just
300 * one interrupt mask/enable bit for all the transcoders.
301 *
302 * Returns the previous state of underrun reporting.
303 */
304bool intel_set_pch_fifo_underrun_reporting(struct drm_device *dev,
305 enum transcoder pch_transcoder,
306 bool enable)
307{
308 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200309 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pch_transcoder];
310 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni86642812013-04-12 17:57:57 -0300311 unsigned long flags;
312 bool ret;
313
Daniel Vetterde280752013-07-04 23:35:24 +0200314 /*
315 * NOTE: Pre-LPT has a fixed cpu pipe -> pch transcoder mapping, but LPT
316 * has only one pch transcoder A that all pipes can use. To avoid racy
317 * pch transcoder -> pipe lookups from interrupt code simply store the
318 * underrun statistics in crtc A. Since we never expose this anywhere
319 * nor use it outside of the fifo underrun code here using the "wrong"
320 * crtc on LPT won't cause issues.
321 */
Paulo Zanoni86642812013-04-12 17:57:57 -0300322
323 spin_lock_irqsave(&dev_priv->irq_lock, flags);
324
325 ret = !intel_crtc->pch_fifo_underrun_disabled;
326
327 if (enable == ret)
328 goto done;
329
330 intel_crtc->pch_fifo_underrun_disabled = !enable;
331
332 if (HAS_PCH_IBX(dev))
Daniel Vetterde280752013-07-04 23:35:24 +0200333 ibx_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300334 else
335 cpt_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
336
337done:
338 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
339 return ret;
340}
341
342
Keith Packard7c463582008-11-04 02:03:27 -0800343void
344i915_enable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
345{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200346 u32 reg = PIPESTAT(pipe);
347 u32 pipestat = I915_READ(reg) & 0x7fff0000;
Keith Packard7c463582008-11-04 02:03:27 -0800348
Daniel Vetterb79480b2013-06-27 17:52:10 +0200349 assert_spin_locked(&dev_priv->irq_lock);
350
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200351 if ((pipestat & mask) == mask)
352 return;
353
354 /* Enable the interrupt, clear any pending status */
355 pipestat |= mask | (mask >> 16);
356 I915_WRITE(reg, pipestat);
357 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800358}
359
360void
361i915_disable_pipestat(drm_i915_private_t *dev_priv, int pipe, u32 mask)
362{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200363 u32 reg = PIPESTAT(pipe);
364 u32 pipestat = I915_READ(reg) & 0x7fff0000;
Keith Packard7c463582008-11-04 02:03:27 -0800365
Daniel Vetterb79480b2013-06-27 17:52:10 +0200366 assert_spin_locked(&dev_priv->irq_lock);
367
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200368 if ((pipestat & mask) == 0)
369 return;
370
371 pipestat &= ~mask;
372 I915_WRITE(reg, pipestat);
373 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800374}
375
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000376/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300377 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000378 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300379static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000380{
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000381 drm_i915_private_t *dev_priv = dev->dev_private;
382 unsigned long irqflags;
383
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300384 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
385 return;
386
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000387 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000388
Jani Nikulaf8987802013-04-29 13:02:53 +0300389 i915_enable_pipestat(dev_priv, 1, PIPE_LEGACY_BLC_EVENT_ENABLE);
390 if (INTEL_INFO(dev)->gen >= 4)
391 i915_enable_pipestat(dev_priv, 0, PIPE_LEGACY_BLC_EVENT_ENABLE);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000392
393 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000394}
395
396/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700397 * i915_pipe_enabled - check if a pipe is enabled
398 * @dev: DRM device
399 * @pipe: pipe to check
400 *
401 * Reading certain registers when the pipe is disabled can hang the chip.
402 * Use this routine to make sure the PLL is running and the pipe is active
403 * before reading such registers if unsure.
404 */
405static int
406i915_pipe_enabled(struct drm_device *dev, int pipe)
407{
408 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200409
Daniel Vettera01025a2013-05-22 00:50:23 +0200410 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
411 /* Locking is horribly broken here, but whatever. */
412 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
413 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300414
Daniel Vettera01025a2013-05-22 00:50:23 +0200415 return intel_crtc->active;
416 } else {
417 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
418 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700419}
420
Keith Packard42f52ef2008-10-18 19:39:29 -0700421/* Called from drm generic code, passed a 'crtc', which
422 * we use as a pipe index
423 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700424static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700425{
426 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
427 unsigned long high_frame;
428 unsigned long low_frame;
Chris Wilson5eddb702010-09-11 13:48:45 +0100429 u32 high1, high2, low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700430
431 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800432 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800433 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700434 return 0;
435 }
436
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800437 high_frame = PIPEFRAME(pipe);
438 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100439
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700440 /*
441 * High & low register fields aren't synchronized, so make sure
442 * we get a low value that's stable across two reads of the high
443 * register.
444 */
445 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100446 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
447 low = I915_READ(low_frame) & PIPE_FRAME_LOW_MASK;
448 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700449 } while (high1 != high2);
450
Chris Wilson5eddb702010-09-11 13:48:45 +0100451 high1 >>= PIPE_FRAME_HIGH_SHIFT;
452 low >>= PIPE_FRAME_LOW_SHIFT;
453 return (high1 << 8) | low;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700454}
455
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700456static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800457{
458 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800459 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800460
461 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800462 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800463 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800464 return 0;
465 }
466
467 return I915_READ(reg);
468}
469
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700470static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100471 int *vpos, int *hpos)
472{
473 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
474 u32 vbl = 0, position = 0;
475 int vbl_start, vbl_end, htotal, vtotal;
476 bool in_vbl = true;
477 int ret = 0;
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200478 enum transcoder cpu_transcoder = intel_pipe_to_cpu_transcoder(dev_priv,
479 pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100480
481 if (!i915_pipe_enabled(dev, pipe)) {
482 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800483 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100484 return 0;
485 }
486
487 /* Get vtotal. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200488 vtotal = 1 + ((I915_READ(VTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100489
490 if (INTEL_INFO(dev)->gen >= 4) {
491 /* No obvious pixelcount register. Only query vertical
492 * scanout position from Display scan line register.
493 */
494 position = I915_READ(PIPEDSL(pipe));
495
496 /* Decode into vertical scanout position. Don't have
497 * horizontal scanout position.
498 */
499 *vpos = position & 0x1fff;
500 *hpos = 0;
501 } else {
502 /* Have access to pixelcount since start of frame.
503 * We can split this into vertical and horizontal
504 * scanout position.
505 */
506 position = (I915_READ(PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
507
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200508 htotal = 1 + ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100509 *vpos = position / htotal;
510 *hpos = position - (*vpos * htotal);
511 }
512
513 /* Query vblank area. */
Paulo Zanonife2b8f92012-10-23 18:30:02 -0200514 vbl = I915_READ(VBLANK(cpu_transcoder));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100515
516 /* Test position against vblank region. */
517 vbl_start = vbl & 0x1fff;
518 vbl_end = (vbl >> 16) & 0x1fff;
519
520 if ((*vpos < vbl_start) || (*vpos > vbl_end))
521 in_vbl = false;
522
523 /* Inside "upper part" of vblank area? Apply corrective offset: */
524 if (in_vbl && (*vpos >= vbl_start))
525 *vpos = *vpos - vtotal;
526
527 /* Readouts valid? */
528 if (vbl > 0)
529 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
530
531 /* In vblank? */
532 if (in_vbl)
533 ret |= DRM_SCANOUTPOS_INVBL;
534
535 return ret;
536}
537
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700538static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100539 int *max_error,
540 struct timeval *vblank_time,
541 unsigned flags)
542{
Chris Wilson4041b852011-01-22 10:07:56 +0000543 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100544
Ben Widawsky7eb552a2013-03-13 14:05:41 -0700545 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +0000546 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100547 return -EINVAL;
548 }
549
550 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +0000551 crtc = intel_get_crtc_for_pipe(dev, pipe);
552 if (crtc == NULL) {
553 DRM_ERROR("Invalid crtc %d\n", pipe);
554 return -EINVAL;
555 }
556
557 if (!crtc->enabled) {
558 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
559 return -EBUSY;
560 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100561
562 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +0000563 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
564 vblank_time, flags,
565 crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100566}
567
Egbert Eich321a1b32013-04-11 16:00:26 +0200568static int intel_hpd_irq_event(struct drm_device *dev, struct drm_connector *connector)
569{
570 enum drm_connector_status old_status;
571
572 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
573 old_status = connector->status;
574
575 connector->status = connector->funcs->detect(connector, false);
576 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %d to %d\n",
577 connector->base.id,
578 drm_get_connector_name(connector),
579 old_status, connector->status);
580 return (old_status != connector->status);
581}
582
Jesse Barnes5ca58282009-03-31 14:11:15 -0700583/*
584 * Handle hotplug events outside the interrupt handler proper.
585 */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200586#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
587
Jesse Barnes5ca58282009-03-31 14:11:15 -0700588static void i915_hotplug_work_func(struct work_struct *work)
589{
590 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
591 hotplug_work);
592 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -0700593 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200594 struct intel_connector *intel_connector;
595 struct intel_encoder *intel_encoder;
596 struct drm_connector *connector;
597 unsigned long irqflags;
598 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +0200599 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +0200600 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -0700601
Daniel Vetter52d7ece2012-12-01 21:03:22 +0100602 /* HPD irq before everything is fully set up. */
603 if (!dev_priv->enable_hotplug_processing)
604 return;
605
Keith Packarda65e34c2011-07-25 10:04:56 -0700606 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -0800607 DRM_DEBUG_KMS("running encoder hotplug functions\n");
608
Egbert Eichcd569ae2013-04-16 13:36:57 +0200609 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +0200610
611 hpd_event_bits = dev_priv->hpd_event_bits;
612 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +0200613 list_for_each_entry(connector, &mode_config->connector_list, head) {
614 intel_connector = to_intel_connector(connector);
615 intel_encoder = intel_connector->encoder;
616 if (intel_encoder->hpd_pin > HPD_NONE &&
617 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
618 connector->polled == DRM_CONNECTOR_POLL_HPD) {
619 DRM_INFO("HPD interrupt storm detected on connector %s: "
620 "switching from hotplug detection to polling\n",
621 drm_get_connector_name(connector));
622 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
623 connector->polled = DRM_CONNECTOR_POLL_CONNECT
624 | DRM_CONNECTOR_POLL_DISCONNECT;
625 hpd_disabled = true;
626 }
Egbert Eich142e2392013-04-11 15:57:57 +0200627 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
628 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
629 drm_get_connector_name(connector), intel_encoder->hpd_pin);
630 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200631 }
632 /* if there were no outputs to poll, poll was disabled,
633 * therefore make sure it's enabled when disabling HPD on
634 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +0200635 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +0200636 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +0200637 mod_timer(&dev_priv->hotplug_reenable_timer,
638 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
639 }
Egbert Eichcd569ae2013-04-16 13:36:57 +0200640
641 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
642
Egbert Eich321a1b32013-04-11 16:00:26 +0200643 list_for_each_entry(connector, &mode_config->connector_list, head) {
644 intel_connector = to_intel_connector(connector);
645 intel_encoder = intel_connector->encoder;
646 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
647 if (intel_encoder->hot_plug)
648 intel_encoder->hot_plug(intel_encoder);
649 if (intel_hpd_irq_event(dev, connector))
650 changed = true;
651 }
652 }
Keith Packard40ee3382011-07-28 15:31:19 -0700653 mutex_unlock(&mode_config->mutex);
654
Egbert Eich321a1b32013-04-11 16:00:26 +0200655 if (changed)
656 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -0700657}
658
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200659static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -0800660{
661 drm_i915_private_t *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000662 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +0200663 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200664
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200665 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800666
Daniel Vetter73edd18f2012-08-08 23:35:37 +0200667 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
668
Daniel Vetter20e4d402012-08-08 23:35:39 +0200669 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +0200670
Jesse Barnes7648fa92010-05-20 14:28:11 -0700671 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000672 busy_up = I915_READ(RCPREVBSYTUPAVG);
673 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -0800674 max_avg = I915_READ(RCBMAXAVG);
675 min_avg = I915_READ(RCBMINAVG);
676
677 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000678 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200679 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
680 new_delay = dev_priv->ips.cur_delay - 1;
681 if (new_delay < dev_priv->ips.max_delay)
682 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +0000683 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200684 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
685 new_delay = dev_priv->ips.cur_delay + 1;
686 if (new_delay > dev_priv->ips.min_delay)
687 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800688 }
689
Jesse Barnes7648fa92010-05-20 14:28:11 -0700690 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +0200691 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -0800692
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200693 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +0200694
Jesse Barnesf97108d2010-01-29 11:27:07 -0800695 return;
696}
697
Chris Wilson549f7362010-10-19 11:19:32 +0100698static void notify_ring(struct drm_device *dev,
699 struct intel_ring_buffer *ring)
700{
701 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9862e602011-01-04 22:22:17 +0000702
Chris Wilson475553d2011-01-20 09:52:56 +0000703 if (ring->obj == NULL)
704 return;
705
Chris Wilsonb2eadbc2012-08-09 10:58:30 +0100706 trace_i915_gem_request_complete(ring, ring->get_seqno(ring, false));
Chris Wilson9862e602011-01-04 22:22:17 +0000707
Chris Wilson549f7362010-10-19 11:19:32 +0100708 wake_up_all(&ring->irq_queue);
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700709 if (i915_enable_hangcheck) {
Daniel Vetter99584db2012-11-14 17:14:04 +0100710 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
Chris Wilsoncecc21f2012-10-05 17:02:56 +0100711 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -0700712 }
Chris Wilson549f7362010-10-19 11:19:32 +0100713}
714
Ben Widawsky4912d042011-04-25 11:25:20 -0700715static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800716{
Ben Widawsky4912d042011-04-25 11:25:20 -0700717 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200718 rps.work);
Ben Widawsky4912d042011-04-25 11:25:20 -0700719 u32 pm_iir, pm_imr;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100720 u8 new_delay;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800721
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200722 spin_lock_irq(&dev_priv->rps.lock);
723 pm_iir = dev_priv->rps.pm_iir;
724 dev_priv->rps.pm_iir = 0;
Ben Widawsky4912d042011-04-25 11:25:20 -0700725 pm_imr = I915_READ(GEN6_PMIMR);
Ben Widawsky48484052013-05-28 19:22:27 -0700726 /* Make sure not to corrupt PMIMR state used by ringbuffer code */
727 I915_WRITE(GEN6_PMIMR, pm_imr & ~GEN6_PM_RPS_EVENTS);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200728 spin_unlock_irq(&dev_priv->rps.lock);
Ben Widawsky4912d042011-04-25 11:25:20 -0700729
Ben Widawsky48484052013-05-28 19:22:27 -0700730 if ((pm_iir & GEN6_PM_RPS_EVENTS) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800731 return;
732
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700733 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +0100734
Ville Syrjälä74250342013-06-25 21:38:11 +0300735 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200736 new_delay = dev_priv->rps.cur_delay + 1;
Ville Syrjälä74250342013-06-25 21:38:11 +0300737
738 /*
739 * For better performance, jump directly
740 * to RPe if we're below it.
741 */
742 if (IS_VALLEYVIEW(dev_priv->dev) &&
743 dev_priv->rps.cur_delay < dev_priv->rps.rpe_delay)
744 new_delay = dev_priv->rps.rpe_delay;
745 } else
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200746 new_delay = dev_priv->rps.cur_delay - 1;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800747
Ben Widawsky79249632012-09-07 19:43:42 -0700748 /* sysfs frequency interfaces may have snuck in while servicing the
749 * interrupt
750 */
Ville Syrjäläd8289c92013-06-25 19:21:05 +0300751 if (new_delay >= dev_priv->rps.min_delay &&
752 new_delay <= dev_priv->rps.max_delay) {
Jesse Barnes0a073b82013-04-17 15:54:58 -0700753 if (IS_VALLEYVIEW(dev_priv->dev))
754 valleyview_set_rps(dev_priv->dev, new_delay);
755 else
756 gen6_set_rps(dev_priv->dev, new_delay);
Ben Widawsky79249632012-09-07 19:43:42 -0700757 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800758
Jesse Barnes52ceb902013-04-23 10:09:26 -0700759 if (IS_VALLEYVIEW(dev_priv->dev)) {
760 /*
761 * On VLV, when we enter RC6 we may not be at the minimum
762 * voltage level, so arm a timer to check. It should only
763 * fire when there's activity or once after we've entered
764 * RC6, and then won't be re-armed until the next RPS interrupt.
765 */
766 mod_delayed_work(dev_priv->wq, &dev_priv->rps.vlv_work,
767 msecs_to_jiffies(100));
768 }
769
Jesse Barnes4fc688c2012-11-02 11:14:01 -0700770 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -0800771}
772
Ben Widawskye3689192012-05-25 16:56:22 -0700773
774/**
775 * ivybridge_parity_work - Workqueue called when a parity error interrupt
776 * occurred.
777 * @work: workqueue struct
778 *
779 * Doesn't actually do anything except notify userspace. As a consequence of
780 * this event, userspace should try to remap the bad rows since statistically
781 * it is likely the same row is more likely to go bad again.
782 */
783static void ivybridge_parity_work(struct work_struct *work)
784{
785 drm_i915_private_t *dev_priv = container_of(work, drm_i915_private_t,
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100786 l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700787 u32 error_status, row, bank, subbank;
788 char *parity_event[5];
789 uint32_t misccpctl;
790 unsigned long flags;
791
792 /* We must turn off DOP level clock gating to access the L3 registers.
793 * In order to prevent a get/put style interface, acquire struct mutex
794 * any time we access those registers.
795 */
796 mutex_lock(&dev_priv->dev->struct_mutex);
797
798 misccpctl = I915_READ(GEN7_MISCCPCTL);
799 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
800 POSTING_READ(GEN7_MISCCPCTL);
801
802 error_status = I915_READ(GEN7_L3CDERRST1);
803 row = GEN7_PARITY_ERROR_ROW(error_status);
804 bank = GEN7_PARITY_ERROR_BANK(error_status);
805 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
806
807 I915_WRITE(GEN7_L3CDERRST1, GEN7_PARITY_ERROR_VALID |
808 GEN7_L3CDERRST1_ENABLE);
809 POSTING_READ(GEN7_L3CDERRST1);
810
811 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
812
813 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Ben Widawskycc609d52013-05-28 19:22:29 -0700814 dev_priv->gt_irq_mask &= ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Ben Widawskye3689192012-05-25 16:56:22 -0700815 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
816 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
817
818 mutex_unlock(&dev_priv->dev->struct_mutex);
819
820 parity_event[0] = "L3_PARITY_ERROR=1";
821 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
822 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
823 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
824 parity_event[4] = NULL;
825
826 kobject_uevent_env(&dev_priv->dev->primary->kdev.kobj,
827 KOBJ_CHANGE, parity_event);
828
829 DRM_DEBUG("Parity error: Row = %d, Bank = %d, Sub bank = %d.\n",
830 row, bank, subbank);
831
832 kfree(parity_event[3]);
833 kfree(parity_event[2]);
834 kfree(parity_event[1]);
835}
836
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200837static void ivybridge_parity_error_irq_handler(struct drm_device *dev)
Ben Widawskye3689192012-05-25 16:56:22 -0700838{
839 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskye3689192012-05-25 16:56:22 -0700840
Ben Widawskye1ef7cc2012-07-24 20:47:31 -0700841 if (!HAS_L3_GPU_CACHE(dev))
Ben Widawskye3689192012-05-25 16:56:22 -0700842 return;
843
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200844 spin_lock(&dev_priv->irq_lock);
Ben Widawskycc609d52013-05-28 19:22:29 -0700845 dev_priv->gt_irq_mask |= GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Ben Widawskye3689192012-05-25 16:56:22 -0700846 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200847 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -0700848
Daniel Vettera4da4fa2012-11-02 19:55:07 +0100849 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -0700850}
851
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200852static void snb_gt_irq_handler(struct drm_device *dev,
853 struct drm_i915_private *dev_priv,
854 u32 gt_iir)
855{
856
Ben Widawskycc609d52013-05-28 19:22:29 -0700857 if (gt_iir &
858 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200859 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -0700860 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200861 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -0700862 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200863 notify_ring(dev, &dev_priv->ring[BCS]);
864
Ben Widawskycc609d52013-05-28 19:22:29 -0700865 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
866 GT_BSD_CS_ERROR_INTERRUPT |
867 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200868 DRM_ERROR("GT error interrupt 0x%08x\n", gt_iir);
869 i915_handle_error(dev, false);
870 }
Ben Widawskye3689192012-05-25 16:56:22 -0700871
Ben Widawskycc609d52013-05-28 19:22:29 -0700872 if (gt_iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200873 ivybridge_parity_error_irq_handler(dev);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +0200874}
875
Ben Widawskybaf02a12013-05-28 19:22:24 -0700876/* Legacy way of handling PM interrupts */
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200877static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv,
878 u32 pm_iir)
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100879{
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100880 /*
881 * IIR bits should never already be set because IMR should
882 * prevent an interrupt from being shown in IIR. The warning
883 * displays a case where we've unsafely cleared
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200884 * dev_priv->rps.pm_iir. Although missing an interrupt of the same
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100885 * type is not a problem, it displays a problem in the logic.
886 *
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200887 * The mask bit in IMR is cleared by dev_priv->rps.work.
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100888 */
889
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200890 spin_lock(&dev_priv->rps.lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200891 dev_priv->rps.pm_iir |= pm_iir;
892 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100893 POSTING_READ(GEN6_PMIMR);
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200894 spin_unlock(&dev_priv->rps.lock);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100895
Daniel Vetterc6a828d2012-08-08 23:35:35 +0200896 queue_work(dev_priv->wq, &dev_priv->rps.work);
Chris Wilsonfc6826d2012-04-15 11:56:03 +0100897}
898
Egbert Eichb543fb02013-04-16 13:36:54 +0200899#define HPD_STORM_DETECT_PERIOD 1000
900#define HPD_STORM_THRESHOLD 5
901
Daniel Vetter10a504d2013-06-27 17:52:12 +0200902static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +0200903 u32 hotplug_trigger,
904 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +0200905{
906 drm_i915_private_t *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +0200907 int i;
Daniel Vetter10a504d2013-06-27 17:52:12 +0200908 bool storm_detected = false;
Egbert Eichb543fb02013-04-16 13:36:54 +0200909
Daniel Vetter91d131d2013-06-27 17:52:14 +0200910 if (!hotplug_trigger)
911 return;
912
Daniel Vetterb5ea2d52013-06-27 17:52:15 +0200913 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +0200914 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +0200915
Egbert Eichb543fb02013-04-16 13:36:54 +0200916 if (!(hpd[i] & hotplug_trigger) ||
917 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
918 continue;
919
Jani Nikulabc5ead8c2013-05-07 15:10:29 +0300920 dev_priv->hpd_event_bits |= (1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200921 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
922 dev_priv->hpd_stats[i].hpd_last_jiffies
923 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
924 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
925 dev_priv->hpd_stats[i].hpd_cnt = 0;
926 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
927 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +0200928 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +0200929 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +0200930 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +0200931 } else {
932 dev_priv->hpd_stats[i].hpd_cnt++;
933 }
934 }
935
Daniel Vetter10a504d2013-06-27 17:52:12 +0200936 if (storm_detected)
937 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +0200938 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +0200939
940 queue_work(dev_priv->wq,
941 &dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +0200942}
943
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100944static void gmbus_irq_handler(struct drm_device *dev)
945{
Daniel Vetter28c70f12012-12-01 13:53:45 +0100946 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
947
Daniel Vetter28c70f12012-12-01 13:53:45 +0100948 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +0100949}
950
Daniel Vetterce99c252012-12-01 13:53:47 +0100951static void dp_aux_irq_handler(struct drm_device *dev)
952{
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100953 struct drm_i915_private *dev_priv = (drm_i915_private_t *) dev->dev_private;
954
Daniel Vetter9ee32fea2012-12-01 13:53:48 +0100955 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +0100956}
957
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200958/* Unlike gen6_rps_irq_handler() from which this function is originally derived,
Ben Widawskybaf02a12013-05-28 19:22:24 -0700959 * we must be able to deal with other PM interrupts. This is complicated because
960 * of the way in which we use the masks to defer the RPS work (which for
961 * posterity is necessary because of forcewake).
962 */
963static void hsw_pm_irq_handler(struct drm_i915_private *dev_priv,
964 u32 pm_iir)
965{
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200966 spin_lock(&dev_priv->rps.lock);
Ben Widawsky48484052013-05-28 19:22:27 -0700967 dev_priv->rps.pm_iir |= pm_iir & GEN6_PM_RPS_EVENTS;
Ben Widawskybaf02a12013-05-28 19:22:24 -0700968 if (dev_priv->rps.pm_iir) {
969 I915_WRITE(GEN6_PMIMR, dev_priv->rps.pm_iir);
970 /* never want to mask useful interrupts. (also posting read) */
Ben Widawsky48484052013-05-28 19:22:27 -0700971 WARN_ON(I915_READ_NOTRACE(GEN6_PMIMR) & ~GEN6_PM_RPS_EVENTS);
Ben Widawskybaf02a12013-05-28 19:22:24 -0700972 /* TODO: if queue_work is slow, move it out of the spinlock */
973 queue_work(dev_priv->wq, &dev_priv->rps.work);
974 }
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +0200975 spin_unlock(&dev_priv->rps.lock);
Ben Widawskybaf02a12013-05-28 19:22:24 -0700976
Ben Widawsky12638c52013-05-28 19:22:31 -0700977 if (pm_iir & ~GEN6_PM_RPS_EVENTS) {
978 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
979 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
980
981 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
982 DRM_ERROR("VEBOX CS error interrupt 0x%08x\n", pm_iir);
983 i915_handle_error(dev_priv->dev, false);
984 }
985 }
Ben Widawskybaf02a12013-05-28 19:22:24 -0700986}
987
Daniel Vetterff1f5252012-10-02 15:10:55 +0200988static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700989{
990 struct drm_device *dev = (struct drm_device *) arg;
991 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
992 u32 iir, gt_iir, pm_iir;
993 irqreturn_t ret = IRQ_NONE;
994 unsigned long irqflags;
995 int pipe;
996 u32 pipe_stats[I915_MAX_PIPES];
Jesse Barnes7e231dbe2012-03-28 13:39:38 -0700997
998 atomic_inc(&dev_priv->irq_received);
999
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001000 while (true) {
1001 iir = I915_READ(VLV_IIR);
1002 gt_iir = I915_READ(GTIIR);
1003 pm_iir = I915_READ(GEN6_PMIIR);
1004
1005 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1006 goto out;
1007
1008 ret = IRQ_HANDLED;
1009
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001010 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001011
1012 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1013 for_each_pipe(pipe) {
1014 int reg = PIPESTAT(pipe);
1015 pipe_stats[pipe] = I915_READ(reg);
1016
1017 /*
1018 * Clear the PIPE*STAT regs before the IIR
1019 */
1020 if (pipe_stats[pipe] & 0x8000ffff) {
1021 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
1022 DRM_DEBUG_DRIVER("pipe %c underrun\n",
1023 pipe_name(pipe));
1024 I915_WRITE(reg, pipe_stats[pipe]);
1025 }
1026 }
1027 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1028
Jesse Barnes31acc7f2012-06-20 10:53:11 -07001029 for_each_pipe(pipe) {
1030 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS)
1031 drm_handle_vblank(dev, pipe);
1032
1033 if (pipe_stats[pipe] & PLANE_FLIPDONE_INT_STATUS_VLV) {
1034 intel_prepare_page_flip(dev, pipe);
1035 intel_finish_page_flip(dev, pipe);
1036 }
1037 }
1038
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001039 /* Consume port. Then clear IIR or we'll miss events */
1040 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
1041 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02001042 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001043
1044 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
1045 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02001046
1047 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
1048
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001049 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1050 I915_READ(PORT_HOTPLUG_STAT);
1051 }
1052
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001053 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1054 gmbus_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001055
Ben Widawsky48484052013-05-28 19:22:27 -07001056 if (pm_iir & GEN6_PM_RPS_EVENTS)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001057 gen6_rps_irq_handler(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001058
1059 I915_WRITE(GTIIR, gt_iir);
1060 I915_WRITE(GEN6_PMIIR, pm_iir);
1061 I915_WRITE(VLV_IIR, iir);
1062 }
1063
1064out:
1065 return ret;
1066}
1067
Adam Jackson23e81d62012-06-06 15:45:44 -04001068static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001069{
1070 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001071 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001072 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001073
Daniel Vetter91d131d2013-06-27 17:52:14 +02001074 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_ibx);
1075
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001076 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1077 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1078 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001079 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001080 port_name(port));
1081 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001082
Daniel Vetterce99c252012-12-01 13:53:47 +01001083 if (pch_iir & SDE_AUX_MASK)
1084 dp_aux_irq_handler(dev);
1085
Jesse Barnes776ad802011-01-04 15:09:39 -08001086 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001087 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001088
1089 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1090 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1091
1092 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1093 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1094
1095 if (pch_iir & SDE_POISON)
1096 DRM_ERROR("PCH poison interrupt\n");
1097
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001098 if (pch_iir & SDE_FDI_MASK)
1099 for_each_pipe(pipe)
1100 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1101 pipe_name(pipe),
1102 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001103
1104 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1105 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1106
1107 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1108 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1109
Jesse Barnes776ad802011-01-04 15:09:39 -08001110 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001111 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1112 false))
1113 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1114
1115 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1116 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1117 false))
1118 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1119}
1120
1121static void ivb_err_int_handler(struct drm_device *dev)
1122{
1123 struct drm_i915_private *dev_priv = dev->dev_private;
1124 u32 err_int = I915_READ(GEN7_ERR_INT);
1125
Paulo Zanonide032bf2013-04-12 17:57:58 -03001126 if (err_int & ERR_INT_POISON)
1127 DRM_ERROR("Poison interrupt\n");
1128
Paulo Zanoni86642812013-04-12 17:57:57 -03001129 if (err_int & ERR_INT_FIFO_UNDERRUN_A)
1130 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1131 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1132
1133 if (err_int & ERR_INT_FIFO_UNDERRUN_B)
1134 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1135 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1136
1137 if (err_int & ERR_INT_FIFO_UNDERRUN_C)
1138 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_C, false))
1139 DRM_DEBUG_DRIVER("Pipe C FIFO underrun\n");
1140
1141 I915_WRITE(GEN7_ERR_INT, err_int);
1142}
1143
1144static void cpt_serr_int_handler(struct drm_device *dev)
1145{
1146 struct drm_i915_private *dev_priv = dev->dev_private;
1147 u32 serr_int = I915_READ(SERR_INT);
1148
Paulo Zanonide032bf2013-04-12 17:57:58 -03001149 if (serr_int & SERR_INT_POISON)
1150 DRM_ERROR("PCH poison interrupt\n");
1151
Paulo Zanoni86642812013-04-12 17:57:57 -03001152 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1153 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1154 false))
1155 DRM_DEBUG_DRIVER("PCH transcoder A FIFO underrun\n");
1156
1157 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
1158 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1159 false))
1160 DRM_DEBUG_DRIVER("PCH transcoder B FIFO underrun\n");
1161
1162 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
1163 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
1164 false))
1165 DRM_DEBUG_DRIVER("PCH transcoder C FIFO underrun\n");
1166
1167 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08001168}
1169
Adam Jackson23e81d62012-06-06 15:45:44 -04001170static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
1171{
1172 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1173 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001174 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04001175
Daniel Vetter91d131d2013-06-27 17:52:14 +02001176 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_cpt);
1177
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001178 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
1179 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
1180 SDE_AUDIO_POWER_SHIFT_CPT);
1181 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
1182 port_name(port));
1183 }
Adam Jackson23e81d62012-06-06 15:45:44 -04001184
1185 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01001186 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001187
1188 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001189 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001190
1191 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
1192 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
1193
1194 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
1195 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
1196
1197 if (pch_iir & SDE_FDI_MASK_CPT)
1198 for_each_pipe(pipe)
1199 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1200 pipe_name(pipe),
1201 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03001202
1203 if (pch_iir & SDE_ERROR_CPT)
1204 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04001205}
1206
Daniel Vetterff1f5252012-10-02 15:10:55 +02001207static irqreturn_t ivybridge_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001208{
1209 struct drm_device *dev = (struct drm_device *) arg;
1210 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskyab5c6082013-04-05 13:12:41 -07001211 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01001212 irqreturn_t ret = IRQ_NONE;
1213 int i;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001214
1215 atomic_inc(&dev_priv->irq_received);
1216
Paulo Zanoni86642812013-04-12 17:57:57 -03001217 /* We get interrupts on unclaimed registers, so check for this before we
1218 * do any I915_{READ,WRITE}. */
1219 if (IS_HASWELL(dev) &&
1220 (I915_READ_NOTRACE(FPGA_DBG) & FPGA_DBG_RM_NOCLAIM)) {
1221 DRM_ERROR("Unclaimed register before interrupt\n");
1222 I915_WRITE_NOTRACE(FPGA_DBG, FPGA_DBG_RM_NOCLAIM);
1223 }
1224
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001225 /* disable master interrupt before clearing iir */
1226 de_ier = I915_READ(DEIER);
1227 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson0e434062012-05-09 21:45:44 +01001228
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001229 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1230 * interrupts will will be stored on its back queue, and then we'll be
1231 * able to process them after we restore SDEIER (as soon as we restore
1232 * it, we'll get an interrupt if SDEIIR still has something to process
1233 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001234 if (!HAS_PCH_NOP(dev)) {
1235 sde_ier = I915_READ(SDEIER);
1236 I915_WRITE(SDEIER, 0);
1237 POSTING_READ(SDEIER);
1238 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001239
Paulo Zanoni86642812013-04-12 17:57:57 -03001240 /* On Haswell, also mask ERR_INT because we don't want to risk
1241 * generating "unclaimed register" interrupts from inside the interrupt
1242 * handler. */
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001243 if (IS_HASWELL(dev)) {
1244 spin_lock(&dev_priv->irq_lock);
Paulo Zanoni86642812013-04-12 17:57:57 -03001245 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001246 spin_unlock(&dev_priv->irq_lock);
1247 }
Paulo Zanoni86642812013-04-12 17:57:57 -03001248
Chris Wilson0e434062012-05-09 21:45:44 +01001249 gt_iir = I915_READ(GTIIR);
1250 if (gt_iir) {
1251 snb_gt_irq_handler(dev, dev_priv, gt_iir);
1252 I915_WRITE(GTIIR, gt_iir);
1253 ret = IRQ_HANDLED;
1254 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001255
1256 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001257 if (de_iir) {
Paulo Zanoni86642812013-04-12 17:57:57 -03001258 if (de_iir & DE_ERR_INT_IVB)
1259 ivb_err_int_handler(dev);
1260
Daniel Vetterce99c252012-12-01 13:53:47 +01001261 if (de_iir & DE_AUX_CHANNEL_A_IVB)
1262 dp_aux_irq_handler(dev);
1263
Chris Wilson0e434062012-05-09 21:45:44 +01001264 if (de_iir & DE_GSE_IVB)
Jani Nikula81a07802013-04-24 22:18:44 +03001265 intel_opregion_asle_intr(dev);
Chris Wilson0e434062012-05-09 21:45:44 +01001266
1267 for (i = 0; i < 3; i++) {
Daniel Vetter74d44442012-10-02 17:54:35 +02001268 if (de_iir & (DE_PIPEA_VBLANK_IVB << (5 * i)))
1269 drm_handle_vblank(dev, i);
Chris Wilson0e434062012-05-09 21:45:44 +01001270 if (de_iir & (DE_PLANEA_FLIP_DONE_IVB << (5 * i))) {
1271 intel_prepare_page_flip(dev, i);
1272 intel_finish_page_flip_plane(dev, i);
1273 }
Chris Wilson0e434062012-05-09 21:45:44 +01001274 }
1275
1276 /* check event from PCH */
Ben Widawskyab5c6082013-04-05 13:12:41 -07001277 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
Chris Wilson0e434062012-05-09 21:45:44 +01001278 u32 pch_iir = I915_READ(SDEIIR);
1279
Adam Jackson23e81d62012-06-06 15:45:44 -04001280 cpt_irq_handler(dev, pch_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001281
1282 /* clear PCH hotplug event before clear CPU irq */
1283 I915_WRITE(SDEIIR, pch_iir);
1284 }
1285
1286 I915_WRITE(DEIIR, de_iir);
1287 ret = IRQ_HANDLED;
1288 }
1289
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001290 pm_iir = I915_READ(GEN6_PMIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01001291 if (pm_iir) {
Ben Widawskybaf02a12013-05-28 19:22:24 -07001292 if (IS_HASWELL(dev))
1293 hsw_pm_irq_handler(dev_priv, pm_iir);
Ben Widawsky48484052013-05-28 19:22:27 -07001294 else if (pm_iir & GEN6_PM_RPS_EVENTS)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001295 gen6_rps_irq_handler(dev_priv, pm_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01001296 I915_WRITE(GEN6_PMIIR, pm_iir);
1297 ret = IRQ_HANDLED;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001298 }
1299
Daniel Vetter4bc9d432013-06-27 13:44:58 +02001300 if (IS_HASWELL(dev)) {
1301 spin_lock(&dev_priv->irq_lock);
1302 if (ivb_can_enable_err_int(dev))
1303 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
1304 spin_unlock(&dev_priv->irq_lock);
1305 }
Paulo Zanoni86642812013-04-12 17:57:57 -03001306
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001307 I915_WRITE(DEIER, de_ier);
1308 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07001309 if (!HAS_PCH_NOP(dev)) {
1310 I915_WRITE(SDEIER, sde_ier);
1311 POSTING_READ(SDEIER);
1312 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07001313
1314 return ret;
1315}
1316
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001317static void ilk_gt_irq_handler(struct drm_device *dev,
1318 struct drm_i915_private *dev_priv,
1319 u32 gt_iir)
1320{
Ben Widawskycc609d52013-05-28 19:22:29 -07001321 if (gt_iir &
1322 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001323 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001324 if (gt_iir & ILK_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001325 notify_ring(dev, &dev_priv->ring[VCS]);
1326}
1327
Daniel Vetterff1f5252012-10-02 15:10:55 +02001328static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001329{
Jesse Barnes46979952011-04-07 13:53:55 -07001330 struct drm_device *dev = (struct drm_device *) arg;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001331 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
1332 int ret = IRQ_NONE;
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001333 u32 de_iir, gt_iir, de_ier, pm_iir, sde_ier;
Xiang, Haihao881f47b2010-09-19 14:40:43 +01001334
Jesse Barnes46979952011-04-07 13:53:55 -07001335 atomic_inc(&dev_priv->irq_received);
1336
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001337 /* disable master interrupt before clearing iir */
1338 de_ier = I915_READ(DEIER);
1339 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001340 POSTING_READ(DEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001341
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001342 /* Disable south interrupts. We'll only write to SDEIIR once, so further
1343 * interrupts will will be stored on its back queue, and then we'll be
1344 * able to process them after we restore SDEIER (as soon as we restore
1345 * it, we'll get an interrupt if SDEIIR still has something to process
1346 * due to its back queue). */
1347 sde_ier = I915_READ(SDEIER);
1348 I915_WRITE(SDEIER, 0);
1349 POSTING_READ(SDEIER);
1350
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001351 de_iir = I915_READ(DEIIR);
1352 gt_iir = I915_READ(GTIIR);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001353 pm_iir = I915_READ(GEN6_PMIIR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001354
Daniel Vetteracd15b62012-11-30 11:24:50 +01001355 if (de_iir == 0 && gt_iir == 0 && (!IS_GEN6(dev) || pm_iir == 0))
Zou Nan haic7c85102010-01-15 10:29:06 +08001356 goto done;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001357
Zou Nan haic7c85102010-01-15 10:29:06 +08001358 ret = IRQ_HANDLED;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001359
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001360 if (IS_GEN5(dev))
1361 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
1362 else
1363 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001364
Daniel Vetterce99c252012-12-01 13:53:47 +01001365 if (de_iir & DE_AUX_CHANNEL_A)
1366 dp_aux_irq_handler(dev);
1367
Zou Nan haic7c85102010-01-15 10:29:06 +08001368 if (de_iir & DE_GSE)
Jani Nikula81a07802013-04-24 22:18:44 +03001369 intel_opregion_asle_intr(dev);
Zou Nan haic7c85102010-01-15 10:29:06 +08001370
Daniel Vetter74d44442012-10-02 17:54:35 +02001371 if (de_iir & DE_PIPEA_VBLANK)
1372 drm_handle_vblank(dev, 0);
1373
1374 if (de_iir & DE_PIPEB_VBLANK)
1375 drm_handle_vblank(dev, 1);
1376
Paulo Zanonide032bf2013-04-12 17:57:58 -03001377 if (de_iir & DE_POISON)
1378 DRM_ERROR("Poison interrupt\n");
1379
Paulo Zanoni86642812013-04-12 17:57:57 -03001380 if (de_iir & DE_PIPEA_FIFO_UNDERRUN)
1381 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_A, false))
1382 DRM_DEBUG_DRIVER("Pipe A FIFO underrun\n");
1383
1384 if (de_iir & DE_PIPEB_FIFO_UNDERRUN)
1385 if (intel_set_cpu_fifo_underrun_reporting(dev, PIPE_B, false))
1386 DRM_DEBUG_DRIVER("Pipe B FIFO underrun\n");
1387
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001388 if (de_iir & DE_PLANEA_FLIP_DONE) {
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001389 intel_prepare_page_flip(dev, 0);
Chris Wilson2bbda382010-09-02 17:59:39 +01001390 intel_finish_page_flip_plane(dev, 0);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001391 }
1392
Zhenyu Wangf072d2e2010-02-09 09:46:19 +08001393 if (de_iir & DE_PLANEB_FLIP_DONE) {
1394 intel_prepare_page_flip(dev, 1);
Chris Wilson2bbda382010-09-02 17:59:39 +01001395 intel_finish_page_flip_plane(dev, 1);
Jesse Barnes013d5aa2010-01-29 11:18:31 -08001396 }
Li Pengc062df62010-01-23 00:12:58 +08001397
Zou Nan haic7c85102010-01-15 10:29:06 +08001398 /* check event from PCH */
Jesse Barnes776ad802011-01-04 15:09:39 -08001399 if (de_iir & DE_PCH_EVENT) {
Daniel Vetteracd15b62012-11-30 11:24:50 +01001400 u32 pch_iir = I915_READ(SDEIIR);
1401
Adam Jackson23e81d62012-06-06 15:45:44 -04001402 if (HAS_PCH_CPT(dev))
1403 cpt_irq_handler(dev, pch_iir);
1404 else
1405 ibx_irq_handler(dev, pch_iir);
Daniel Vetteracd15b62012-11-30 11:24:50 +01001406
1407 /* should clear PCH hotplug event before clear CPU irq */
1408 I915_WRITE(SDEIIR, pch_iir);
Jesse Barnes776ad802011-01-04 15:09:39 -08001409 }
Zou Nan haic7c85102010-01-15 10:29:06 +08001410
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001411 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001412 ironlake_rps_change_irq_handler(dev);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001413
Ben Widawsky48484052013-05-28 19:22:27 -07001414 if (IS_GEN6(dev) && pm_iir & GEN6_PM_RPS_EVENTS)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001415 gen6_rps_irq_handler(dev_priv, pm_iir);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001416
Zou Nan haic7c85102010-01-15 10:29:06 +08001417 I915_WRITE(GTIIR, gt_iir);
1418 I915_WRITE(DEIIR, de_iir);
Ben Widawsky4912d042011-04-25 11:25:20 -07001419 I915_WRITE(GEN6_PMIIR, pm_iir);
Zou Nan haic7c85102010-01-15 10:29:06 +08001420
1421done:
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001422 I915_WRITE(DEIER, de_ier);
Chris Wilson3143a2b2010-11-16 15:55:10 +00001423 POSTING_READ(DEIER);
Paulo Zanoni44498ae2013-02-22 17:05:28 -03001424 I915_WRITE(SDEIER, sde_ier);
1425 POSTING_READ(SDEIER);
Zou, Nanhai2d109a82009-11-06 02:13:01 +00001426
Zhenyu Wang036a4a72009-06-08 14:40:19 +08001427 return ret;
1428}
1429
Jesse Barnes8a905232009-07-11 16:48:03 -04001430/**
1431 * i915_error_work_func - do process context error handling work
1432 * @work: work struct
1433 *
1434 * Fire an error uevent so userspace can see that a hang or error
1435 * was detected.
1436 */
1437static void i915_error_work_func(struct work_struct *work)
1438{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001439 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
1440 work);
1441 drm_i915_private_t *dev_priv = container_of(error, drm_i915_private_t,
1442 gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04001443 struct drm_device *dev = dev_priv->dev;
Daniel Vetterf69061b2012-12-06 09:01:42 +01001444 struct intel_ring_buffer *ring;
Ben Gamarif316a422009-09-14 17:48:46 -04001445 char *error_event[] = { "ERROR=1", NULL };
1446 char *reset_event[] = { "RESET=1", NULL };
1447 char *reset_done_event[] = { "ERROR=0", NULL };
Daniel Vetterf69061b2012-12-06 09:01:42 +01001448 int i, ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04001449
Ben Gamarif316a422009-09-14 17:48:46 -04001450 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04001451
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001452 /*
1453 * Note that there's only one work item which does gpu resets, so we
1454 * need not worry about concurrent gpu resets potentially incrementing
1455 * error->reset_counter twice. We only need to take care of another
1456 * racing irq/hangcheck declaring the gpu dead for a second time. A
1457 * quick check for that is good enough: schedule_work ensures the
1458 * correct ordering between hang detection and this work item, and since
1459 * the reset in-progress bit is only ever set by code outside of this
1460 * work we don't need to worry about any other races.
1461 */
1462 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01001463 DRM_DEBUG_DRIVER("resetting chip\n");
Daniel Vetter7db0ba22012-12-06 16:23:37 +01001464 kobject_uevent_env(&dev->primary->kdev.kobj, KOBJ_CHANGE,
1465 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001466
Daniel Vetterf69061b2012-12-06 09:01:42 +01001467 ret = i915_reset(dev);
1468
1469 if (ret == 0) {
1470 /*
1471 * After all the gem state is reset, increment the reset
1472 * counter and wake up everyone waiting for the reset to
1473 * complete.
1474 *
1475 * Since unlock operations are a one-sided barrier only,
1476 * we need to insert a barrier here to order any seqno
1477 * updates before
1478 * the counter increment.
1479 */
1480 smp_mb__before_atomic_inc();
1481 atomic_inc(&dev_priv->gpu_error.reset_counter);
1482
1483 kobject_uevent_env(&dev->primary->kdev.kobj,
1484 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001485 } else {
1486 atomic_set(&error->reset_counter, I915_WEDGED);
Ben Gamarif316a422009-09-14 17:48:46 -04001487 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001488
Daniel Vetterf69061b2012-12-06 09:01:42 +01001489 for_each_ring(ring, dev_priv, i)
1490 wake_up_all(&ring->irq_queue);
1491
Ville Syrjälä96a02912013-02-18 19:08:49 +02001492 intel_display_handle_reset(dev);
1493
Daniel Vetter1f83fee2012-11-15 17:17:22 +01001494 wake_up_all(&dev_priv->gpu_error.reset_queue);
Ben Gamarif316a422009-09-14 17:48:46 -04001495 }
Jesse Barnes8a905232009-07-11 16:48:03 -04001496}
1497
Daniel Vetter85f9e502012-08-31 21:42:26 +02001498/* NB: please notice the memset */
1499static void i915_get_extra_instdone(struct drm_device *dev,
1500 uint32_t *instdone)
1501{
1502 struct drm_i915_private *dev_priv = dev->dev_private;
1503 memset(instdone, 0, sizeof(*instdone) * I915_NUM_INSTDONE_REG);
1504
1505 switch(INTEL_INFO(dev)->gen) {
1506 case 2:
1507 case 3:
1508 instdone[0] = I915_READ(INSTDONE);
1509 break;
1510 case 4:
1511 case 5:
1512 case 6:
1513 instdone[0] = I915_READ(INSTDONE_I965);
1514 instdone[1] = I915_READ(INSTDONE1);
1515 break;
1516 default:
1517 WARN_ONCE(1, "Unsupported platform\n");
1518 case 7:
1519 instdone[0] = I915_READ(GEN7_INSTDONE_1);
1520 instdone[1] = I915_READ(GEN7_SC_INSTDONE);
1521 instdone[2] = I915_READ(GEN7_SAMPLER_INSTDONE);
1522 instdone[3] = I915_READ(GEN7_ROW_INSTDONE);
1523 break;
1524 }
1525}
1526
Chris Wilson3bd3c932010-08-19 08:19:30 +01001527#ifdef CONFIG_DEBUG_FS
Chris Wilson9df30792010-02-18 10:24:56 +00001528static struct drm_i915_error_object *
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001529i915_error_object_create_sized(struct drm_i915_private *dev_priv,
1530 struct drm_i915_gem_object *src,
1531 const int num_pages)
Chris Wilson9df30792010-02-18 10:24:56 +00001532{
1533 struct drm_i915_error_object *dst;
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001534 int i;
Chris Wilsone56660d2010-08-07 11:01:26 +01001535 u32 reloc_offset;
Chris Wilson9df30792010-02-18 10:24:56 +00001536
Chris Wilson05394f32010-11-08 19:18:58 +00001537 if (src == NULL || src->pages == NULL)
Chris Wilson9df30792010-02-18 10:24:56 +00001538 return NULL;
1539
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001540 dst = kmalloc(sizeof(*dst) + num_pages * sizeof(u32 *), GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001541 if (dst == NULL)
1542 return NULL;
1543
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001544 reloc_offset = dst->gtt_offset = i915_gem_obj_ggtt_offset(src);
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001545 for (i = 0; i < num_pages; i++) {
Andrew Morton788885a2010-05-11 14:07:05 -07001546 unsigned long flags;
Chris Wilsone56660d2010-08-07 11:01:26 +01001547 void *d;
Andrew Morton788885a2010-05-11 14:07:05 -07001548
Chris Wilsone56660d2010-08-07 11:01:26 +01001549 d = kmalloc(PAGE_SIZE, GFP_ATOMIC);
Chris Wilson9df30792010-02-18 10:24:56 +00001550 if (d == NULL)
1551 goto unwind;
Chris Wilsone56660d2010-08-07 11:01:26 +01001552
Andrew Morton788885a2010-05-11 14:07:05 -07001553 local_irq_save(flags);
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001554 if (reloc_offset < dev_priv->gtt.mappable_end &&
Daniel Vetter74898d72012-02-15 23:50:22 +01001555 src->has_global_gtt_mapping) {
Chris Wilson172975aa2011-12-14 13:57:25 +01001556 void __iomem *s;
1557
1558 /* Simply ignore tiling or any overlapping fence.
1559 * It's part of the error state, and this hopefully
1560 * captures what the GPU read.
1561 */
1562
Ben Widawsky5d4545a2013-01-17 12:45:15 -08001563 s = io_mapping_map_atomic_wc(dev_priv->gtt.mappable,
Chris Wilson172975aa2011-12-14 13:57:25 +01001564 reloc_offset);
1565 memcpy_fromio(d, s, PAGE_SIZE);
1566 io_mapping_unmap_atomic(s);
Chris Wilson960e3562012-11-15 11:32:23 +00001567 } else if (src->stolen) {
1568 unsigned long offset;
1569
1570 offset = dev_priv->mm.stolen_base;
1571 offset += src->stolen->start;
1572 offset += i << PAGE_SHIFT;
1573
Daniel Vetter1a240d42012-11-29 22:18:51 +01001574 memcpy_fromio(d, (void __iomem *) offset, PAGE_SIZE);
Chris Wilson172975aa2011-12-14 13:57:25 +01001575 } else {
Chris Wilson9da3da62012-06-01 15:20:22 +01001576 struct page *page;
Chris Wilson172975aa2011-12-14 13:57:25 +01001577 void *s;
1578
Chris Wilson9da3da62012-06-01 15:20:22 +01001579 page = i915_gem_object_get_page(src, i);
Chris Wilson172975aa2011-12-14 13:57:25 +01001580
Chris Wilson9da3da62012-06-01 15:20:22 +01001581 drm_clflush_pages(&page, 1);
1582
1583 s = kmap_atomic(page);
Chris Wilson172975aa2011-12-14 13:57:25 +01001584 memcpy(d, s, PAGE_SIZE);
1585 kunmap_atomic(s);
1586
Chris Wilson9da3da62012-06-01 15:20:22 +01001587 drm_clflush_pages(&page, 1);
Chris Wilson172975aa2011-12-14 13:57:25 +01001588 }
Andrew Morton788885a2010-05-11 14:07:05 -07001589 local_irq_restore(flags);
Chris Wilsone56660d2010-08-07 11:01:26 +01001590
Chris Wilson9da3da62012-06-01 15:20:22 +01001591 dst->pages[i] = d;
Chris Wilsone56660d2010-08-07 11:01:26 +01001592
1593 reloc_offset += PAGE_SIZE;
Chris Wilson9df30792010-02-18 10:24:56 +00001594 }
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001595 dst->page_count = num_pages;
Chris Wilson9df30792010-02-18 10:24:56 +00001596
1597 return dst;
1598
1599unwind:
Chris Wilson9da3da62012-06-01 15:20:22 +01001600 while (i--)
1601 kfree(dst->pages[i]);
Chris Wilson9df30792010-02-18 10:24:56 +00001602 kfree(dst);
1603 return NULL;
1604}
Ben Widawskyd0d045e2013-02-24 18:10:00 -08001605#define i915_error_object_create(dev_priv, src) \
1606 i915_error_object_create_sized((dev_priv), (src), \
1607 (src)->base.size>>PAGE_SHIFT)
Chris Wilson9df30792010-02-18 10:24:56 +00001608
1609static void
1610i915_error_object_free(struct drm_i915_error_object *obj)
1611{
1612 int page;
1613
1614 if (obj == NULL)
1615 return;
1616
1617 for (page = 0; page < obj->page_count; page++)
1618 kfree(obj->pages[page]);
1619
1620 kfree(obj);
1621}
1622
Daniel Vetter742cbee2012-04-27 15:17:39 +02001623void
1624i915_error_state_free(struct kref *error_ref)
Chris Wilson9df30792010-02-18 10:24:56 +00001625{
Daniel Vetter742cbee2012-04-27 15:17:39 +02001626 struct drm_i915_error_state *error = container_of(error_ref,
1627 typeof(*error), ref);
Chris Wilsone2f973d2011-01-27 19:15:11 +00001628 int i;
1629
Chris Wilson52d39a22012-02-15 11:25:37 +00001630 for (i = 0; i < ARRAY_SIZE(error->ring); i++) {
1631 i915_error_object_free(error->ring[i].batchbuffer);
1632 i915_error_object_free(error->ring[i].ringbuffer);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001633 i915_error_object_free(error->ring[i].ctx);
Chris Wilson52d39a22012-02-15 11:25:37 +00001634 kfree(error->ring[i].requests);
1635 }
Chris Wilsone2f973d2011-01-27 19:15:11 +00001636
Chris Wilson9df30792010-02-18 10:24:56 +00001637 kfree(error->active_bo);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001638 kfree(error->overlay);
Ben Widawsky7ed73da2013-05-25 14:42:54 -07001639 kfree(error->display);
Chris Wilson9df30792010-02-18 10:24:56 +00001640 kfree(error);
1641}
Chris Wilson1b502472012-04-24 15:47:30 +01001642static void capture_bo(struct drm_i915_error_buffer *err,
1643 struct drm_i915_gem_object *obj)
1644{
1645 err->size = obj->base.size;
1646 err->name = obj->base.name;
Chris Wilson0201f1e2012-07-20 12:41:01 +01001647 err->rseqno = obj->last_read_seqno;
1648 err->wseqno = obj->last_write_seqno;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001649 err->gtt_offset = i915_gem_obj_ggtt_offset(obj);
Chris Wilson1b502472012-04-24 15:47:30 +01001650 err->read_domains = obj->base.read_domains;
1651 err->write_domain = obj->base.write_domain;
1652 err->fence_reg = obj->fence_reg;
1653 err->pinned = 0;
1654 if (obj->pin_count > 0)
1655 err->pinned = 1;
1656 if (obj->user_pin_count > 0)
1657 err->pinned = -1;
1658 err->tiling = obj->tiling_mode;
1659 err->dirty = obj->dirty;
1660 err->purgeable = obj->madv != I915_MADV_WILLNEED;
1661 err->ring = obj->ring ? obj->ring->id : -1;
1662 err->cache_level = obj->cache_level;
1663}
Chris Wilson9df30792010-02-18 10:24:56 +00001664
Chris Wilson1b502472012-04-24 15:47:30 +01001665static u32 capture_active_bo(struct drm_i915_error_buffer *err,
1666 int count, struct list_head *head)
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001667{
1668 struct drm_i915_gem_object *obj;
1669 int i = 0;
1670
1671 list_for_each_entry(obj, head, mm_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001672 capture_bo(err++, obj);
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001673 if (++i == count)
1674 break;
Chris Wilson1b502472012-04-24 15:47:30 +01001675 }
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001676
Chris Wilson1b502472012-04-24 15:47:30 +01001677 return i;
1678}
1679
1680static u32 capture_pinned_bo(struct drm_i915_error_buffer *err,
1681 int count, struct list_head *head)
1682{
1683 struct drm_i915_gem_object *obj;
1684 int i = 0;
1685
Ben Widawsky35c20a62013-05-31 11:28:48 -07001686 list_for_each_entry(obj, head, global_list) {
Chris Wilson1b502472012-04-24 15:47:30 +01001687 if (obj->pin_count == 0)
1688 continue;
1689
1690 capture_bo(err++, obj);
1691 if (++i == count)
1692 break;
Chris Wilsonc724e8a2010-11-22 08:07:02 +00001693 }
1694
1695 return i;
1696}
1697
Chris Wilson748ebc62010-10-24 10:28:47 +01001698static void i915_gem_record_fences(struct drm_device *dev,
1699 struct drm_i915_error_state *error)
1700{
1701 struct drm_i915_private *dev_priv = dev->dev_private;
1702 int i;
1703
1704 /* Fences */
1705 switch (INTEL_INFO(dev)->gen) {
Daniel Vetter775d17b2011-10-09 21:52:01 +02001706 case 7:
Chris Wilson748ebc62010-10-24 10:28:47 +01001707 case 6:
Ville Syrjälä42b5aea2013-04-09 13:02:47 +03001708 for (i = 0; i < dev_priv->num_fence_regs; i++)
Chris Wilson748ebc62010-10-24 10:28:47 +01001709 error->fence[i] = I915_READ64(FENCE_REG_SANDYBRIDGE_0 + (i * 8));
1710 break;
1711 case 5:
1712 case 4:
1713 for (i = 0; i < 16; i++)
1714 error->fence[i] = I915_READ64(FENCE_REG_965_0 + (i * 8));
1715 break;
1716 case 3:
1717 if (IS_I945G(dev) || IS_I945GM(dev) || IS_G33(dev))
1718 for (i = 0; i < 8; i++)
1719 error->fence[i+8] = I915_READ(FENCE_REG_945_8 + (i * 4));
1720 case 2:
1721 for (i = 0; i < 8; i++)
1722 error->fence[i] = I915_READ(FENCE_REG_830_0 + (i * 4));
1723 break;
1724
Ben Widawsky7dbf9d62012-12-18 10:31:22 -08001725 default:
1726 BUG();
Chris Wilson748ebc62010-10-24 10:28:47 +01001727 }
1728}
1729
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001730static struct drm_i915_error_object *
1731i915_error_first_batchbuffer(struct drm_i915_private *dev_priv,
1732 struct intel_ring_buffer *ring)
1733{
1734 struct drm_i915_gem_object *obj;
1735 u32 seqno;
1736
1737 if (!ring->get_seqno)
1738 return NULL;
1739
Daniel Vetterb45305f2012-12-17 16:21:27 +01001740 if (HAS_BROKEN_CS_TLB(dev_priv->dev)) {
1741 u32 acthd = I915_READ(ACTHD);
1742
1743 if (WARN_ON(ring->id != RCS))
1744 return NULL;
1745
1746 obj = ring->private;
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001747 if (acthd >= i915_gem_obj_ggtt_offset(obj) &&
1748 acthd < i915_gem_obj_ggtt_offset(obj) + obj->base.size)
Daniel Vetterb45305f2012-12-17 16:21:27 +01001749 return i915_error_object_create(dev_priv, obj);
1750 }
1751
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001752 seqno = ring->get_seqno(ring, false);
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001753 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list) {
1754 if (obj->ring != ring)
1755 continue;
1756
Chris Wilson0201f1e2012-07-20 12:41:01 +01001757 if (i915_seqno_passed(seqno, obj->last_read_seqno))
Chris Wilsonbcfb2e22011-01-07 21:06:07 +00001758 continue;
1759
1760 if ((obj->base.read_domains & I915_GEM_DOMAIN_COMMAND) == 0)
1761 continue;
1762
1763 /* We need to copy these to an anonymous buffer as the simplest
1764 * method to avoid being overwritten by userspace.
1765 */
1766 return i915_error_object_create(dev_priv, obj);
1767 }
1768
1769 return NULL;
1770}
1771
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001772static void i915_record_ring_state(struct drm_device *dev,
1773 struct drm_i915_error_state *error,
1774 struct intel_ring_buffer *ring)
1775{
1776 struct drm_i915_private *dev_priv = dev->dev_private;
1777
Daniel Vetter33f3f512011-12-14 13:57:39 +01001778 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilson12f55812012-07-05 17:14:01 +01001779 error->rc_psmi[ring->id] = I915_READ(ring->mmio_base + 0x50);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001780 error->fault_reg[ring->id] = I915_READ(RING_FAULT_REG(ring));
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001781 error->semaphore_mboxes[ring->id][0]
1782 = I915_READ(RING_SYNC_0(ring->mmio_base));
1783 error->semaphore_mboxes[ring->id][1]
1784 = I915_READ(RING_SYNC_1(ring->mmio_base));
Chris Wilsondf2b23d2012-11-27 17:06:54 +00001785 error->semaphore_seqno[ring->id][0] = ring->sync_seqno[0];
1786 error->semaphore_seqno[ring->id][1] = ring->sync_seqno[1];
Daniel Vetter33f3f512011-12-14 13:57:39 +01001787 }
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001788
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001789 if (INTEL_INFO(dev)->gen >= 4) {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001790 error->faddr[ring->id] = I915_READ(RING_DMA_FADD(ring->mmio_base));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001791 error->ipeir[ring->id] = I915_READ(RING_IPEIR(ring->mmio_base));
1792 error->ipehr[ring->id] = I915_READ(RING_IPEHR(ring->mmio_base));
1793 error->instdone[ring->id] = I915_READ(RING_INSTDONE(ring->mmio_base));
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001794 error->instps[ring->id] = I915_READ(RING_INSTPS(ring->mmio_base));
Ben Widawsky050ee912012-08-22 11:32:15 -07001795 if (ring->id == RCS)
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001796 error->bbaddr = I915_READ64(BB_ADDR);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001797 } else {
Daniel Vetter9d2f41f2012-04-02 21:41:45 +02001798 error->faddr[ring->id] = I915_READ(DMA_FADD_I8XX);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001799 error->ipeir[ring->id] = I915_READ(IPEIR);
1800 error->ipehr[ring->id] = I915_READ(IPEHR);
1801 error->instdone[ring->id] = I915_READ(INSTDONE);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001802 }
1803
Ben Widawsky9574b3f2012-04-26 16:03:01 -07001804 error->waiting[ring->id] = waitqueue_active(&ring->irq_queue);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001805 error->instpm[ring->id] = I915_READ(RING_INSTPM(ring->mmio_base));
Chris Wilsonb2eadbc2012-08-09 10:58:30 +01001806 error->seqno[ring->id] = ring->get_seqno(ring, false);
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001807 error->acthd[ring->id] = intel_ring_get_active_head(ring);
Daniel Vetterc1cd90e2011-12-14 13:57:02 +01001808 error->head[ring->id] = I915_READ_HEAD(ring);
1809 error->tail[ring->id] = I915_READ_TAIL(ring);
Chris Wilson0f3b6842013-01-15 12:05:55 +00001810 error->ctl[ring->id] = I915_READ_CTL(ring);
Daniel Vetter7e3b8732012-02-01 22:26:45 +01001811
1812 error->cpu_ring_head[ring->id] = ring->head;
1813 error->cpu_ring_tail[ring->id] = ring->tail;
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001814}
1815
Ben Widawsky8c123e52013-03-04 17:00:29 -08001816
1817static void i915_gem_record_active_context(struct intel_ring_buffer *ring,
1818 struct drm_i915_error_state *error,
1819 struct drm_i915_error_ring *ering)
1820{
1821 struct drm_i915_private *dev_priv = ring->dev->dev_private;
1822 struct drm_i915_gem_object *obj;
1823
1824 /* Currently render ring is the only HW context user */
1825 if (ring->id != RCS || !error->ccid)
1826 return;
1827
Ben Widawsky35c20a62013-05-31 11:28:48 -07001828 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list) {
Ben Widawskyf343c5f2013-07-05 14:41:04 -07001829 if ((error->ccid & PAGE_MASK) == i915_gem_obj_ggtt_offset(obj)) {
Ben Widawsky8c123e52013-03-04 17:00:29 -08001830 ering->ctx = i915_error_object_create_sized(dev_priv,
1831 obj, 1);
Damien Lespiau3ef8fb52013-06-24 14:54:50 +01001832 break;
Ben Widawsky8c123e52013-03-04 17:00:29 -08001833 }
1834 }
1835}
1836
Chris Wilson52d39a22012-02-15 11:25:37 +00001837static void i915_gem_record_rings(struct drm_device *dev,
1838 struct drm_i915_error_state *error)
1839{
1840 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01001841 struct intel_ring_buffer *ring;
Chris Wilson52d39a22012-02-15 11:25:37 +00001842 struct drm_i915_gem_request *request;
1843 int i, count;
1844
Chris Wilsonb4519512012-05-11 14:29:30 +01001845 for_each_ring(ring, dev_priv, i) {
Chris Wilson52d39a22012-02-15 11:25:37 +00001846 i915_record_ring_state(dev, error, ring);
1847
1848 error->ring[i].batchbuffer =
1849 i915_error_first_batchbuffer(dev_priv, ring);
1850
1851 error->ring[i].ringbuffer =
1852 i915_error_object_create(dev_priv, ring->obj);
1853
Ben Widawsky8c123e52013-03-04 17:00:29 -08001854
1855 i915_gem_record_active_context(ring, error, &error->ring[i]);
1856
Chris Wilson52d39a22012-02-15 11:25:37 +00001857 count = 0;
1858 list_for_each_entry(request, &ring->request_list, list)
1859 count++;
1860
1861 error->ring[i].num_requests = count;
1862 error->ring[i].requests =
1863 kmalloc(count*sizeof(struct drm_i915_error_request),
1864 GFP_ATOMIC);
1865 if (error->ring[i].requests == NULL) {
1866 error->ring[i].num_requests = 0;
1867 continue;
1868 }
1869
1870 count = 0;
1871 list_for_each_entry(request, &ring->request_list, list) {
1872 struct drm_i915_error_request *erq;
1873
1874 erq = &error->ring[i].requests[count++];
1875 erq->seqno = request->seqno;
1876 erq->jiffies = request->emitted_jiffies;
Chris Wilsonee4f42b2012-02-15 11:25:38 +00001877 erq->tail = request->tail;
Chris Wilson52d39a22012-02-15 11:25:37 +00001878 }
1879 }
1880}
1881
Ben Widawsky26b7c222013-06-27 16:30:03 -07001882static void i915_gem_capture_buffers(struct drm_i915_private *dev_priv,
1883 struct drm_i915_error_state *error)
1884{
1885 struct drm_i915_gem_object *obj;
1886 int i;
1887
1888 i = 0;
1889 list_for_each_entry(obj, &dev_priv->mm.active_list, mm_list)
1890 i++;
1891 error->active_bo_count = i;
1892 list_for_each_entry(obj, &dev_priv->mm.bound_list, global_list)
1893 if (obj->pin_count)
1894 i++;
1895 error->pinned_bo_count = i - error->active_bo_count;
1896
1897 if (i) {
1898 error->active_bo = kmalloc(sizeof(*error->active_bo)*i,
1899 GFP_ATOMIC);
1900 if (error->active_bo)
1901 error->pinned_bo =
1902 error->active_bo + error->active_bo_count;
1903 }
1904
1905 if (error->active_bo)
1906 error->active_bo_count =
1907 capture_active_bo(error->active_bo,
1908 error->active_bo_count,
1909 &dev_priv->mm.active_list);
1910
1911 if (error->pinned_bo)
1912 error->pinned_bo_count =
1913 capture_pinned_bo(error->pinned_bo,
1914 error->pinned_bo_count,
1915 &dev_priv->mm.bound_list);
1916}
1917
Jesse Barnes8a905232009-07-11 16:48:03 -04001918/**
1919 * i915_capture_error_state - capture an error record for later analysis
1920 * @dev: drm device
1921 *
1922 * Should be called when an error is detected (either a hang or an error
1923 * interrupt) to capture error state from the time of the error. Fills
1924 * out a structure which becomes available in debugfs for user level tools
1925 * to pick up.
1926 */
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001927static void i915_capture_error_state(struct drm_device *dev)
1928{
1929 struct drm_i915_private *dev_priv = dev->dev_private;
1930 struct drm_i915_error_state *error;
1931 unsigned long flags;
Ben Widawsky26b7c222013-06-27 16:30:03 -07001932 int pipe;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001933
Daniel Vetter99584db2012-11-14 17:14:04 +01001934 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1935 error = dev_priv->gpu_error.first_error;
1936 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00001937 if (error)
1938 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001939
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001940 /* Account for pipe specific data like PIPE*STAT */
Daniel Vetter33f3f512011-12-14 13:57:39 +01001941 error = kzalloc(sizeof(*error), GFP_ATOMIC);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001942 if (!error) {
Chris Wilson9df30792010-02-18 10:24:56 +00001943 DRM_DEBUG_DRIVER("out of memory, not capturing error state\n");
1944 return;
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001945 }
1946
Paulo Zanoni5d83d292013-03-06 20:03:22 -03001947 DRM_INFO("capturing error event; look for more information in "
Mika Kuoppalaef86ddc2013-06-06 17:38:54 +03001948 "/sys/class/drm/card%d/error\n", dev->primary->index);
Chris Wilson2fa772f2010-10-01 13:23:27 +01001949
Daniel Vetter742cbee2012-04-27 15:17:39 +02001950 kref_init(&error->ref);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07001951 error->eir = I915_READ(EIR);
1952 error->pgtbl_er = I915_READ(PGTBL_ER);
Ben Widawsky211816e2013-02-24 18:10:01 -08001953 if (HAS_HW_CONTEXTS(dev))
1954 error->ccid = I915_READ(CCID);
Ben Widawskybe998e22012-04-26 16:03:00 -07001955
1956 if (HAS_PCH_SPLIT(dev))
1957 error->ier = I915_READ(DEIER) | I915_READ(GTIER);
1958 else if (IS_VALLEYVIEW(dev))
1959 error->ier = I915_READ(GTIER) | I915_READ(VLV_IER);
1960 else if (IS_GEN2(dev))
1961 error->ier = I915_READ16(IER);
1962 else
1963 error->ier = I915_READ(IER);
1964
Chris Wilson0f3b6842013-01-15 12:05:55 +00001965 if (INTEL_INFO(dev)->gen >= 6)
1966 error->derrmr = I915_READ(DERRMR);
1967
1968 if (IS_VALLEYVIEW(dev))
1969 error->forcewake = I915_READ(FORCEWAKE_VLV);
1970 else if (INTEL_INFO(dev)->gen >= 7)
1971 error->forcewake = I915_READ(FORCEWAKE_MT);
1972 else if (INTEL_INFO(dev)->gen == 6)
1973 error->forcewake = I915_READ(FORCEWAKE);
1974
Paulo Zanoni4f3308b2013-03-22 14:24:16 -03001975 if (!HAS_PCH_SPLIT(dev))
1976 for_each_pipe(pipe)
1977 error->pipestat[pipe] = I915_READ(PIPESTAT(pipe));
Daniel Vetterd27b1e02011-12-14 13:57:01 +01001978
Daniel Vetter33f3f512011-12-14 13:57:39 +01001979 if (INTEL_INFO(dev)->gen >= 6) {
Chris Wilsonf4068392010-10-27 20:36:41 +01001980 error->error = I915_READ(ERROR_GEN6);
Daniel Vetter33f3f512011-12-14 13:57:39 +01001981 error->done_reg = I915_READ(DONE_REG);
1982 }
Chris Wilsonadd354d2010-10-29 19:00:51 +01001983
Ben Widawsky71e172e2012-08-20 16:15:13 -07001984 if (INTEL_INFO(dev)->gen == 7)
1985 error->err_int = I915_READ(GEN7_ERR_INT);
1986
Ben Widawsky050ee912012-08-22 11:32:15 -07001987 i915_get_extra_instdone(dev, error->extra_instdone);
1988
Ben Widawsky26b7c222013-06-27 16:30:03 -07001989 i915_gem_capture_buffers(dev_priv, error);
Chris Wilson748ebc62010-10-24 10:28:47 +01001990 i915_gem_record_fences(dev, error);
Chris Wilson52d39a22012-02-15 11:25:37 +00001991 i915_gem_record_rings(dev, error);
Chris Wilson9df30792010-02-18 10:24:56 +00001992
Jesse Barnes8a905232009-07-11 16:48:03 -04001993 do_gettimeofday(&error->time);
1994
Chris Wilson6ef3d422010-08-04 20:26:07 +01001995 error->overlay = intel_overlay_capture_error_state(dev);
Chris Wilsonc4a1d9e2010-11-21 13:12:35 +00001996 error->display = intel_display_capture_error_state(dev);
Chris Wilson6ef3d422010-08-04 20:26:07 +01001997
Daniel Vetter99584db2012-11-14 17:14:04 +01001998 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
1999 if (dev_priv->gpu_error.first_error == NULL) {
2000 dev_priv->gpu_error.first_error = error;
Chris Wilson9df30792010-02-18 10:24:56 +00002001 error = NULL;
2002 }
Daniel Vetter99584db2012-11-14 17:14:04 +01002003 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00002004
2005 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02002006 i915_error_state_free(&error->ref);
Chris Wilson9df30792010-02-18 10:24:56 +00002007}
2008
2009void i915_destroy_error_state(struct drm_device *dev)
2010{
2011 struct drm_i915_private *dev_priv = dev->dev_private;
2012 struct drm_i915_error_state *error;
Ben Widawsky6dc0e812012-01-23 15:30:02 -08002013 unsigned long flags;
Chris Wilson9df30792010-02-18 10:24:56 +00002014
Daniel Vetter99584db2012-11-14 17:14:04 +01002015 spin_lock_irqsave(&dev_priv->gpu_error.lock, flags);
2016 error = dev_priv->gpu_error.first_error;
2017 dev_priv->gpu_error.first_error = NULL;
2018 spin_unlock_irqrestore(&dev_priv->gpu_error.lock, flags);
Chris Wilson9df30792010-02-18 10:24:56 +00002019
2020 if (error)
Daniel Vetter742cbee2012-04-27 15:17:39 +02002021 kref_put(&error->ref, i915_error_state_free);
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002022}
Chris Wilson3bd3c932010-08-19 08:19:30 +01002023#else
2024#define i915_capture_error_state(x)
2025#endif
Jesse Barnes63eeaf32009-06-18 16:56:52 -07002026
Chris Wilson35aed2e2010-05-27 13:18:12 +01002027static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002028{
2029 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002030 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002031 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002032 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002033
Chris Wilson35aed2e2010-05-27 13:18:12 +01002034 if (!eir)
2035 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002036
Joe Perchesa70491c2012-03-18 13:00:11 -07002037 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002038
Ben Widawskybd9854f2012-08-23 15:18:09 -07002039 i915_get_extra_instdone(dev, instdone);
2040
Jesse Barnes8a905232009-07-11 16:48:03 -04002041 if (IS_G4X(dev)) {
2042 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2043 u32 ipeir = I915_READ(IPEIR_I965);
2044
Joe Perchesa70491c2012-03-18 13:00:11 -07002045 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2046 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002047 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2048 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002049 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002050 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002051 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002052 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002053 }
2054 if (eir & GM45_ERROR_PAGE_TABLE) {
2055 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002056 pr_err("page table error\n");
2057 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002058 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002059 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002060 }
2061 }
2062
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002063 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002064 if (eir & I915_ERROR_PAGE_TABLE) {
2065 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002066 pr_err("page table error\n");
2067 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002068 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002069 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002070 }
2071 }
2072
2073 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002074 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002075 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002076 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002077 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002078 /* pipestat has already been acked */
2079 }
2080 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002081 pr_err("instruction error\n");
2082 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002083 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2084 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002085 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002086 u32 ipeir = I915_READ(IPEIR);
2087
Joe Perchesa70491c2012-03-18 13:00:11 -07002088 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2089 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002090 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002091 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002092 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002093 } else {
2094 u32 ipeir = I915_READ(IPEIR_I965);
2095
Joe Perchesa70491c2012-03-18 13:00:11 -07002096 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2097 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002098 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002099 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002100 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002101 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002102 }
2103 }
2104
2105 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002106 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002107 eir = I915_READ(EIR);
2108 if (eir) {
2109 /*
2110 * some errors might have become stuck,
2111 * mask them.
2112 */
2113 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2114 I915_WRITE(EMR, I915_READ(EMR) | eir);
2115 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2116 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002117}
2118
2119/**
2120 * i915_handle_error - handle an error interrupt
2121 * @dev: drm device
2122 *
2123 * Do some basic checking of regsiter state at error interrupt time and
2124 * dump it to the syslog. Also call i915_capture_error_state() to make
2125 * sure we get a record and make it available in debugfs. Fire a uevent
2126 * so userspace knows something bad happened (should trigger collection
2127 * of a ring dump etc.).
2128 */
Chris Wilson527f9e92010-11-11 01:16:58 +00002129void i915_handle_error(struct drm_device *dev, bool wedged)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002130{
2131 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002132 struct intel_ring_buffer *ring;
2133 int i;
Chris Wilson35aed2e2010-05-27 13:18:12 +01002134
2135 i915_capture_error_state(dev);
2136 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002137
Ben Gamariba1234d2009-09-14 17:48:47 -04002138 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002139 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2140 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002141
Ben Gamari11ed50e2009-09-14 17:48:45 -04002142 /*
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002143 * Wakeup waiting processes so that the reset work item
2144 * doesn't deadlock trying to grab various locks.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002145 */
Chris Wilsonb4519512012-05-11 14:29:30 +01002146 for_each_ring(ring, dev_priv, i)
2147 wake_up_all(&ring->irq_queue);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002148 }
2149
Daniel Vetter99584db2012-11-14 17:14:04 +01002150 queue_work(dev_priv->wq, &dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002151}
2152
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002153static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002154{
2155 drm_i915_private_t *dev_priv = dev->dev_private;
2156 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2157 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002158 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002159 struct intel_unpin_work *work;
2160 unsigned long flags;
2161 bool stall_detected;
2162
2163 /* Ignore early vblank irqs */
2164 if (intel_crtc == NULL)
2165 return;
2166
2167 spin_lock_irqsave(&dev->event_lock, flags);
2168 work = intel_crtc->unpin_work;
2169
Chris Wilsone7d841c2012-12-03 11:36:30 +00002170 if (work == NULL ||
2171 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2172 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002173 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2174 spin_unlock_irqrestore(&dev->event_lock, flags);
2175 return;
2176 }
2177
2178 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002179 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002180 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002181 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002182 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002183 i915_gem_obj_ggtt_offset(obj);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002184 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002185 int dspaddr = DSPADDR(intel_crtc->plane);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002186 stall_detected = I915_READ(dspaddr) == (i915_gem_obj_ggtt_offset(obj) +
Ville Syrjälä01f2c772011-12-20 00:06:49 +02002187 crtc->y * crtc->fb->pitches[0] +
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002188 crtc->x * crtc->fb->bits_per_pixel/8);
2189 }
2190
2191 spin_unlock_irqrestore(&dev->event_lock, flags);
2192
2193 if (stall_detected) {
2194 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2195 intel_prepare_page_flip(dev, intel_crtc->plane);
2196 }
2197}
2198
Keith Packard42f52ef2008-10-18 19:39:29 -07002199/* Called from drm generic code, passed 'crtc' which
2200 * we use as a pipe index
2201 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002202static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002203{
2204 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002205 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002206
Chris Wilson5eddb702010-09-11 13:48:45 +01002207 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002208 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002209
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002210 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002211 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002212 i915_enable_pipestat(dev_priv, pipe,
2213 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Keith Packarde9d21d72008-10-16 11:31:38 -07002214 else
Keith Packard7c463582008-11-04 02:03:27 -08002215 i915_enable_pipestat(dev_priv, pipe,
2216 PIPE_VBLANK_INTERRUPT_ENABLE);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002217
2218 /* maintain vblank delivery even in deep C-states */
2219 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002220 I915_WRITE(INSTPM, _MASKED_BIT_DISABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002221 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002222
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002223 return 0;
2224}
2225
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002226static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002227{
2228 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2229 unsigned long irqflags;
2230
2231 if (!i915_pipe_enabled(dev, pipe))
2232 return -EINVAL;
2233
2234 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2235 ironlake_enable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002236 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002237 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2238
2239 return 0;
2240}
2241
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002242static int ivybridge_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002243{
2244 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2245 unsigned long irqflags;
2246
2247 if (!i915_pipe_enabled(dev, pipe))
2248 return -EINVAL;
2249
2250 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002251 ironlake_enable_display_irq(dev_priv,
2252 DE_PIPEA_VBLANK_IVB << (5 * pipe));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002253 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2254
2255 return 0;
2256}
2257
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002258static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2259{
2260 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2261 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002262 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002263
2264 if (!i915_pipe_enabled(dev, pipe))
2265 return -EINVAL;
2266
2267 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002268 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002269 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002270 imr &= ~I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002271 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002272 imr &= ~I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002273 I915_WRITE(VLV_IMR, imr);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002274 i915_enable_pipestat(dev_priv, pipe,
2275 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002276 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2277
2278 return 0;
2279}
2280
Keith Packard42f52ef2008-10-18 19:39:29 -07002281/* Called from drm generic code, passed 'crtc' which
2282 * we use as a pipe index
2283 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002284static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002285{
2286 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002287 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002288
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002289 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002290 if (dev_priv->info->gen == 3)
Daniel Vetter6b26c862012-04-24 14:04:12 +02002291 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_DIS));
Chris Wilson8692d00e2011-02-05 10:08:21 +00002292
Jesse Barnesf796cf82011-04-07 13:58:17 -07002293 i915_disable_pipestat(dev_priv, pipe,
2294 PIPE_VBLANK_INTERRUPT_ENABLE |
2295 PIPE_START_VBLANK_INTERRUPT_ENABLE);
2296 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2297}
2298
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002299static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002300{
2301 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2302 unsigned long irqflags;
2303
2304 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
2305 ironlake_disable_display_irq(dev_priv, (pipe == 0) ?
Akshay Joshi0206e352011-08-16 15:34:10 -04002306 DE_PIPEA_VBLANK : DE_PIPEB_VBLANK);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002307 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002308}
2309
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002310static void ivybridge_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002311{
2312 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2313 unsigned long irqflags;
2314
2315 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Chris Wilsonb615b572012-05-02 09:52:12 +01002316 ironlake_disable_display_irq(dev_priv,
2317 DE_PIPEA_VBLANK_IVB << (pipe * 5));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002318 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2319}
2320
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002321static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2322{
2323 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2324 unsigned long irqflags;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002325 u32 imr;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002326
2327 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002328 i915_disable_pipestat(dev_priv, pipe,
2329 PIPE_START_VBLANK_INTERRUPT_ENABLE);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002330 imr = I915_READ(VLV_IMR);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002331 if (pipe == 0)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002332 imr |= I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002333 else
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002334 imr |= I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002335 I915_WRITE(VLV_IMR, imr);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002336 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2337}
2338
Chris Wilson893eead2010-10-27 14:44:35 +01002339static u32
2340ring_last_seqno(struct intel_ring_buffer *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002341{
Chris Wilson893eead2010-10-27 14:44:35 +01002342 return list_entry(ring->request_list.prev,
2343 struct drm_i915_gem_request, list)->seqno;
2344}
2345
Chris Wilson9107e9d2013-06-10 11:20:20 +01002346static bool
2347ring_idle(struct intel_ring_buffer *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002348{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002349 return (list_empty(&ring->request_list) ||
2350 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04002351}
2352
Chris Wilson6274f212013-06-10 11:20:21 +01002353static struct intel_ring_buffer *
2354semaphore_waits_for(struct intel_ring_buffer *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002355{
2356 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Chris Wilson6274f212013-06-10 11:20:21 +01002357 u32 cmd, ipehr, acthd, acthd_min;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002358
2359 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
2360 if ((ipehr & ~(0x3 << 16)) !=
2361 (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE | MI_SEMAPHORE_REGISTER))
Chris Wilson6274f212013-06-10 11:20:21 +01002362 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002363
2364 /* ACTHD is likely pointing to the dword after the actual command,
2365 * so scan backwards until we find the MBOX.
2366 */
Chris Wilson6274f212013-06-10 11:20:21 +01002367 acthd = intel_ring_get_active_head(ring) & HEAD_ADDR;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002368 acthd_min = max((int)acthd - 3 * 4, 0);
2369 do {
2370 cmd = ioread32(ring->virtual_start + acthd);
2371 if (cmd == ipehr)
2372 break;
2373
2374 acthd -= 4;
2375 if (acthd < acthd_min)
Chris Wilson6274f212013-06-10 11:20:21 +01002376 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002377 } while (1);
2378
Chris Wilson6274f212013-06-10 11:20:21 +01002379 *seqno = ioread32(ring->virtual_start+acthd+4)+1;
2380 return &dev_priv->ring[(ring->id + (((ipehr >> 17) & 1) + 1)) % 3];
Chris Wilsona24a11e2013-03-14 17:52:05 +02002381}
2382
Chris Wilson6274f212013-06-10 11:20:21 +01002383static int semaphore_passed(struct intel_ring_buffer *ring)
2384{
2385 struct drm_i915_private *dev_priv = ring->dev->dev_private;
2386 struct intel_ring_buffer *signaller;
2387 u32 seqno, ctl;
2388
2389 ring->hangcheck.deadlock = true;
2390
2391 signaller = semaphore_waits_for(ring, &seqno);
2392 if (signaller == NULL || signaller->hangcheck.deadlock)
2393 return -1;
2394
2395 /* cursory check for an unkickable deadlock */
2396 ctl = I915_READ_CTL(signaller);
2397 if (ctl & RING_WAIT_SEMAPHORE && semaphore_passed(signaller) < 0)
2398 return -1;
2399
2400 return i915_seqno_passed(signaller->get_seqno(signaller, false), seqno);
2401}
2402
2403static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2404{
2405 struct intel_ring_buffer *ring;
2406 int i;
2407
2408 for_each_ring(ring, dev_priv, i)
2409 ring->hangcheck.deadlock = false;
2410}
2411
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002412static enum intel_ring_hangcheck_action
2413ring_stuck(struct intel_ring_buffer *ring, u32 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002414{
2415 struct drm_device *dev = ring->dev;
2416 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002417 u32 tmp;
2418
Chris Wilson6274f212013-06-10 11:20:21 +01002419 if (ring->hangcheck.acthd != acthd)
2420 return active;
2421
Chris Wilson9107e9d2013-06-10 11:20:20 +01002422 if (IS_GEN2(dev))
Chris Wilson6274f212013-06-10 11:20:21 +01002423 return hung;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002424
2425 /* Is the chip hanging on a WAIT_FOR_EVENT?
2426 * If so we can simply poke the RB_WAIT bit
2427 * and break the hang. This should work on
2428 * all but the second generation chipsets.
2429 */
2430 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002431 if (tmp & RING_WAIT) {
2432 DRM_ERROR("Kicking stuck wait on %s\n",
2433 ring->name);
2434 I915_WRITE_CTL(ring, tmp);
Chris Wilson6274f212013-06-10 11:20:21 +01002435 return kick;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002436 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002437
Chris Wilson6274f212013-06-10 11:20:21 +01002438 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2439 switch (semaphore_passed(ring)) {
2440 default:
2441 return hung;
2442 case 1:
2443 DRM_ERROR("Kicking stuck semaphore on %s\n",
2444 ring->name);
2445 I915_WRITE_CTL(ring, tmp);
2446 return kick;
2447 case 0:
2448 return wait;
2449 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002450 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002451
Chris Wilson6274f212013-06-10 11:20:21 +01002452 return hung;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002453}
2454
Ben Gamarif65d9422009-09-14 17:48:44 -04002455/**
2456 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002457 * batchbuffers in a long time. We keep track per ring seqno progress and
2458 * if there are no progress, hangcheck score for that ring is increased.
2459 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2460 * we kick the ring. If we see no progress on three subsequent calls
2461 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002462 */
2463void i915_hangcheck_elapsed(unsigned long data)
2464{
2465 struct drm_device *dev = (struct drm_device *)data;
2466 drm_i915_private_t *dev_priv = dev->dev_private;
Chris Wilsonb4519512012-05-11 14:29:30 +01002467 struct intel_ring_buffer *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002468 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002469 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002470 bool stuck[I915_NUM_RINGS] = { 0 };
2471#define BUSY 1
2472#define KICK 5
2473#define HUNG 20
2474#define FIRE 30
Chris Wilson893eead2010-10-27 14:44:35 +01002475
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002476 if (!i915_enable_hangcheck)
2477 return;
2478
Chris Wilsonb4519512012-05-11 14:29:30 +01002479 for_each_ring(ring, dev_priv, i) {
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002480 u32 seqno, acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002481 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002482
Chris Wilson6274f212013-06-10 11:20:21 +01002483 semaphore_clear_deadlocks(dev_priv);
2484
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002485 seqno = ring->get_seqno(ring, false);
2486 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002487
Chris Wilson9107e9d2013-06-10 11:20:20 +01002488 if (ring->hangcheck.seqno == seqno) {
2489 if (ring_idle(ring, seqno)) {
2490 if (waitqueue_active(&ring->irq_queue)) {
2491 /* Issue a wake-up to catch stuck h/w. */
2492 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2493 ring->name);
2494 wake_up_all(&ring->irq_queue);
2495 ring->hangcheck.score += HUNG;
2496 } else
2497 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002498 } else {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002499 int score;
2500
Chris Wilson6274f212013-06-10 11:20:21 +01002501 /* We always increment the hangcheck score
2502 * if the ring is busy and still processing
2503 * the same request, so that no single request
2504 * can run indefinitely (such as a chain of
2505 * batches). The only time we do not increment
2506 * the hangcheck score on this ring, if this
2507 * ring is in a legitimate wait for another
2508 * ring. In that case the waiting ring is a
2509 * victim and we want to be sure we catch the
2510 * right culprit. Then every time we do kick
2511 * the ring, add a small increment to the
2512 * score so that we can catch a batch that is
2513 * being repeatedly kicked and so responsible
2514 * for stalling the machine.
2515 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002516 ring->hangcheck.action = ring_stuck(ring,
2517 acthd);
2518
2519 switch (ring->hangcheck.action) {
Chris Wilson6274f212013-06-10 11:20:21 +01002520 case wait:
2521 score = 0;
2522 break;
2523 case active:
Chris Wilson9107e9d2013-06-10 11:20:20 +01002524 score = BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01002525 break;
2526 case kick:
2527 score = KICK;
2528 break;
2529 case hung:
2530 score = HUNG;
2531 stuck[i] = true;
2532 break;
2533 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002534 ring->hangcheck.score += score;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002535 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002536 } else {
2537 /* Gradually reduce the count so that we catch DoS
2538 * attempts across multiple batches.
2539 */
2540 if (ring->hangcheck.score > 0)
2541 ring->hangcheck.score--;
Chris Wilsond1e61e72012-04-10 17:00:41 +01002542 }
2543
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002544 ring->hangcheck.seqno = seqno;
2545 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002546 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01002547 }
Eric Anholtb9201c12010-01-08 14:25:16 -08002548
Mika Kuoppala92cab732013-05-24 17:16:07 +03002549 for_each_ring(ring, dev_priv, i) {
Chris Wilson9107e9d2013-06-10 11:20:20 +01002550 if (ring->hangcheck.score > FIRE) {
Ben Widawskyacd78c12013-06-13 21:33:33 -07002551 DRM_ERROR("%s on %s\n",
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002552 stuck[i] ? "stuck" : "no progress",
Chris Wilsona43adf02013-06-10 11:20:22 +01002553 ring->name);
2554 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03002555 }
2556 }
2557
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002558 if (rings_hung)
2559 return i915_handle_error(dev, true);
Ben Gamarif65d9422009-09-14 17:48:44 -04002560
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002561 if (busy_count)
2562 /* Reset timer case chip hangs without another request
2563 * being added */
2564 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
2565 round_jiffies_up(jiffies +
2566 DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04002567}
2568
Paulo Zanoni91738a92013-06-05 14:21:51 -03002569static void ibx_irq_preinstall(struct drm_device *dev)
2570{
2571 struct drm_i915_private *dev_priv = dev->dev_private;
2572
2573 if (HAS_PCH_NOP(dev))
2574 return;
2575
2576 /* south display irq */
2577 I915_WRITE(SDEIMR, 0xffffffff);
2578 /*
2579 * SDEIER is also touched by the interrupt handler to work around missed
2580 * PCH interrupts. Hence we can't update it after the interrupt handler
2581 * is enabled - instead we unconditionally enable all PCH interrupt
2582 * sources here, but then only unmask them as needed with SDEIMR.
2583 */
2584 I915_WRITE(SDEIER, 0xffffffff);
2585 POSTING_READ(SDEIER);
2586}
2587
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588/* drm_dma.h hooks
2589*/
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002590static void ironlake_irq_preinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002591{
2592 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2593
Jesse Barnes46979952011-04-07 13:53:55 -07002594 atomic_set(&dev_priv->irq_received, 0);
2595
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002596 I915_WRITE(HWSTAM, 0xeffe);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01002597
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002598 /* XXX hotplug from PCH */
2599
2600 I915_WRITE(DEIMR, 0xffffffff);
2601 I915_WRITE(DEIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002602 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002603
2604 /* and GT */
2605 I915_WRITE(GTIMR, 0xffffffff);
2606 I915_WRITE(GTIER, 0x0);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002607 POSTING_READ(GTIER);
Zhenyu Wangc6501562009-11-03 18:57:21 +00002608
Paulo Zanoni91738a92013-06-05 14:21:51 -03002609 ibx_irq_preinstall(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07002610}
2611
2612static void ivybridge_irq_preinstall(struct drm_device *dev)
2613{
2614 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2615
2616 atomic_set(&dev_priv->irq_received, 0);
2617
2618 I915_WRITE(HWSTAM, 0xeffe);
2619
2620 /* XXX hotplug from PCH */
2621
2622 I915_WRITE(DEIMR, 0xffffffff);
2623 I915_WRITE(DEIER, 0x0);
2624 POSTING_READ(DEIER);
2625
2626 /* and GT */
2627 I915_WRITE(GTIMR, 0xffffffff);
2628 I915_WRITE(GTIER, 0x0);
2629 POSTING_READ(GTIER);
2630
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002631 /* Power management */
2632 I915_WRITE(GEN6_PMIMR, 0xffffffff);
2633 I915_WRITE(GEN6_PMIER, 0x0);
2634 POSTING_READ(GEN6_PMIER);
2635
Paulo Zanoni91738a92013-06-05 14:21:51 -03002636 ibx_irq_preinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002637}
2638
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002639static void valleyview_irq_preinstall(struct drm_device *dev)
2640{
2641 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2642 int pipe;
2643
2644 atomic_set(&dev_priv->irq_received, 0);
2645
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002646 /* VLV magic */
2647 I915_WRITE(VLV_IMR, 0);
2648 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
2649 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
2650 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
2651
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002652 /* and GT */
2653 I915_WRITE(GTIIR, I915_READ(GTIIR));
2654 I915_WRITE(GTIIR, I915_READ(GTIIR));
2655 I915_WRITE(GTIMR, 0xffffffff);
2656 I915_WRITE(GTIER, 0x0);
2657 POSTING_READ(GTIER);
2658
2659 I915_WRITE(DPINVGTT, 0xff);
2660
2661 I915_WRITE(PORT_HOTPLUG_EN, 0);
2662 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2663 for_each_pipe(pipe)
2664 I915_WRITE(PIPESTAT(pipe), 0xffff);
2665 I915_WRITE(VLV_IIR, 0xffffffff);
2666 I915_WRITE(VLV_IMR, 0xffffffff);
2667 I915_WRITE(VLV_IER, 0x0);
2668 POSTING_READ(VLV_IER);
2669}
2670
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002671static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07002672{
2673 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002674 struct drm_mode_config *mode_config = &dev->mode_config;
2675 struct intel_encoder *intel_encoder;
Daniel Vetterfee884e2013-07-04 23:35:21 +02002676 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
Keith Packard7fe0b972011-09-19 13:31:02 -07002677
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002678 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02002679 hotplug_irqs = SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002680 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002681 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02002682 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002683 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02002684 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002685 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02002686 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02002687 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002688 }
2689
Daniel Vetterfee884e2013-07-04 23:35:21 +02002690 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002691
2692 /*
2693 * Enable digital hotplug on the PCH, and configure the DP short pulse
2694 * duration to 2ms (which is the minimum in the Display Port spec)
2695 *
2696 * This register is the same on all known PCH chips.
2697 */
Keith Packard7fe0b972011-09-19 13:31:02 -07002698 hotplug = I915_READ(PCH_PORT_HOTPLUG);
2699 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
2700 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
2701 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
2702 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
2703 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
2704}
2705
Paulo Zanonid46da432013-02-08 17:35:15 -02002706static void ibx_irq_postinstall(struct drm_device *dev)
2707{
2708 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01002709 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02002710
Daniel Vetter692a04c2013-05-29 21:43:05 +02002711 if (HAS_PCH_NOP(dev))
2712 return;
2713
Paulo Zanoni86642812013-04-12 17:57:57 -03002714 if (HAS_PCH_IBX(dev)) {
2715 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_TRANSB_FIFO_UNDER |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002716 SDE_TRANSA_FIFO_UNDER | SDE_POISON;
Paulo Zanoni86642812013-04-12 17:57:57 -03002717 } else {
2718 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT | SDE_ERROR_CPT;
2719
2720 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
2721 }
Ben Widawskyab5c6082013-04-05 13:12:41 -07002722
Paulo Zanonid46da432013-02-08 17:35:15 -02002723 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
2724 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02002725}
2726
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002727static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002728{
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002729 unsigned long irqflags;
2730
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002731 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2732 /* enable kind of interrupts always enabled */
Jesse Barnes013d5aa2010-01-29 11:18:31 -08002733 u32 display_mask = DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
Daniel Vetterce99c252012-12-01 13:53:47 +01002734 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Paulo Zanoni86642812013-04-12 17:57:57 -03002735 DE_AUX_CHANNEL_A | DE_PIPEB_FIFO_UNDERRUN |
Paulo Zanonide032bf2013-04-12 17:57:58 -03002736 DE_PIPEA_FIFO_UNDERRUN | DE_POISON;
Ben Widawskycc609d52013-05-28 19:22:29 -07002737 u32 gt_irqs;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002738
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002739 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002740
2741 /* should always can generate irq */
2742 I915_WRITE(DEIIR, I915_READ(DEIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002743 I915_WRITE(DEIMR, dev_priv->irq_mask);
Daniel Vetter6005ce42013-06-27 13:44:59 +02002744 I915_WRITE(DEIER, display_mask |
2745 DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002746 POSTING_READ(DEIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002747
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002748 dev_priv->gt_irq_mask = ~0;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002749
2750 I915_WRITE(GTIIR, I915_READ(GTIIR));
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002751 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Xiang, Haihao881f47b2010-09-19 14:40:43 +01002752
Ben Widawskycc609d52013-05-28 19:22:29 -07002753 gt_irqs = GT_RENDER_USER_INTERRUPT;
2754
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002755 if (IS_GEN6(dev))
Ben Widawskycc609d52013-05-28 19:22:29 -07002756 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002757 else
Ben Widawskycc609d52013-05-28 19:22:29 -07002758 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
2759 ILK_BSD_USER_INTERRUPT;
2760
2761 I915_WRITE(GTIER, gt_irqs);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002762 POSTING_READ(GTIER);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002763
Paulo Zanonid46da432013-02-08 17:35:15 -02002764 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002765
Jesse Barnesf97108d2010-01-29 11:27:07 -08002766 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02002767 /* Enable PCU event interrupts
2768 *
2769 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002770 * setup is guaranteed to run in single-threaded context. But we
2771 * need it to make the assert_spin_locked happy. */
2772 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002773 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02002774 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08002775 }
2776
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002777 return 0;
2778}
2779
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002780static int ivybridge_irq_postinstall(struct drm_device *dev)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002781{
2782 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2783 /* enable kind of interrupts always enabled */
Chris Wilsonb615b572012-05-02 09:52:12 +01002784 u32 display_mask =
2785 DE_MASTER_IRQ_CONTROL | DE_GSE_IVB | DE_PCH_EVENT_IVB |
2786 DE_PLANEC_FLIP_DONE_IVB |
2787 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetterce99c252012-12-01 13:53:47 +01002788 DE_PLANEA_FLIP_DONE_IVB |
Paulo Zanoni86642812013-04-12 17:57:57 -03002789 DE_AUX_CHANNEL_A_IVB |
2790 DE_ERR_INT_IVB;
Ben Widawsky12638c52013-05-28 19:22:31 -07002791 u32 pm_irqs = GEN6_PM_RPS_EVENTS;
Ben Widawskycc609d52013-05-28 19:22:29 -07002792 u32 gt_irqs;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002793
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002794 dev_priv->irq_mask = ~display_mask;
2795
2796 /* should always can generate irq */
Paulo Zanoni86642812013-04-12 17:57:57 -03002797 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002798 I915_WRITE(DEIIR, I915_READ(DEIIR));
2799 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilsonb615b572012-05-02 09:52:12 +01002800 I915_WRITE(DEIER,
2801 display_mask |
2802 DE_PIPEC_VBLANK_IVB |
2803 DE_PIPEB_VBLANK_IVB |
2804 DE_PIPEA_VBLANK_IVB);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002805 POSTING_READ(DEIER);
2806
Ben Widawskycc609d52013-05-28 19:22:29 -07002807 dev_priv->gt_irq_mask = ~GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002808
2809 I915_WRITE(GTIIR, I915_READ(GTIIR));
2810 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
2811
Ben Widawskycc609d52013-05-28 19:22:29 -07002812 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2813 GT_BLT_USER_INTERRUPT | GT_RENDER_L3_PARITY_ERROR_INTERRUPT;
2814 I915_WRITE(GTIER, gt_irqs);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002815 POSTING_READ(GTIER);
2816
Ben Widawsky12638c52013-05-28 19:22:31 -07002817 I915_WRITE(GEN6_PMIIR, I915_READ(GEN6_PMIIR));
2818 if (HAS_VEBOX(dev))
2819 pm_irqs |= PM_VEBOX_USER_INTERRUPT |
2820 PM_VEBOX_CS_ERROR_INTERRUPT;
2821
2822 /* Our enable/disable rps functions may touch these registers so
2823 * make sure to set a known state for only the non-RPS bits.
2824 * The RMW is extra paranoia since this should be called after being set
2825 * to a known state in preinstall.
2826 * */
2827 I915_WRITE(GEN6_PMIMR,
2828 (I915_READ(GEN6_PMIMR) | ~GEN6_PM_RPS_EVENTS) & ~pm_irqs);
2829 I915_WRITE(GEN6_PMIER,
2830 (I915_READ(GEN6_PMIER) & GEN6_PM_RPS_EVENTS) | pm_irqs);
2831 POSTING_READ(GEN6_PMIER);
Ben Widawskyeda63ff2013-05-28 19:22:26 -07002832
Paulo Zanonid46da432013-02-08 17:35:15 -02002833 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07002834
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002835 return 0;
2836}
2837
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002838static int valleyview_irq_postinstall(struct drm_device *dev)
2839{
2840 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Ben Widawskycc609d52013-05-28 19:22:29 -07002841 u32 gt_irqs;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002842 u32 enable_mask;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002843 u32 pipestat_enable = PLANE_FLIP_DONE_INT_EN_VLV;
Daniel Vetterb79480b2013-06-27 17:52:10 +02002844 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002845
2846 enable_mask = I915_DISPLAY_PORT_INTERRUPT;
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002847 enable_mask |= I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2848 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2849 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002850 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
2851
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002852 /*
2853 *Leave vblank interrupts masked initially. enable/disable will
2854 * toggle them based on usage.
2855 */
2856 dev_priv->irq_mask = (~enable_mask) |
2857 I915_DISPLAY_PIPE_A_VBLANK_INTERRUPT |
2858 I915_DISPLAY_PIPE_B_VBLANK_INTERRUPT;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002859
Daniel Vetter20afbda2012-12-11 14:05:07 +01002860 I915_WRITE(PORT_HOTPLUG_EN, 0);
2861 POSTING_READ(PORT_HOTPLUG_EN);
2862
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002863 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
2864 I915_WRITE(VLV_IER, enable_mask);
2865 I915_WRITE(VLV_IIR, 0xffffffff);
2866 I915_WRITE(PIPESTAT(0), 0xffff);
2867 I915_WRITE(PIPESTAT(1), 0xffff);
2868 POSTING_READ(VLV_IER);
2869
Daniel Vetterb79480b2013-06-27 17:52:10 +02002870 /* Interrupt setup is already guaranteed to be single-threaded, this is
2871 * just to make the assert_spin_locked check happy. */
2872 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002873 i915_enable_pipestat(dev_priv, 0, pipestat_enable);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002874 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002875 i915_enable_pipestat(dev_priv, 1, pipestat_enable);
Daniel Vetterb79480b2013-06-27 17:52:10 +02002876 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002877
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002878 I915_WRITE(VLV_IIR, 0xffffffff);
2879 I915_WRITE(VLV_IIR, 0xffffffff);
2880
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002881 I915_WRITE(GTIIR, I915_READ(GTIIR));
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002882 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
Jesse Barnes3bcedbe2012-09-19 13:29:01 -07002883
Ben Widawskycc609d52013-05-28 19:22:29 -07002884 gt_irqs = GT_RENDER_USER_INTERRUPT | GT_BSD_USER_INTERRUPT |
2885 GT_BLT_USER_INTERRUPT;
2886 I915_WRITE(GTIER, gt_irqs);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002887 POSTING_READ(GTIER);
2888
2889 /* ack & enable invalid PTE error interrupts */
2890#if 0 /* FIXME: add support to irq handler for checking these bits */
2891 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
2892 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
2893#endif
2894
2895 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01002896
2897 return 0;
2898}
2899
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002900static void valleyview_irq_uninstall(struct drm_device *dev)
2901{
2902 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2903 int pipe;
2904
2905 if (!dev_priv)
2906 return;
2907
Egbert Eichac4c16c2013-04-16 13:36:58 +02002908 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2909
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002910 for_each_pipe(pipe)
2911 I915_WRITE(PIPESTAT(pipe), 0xffff);
2912
2913 I915_WRITE(HWSTAM, 0xffffffff);
2914 I915_WRITE(PORT_HOTPLUG_EN, 0);
2915 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
2916 for_each_pipe(pipe)
2917 I915_WRITE(PIPESTAT(pipe), 0xffff);
2918 I915_WRITE(VLV_IIR, 0xffffffff);
2919 I915_WRITE(VLV_IMR, 0xffffffff);
2920 I915_WRITE(VLV_IER, 0x0);
2921 POSTING_READ(VLV_IER);
2922}
2923
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002924static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002925{
2926 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07002927
2928 if (!dev_priv)
2929 return;
2930
Egbert Eichac4c16c2013-04-16 13:36:58 +02002931 del_timer_sync(&dev_priv->hotplug_reenable_timer);
2932
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002933 I915_WRITE(HWSTAM, 0xffffffff);
2934
2935 I915_WRITE(DEIMR, 0xffffffff);
2936 I915_WRITE(DEIER, 0x0);
2937 I915_WRITE(DEIIR, I915_READ(DEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002938 if (IS_GEN7(dev))
2939 I915_WRITE(GEN7_ERR_INT, I915_READ(GEN7_ERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002940
2941 I915_WRITE(GTIMR, 0xffffffff);
2942 I915_WRITE(GTIER, 0x0);
2943 I915_WRITE(GTIIR, I915_READ(GTIIR));
Keith Packard192aac1f2011-09-20 10:12:44 -07002944
Ben Widawskyab5c6082013-04-05 13:12:41 -07002945 if (HAS_PCH_NOP(dev))
2946 return;
2947
Keith Packard192aac1f2011-09-20 10:12:44 -07002948 I915_WRITE(SDEIMR, 0xffffffff);
2949 I915_WRITE(SDEIER, 0x0);
2950 I915_WRITE(SDEIIR, I915_READ(SDEIIR));
Paulo Zanoni86642812013-04-12 17:57:57 -03002951 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
2952 I915_WRITE(SERR_INT, I915_READ(SERR_INT));
Zhenyu Wang036a4a72009-06-08 14:40:19 +08002953}
2954
Chris Wilsonc2798b12012-04-22 21:13:57 +01002955static void i8xx_irq_preinstall(struct drm_device * dev)
2956{
2957 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2958 int pipe;
2959
2960 atomic_set(&dev_priv->irq_received, 0);
2961
2962 for_each_pipe(pipe)
2963 I915_WRITE(PIPESTAT(pipe), 0);
2964 I915_WRITE16(IMR, 0xffff);
2965 I915_WRITE16(IER, 0x0);
2966 POSTING_READ16(IER);
2967}
2968
2969static int i8xx_irq_postinstall(struct drm_device *dev)
2970{
2971 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
2972
Chris Wilsonc2798b12012-04-22 21:13:57 +01002973 I915_WRITE16(EMR,
2974 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
2975
2976 /* Unmask the interrupts that we always want on. */
2977 dev_priv->irq_mask =
2978 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2979 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2980 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
2981 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
2982 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2983 I915_WRITE16(IMR, dev_priv->irq_mask);
2984
2985 I915_WRITE16(IER,
2986 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
2987 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
2988 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
2989 I915_USER_INTERRUPT);
2990 POSTING_READ16(IER);
2991
2992 return 0;
2993}
2994
Ville Syrjälä90a72f82013-02-19 23:16:44 +02002995/*
2996 * Returns true when a page flip has completed.
2997 */
2998static bool i8xx_handle_vblank(struct drm_device *dev,
2999 int pipe, u16 iir)
3000{
3001 drm_i915_private_t *dev_priv = dev->dev_private;
3002 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(pipe);
3003
3004 if (!drm_handle_vblank(dev, pipe))
3005 return false;
3006
3007 if ((iir & flip_pending) == 0)
3008 return false;
3009
3010 intel_prepare_page_flip(dev, pipe);
3011
3012 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3013 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3014 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3015 * the flip is completed (no longer pending). Since this doesn't raise
3016 * an interrupt per se, we watch for the change at vblank.
3017 */
3018 if (I915_READ16(ISR) & flip_pending)
3019 return false;
3020
3021 intel_finish_page_flip(dev, pipe);
3022
3023 return true;
3024}
3025
Daniel Vetterff1f5252012-10-02 15:10:55 +02003026static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003027{
3028 struct drm_device *dev = (struct drm_device *) arg;
3029 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003030 u16 iir, new_iir;
3031 u32 pipe_stats[2];
3032 unsigned long irqflags;
3033 int irq_received;
3034 int pipe;
3035 u16 flip_mask =
3036 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3037 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3038
3039 atomic_inc(&dev_priv->irq_received);
3040
3041 iir = I915_READ16(IIR);
3042 if (iir == 0)
3043 return IRQ_NONE;
3044
3045 while (iir & ~flip_mask) {
3046 /* Can't rely on pipestat interrupt bit in iir as it might
3047 * have been cleared after the pipestat interrupt was received.
3048 * It doesn't set the bit in iir again, but it still produces
3049 * interrupts (for non-MSI).
3050 */
3051 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3052 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3053 i915_handle_error(dev, false);
3054
3055 for_each_pipe(pipe) {
3056 int reg = PIPESTAT(pipe);
3057 pipe_stats[pipe] = I915_READ(reg);
3058
3059 /*
3060 * Clear the PIPE*STAT regs before the IIR
3061 */
3062 if (pipe_stats[pipe] & 0x8000ffff) {
3063 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3064 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3065 pipe_name(pipe));
3066 I915_WRITE(reg, pipe_stats[pipe]);
3067 irq_received = 1;
3068 }
3069 }
3070 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3071
3072 I915_WRITE16(IIR, iir & ~flip_mask);
3073 new_iir = I915_READ16(IIR); /* Flush posted writes */
3074
Daniel Vetterd05c6172012-04-26 23:28:09 +02003075 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003076
3077 if (iir & I915_USER_INTERRUPT)
3078 notify_ring(dev, &dev_priv->ring[RCS]);
3079
3080 if (pipe_stats[0] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003081 i8xx_handle_vblank(dev, 0, iir))
3082 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(0);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003083
3084 if (pipe_stats[1] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003085 i8xx_handle_vblank(dev, 1, iir))
3086 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(1);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003087
3088 iir = new_iir;
3089 }
3090
3091 return IRQ_HANDLED;
3092}
3093
3094static void i8xx_irq_uninstall(struct drm_device * dev)
3095{
3096 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3097 int pipe;
3098
Chris Wilsonc2798b12012-04-22 21:13:57 +01003099 for_each_pipe(pipe) {
3100 /* Clear enable bits; then clear status bits */
3101 I915_WRITE(PIPESTAT(pipe), 0);
3102 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3103 }
3104 I915_WRITE16(IMR, 0xffff);
3105 I915_WRITE16(IER, 0x0);
3106 I915_WRITE16(IIR, I915_READ16(IIR));
3107}
3108
Chris Wilsona266c7d2012-04-24 22:59:44 +01003109static void i915_irq_preinstall(struct drm_device * dev)
3110{
3111 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3112 int pipe;
3113
3114 atomic_set(&dev_priv->irq_received, 0);
3115
3116 if (I915_HAS_HOTPLUG(dev)) {
3117 I915_WRITE(PORT_HOTPLUG_EN, 0);
3118 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3119 }
3120
Chris Wilson00d98eb2012-04-24 22:59:48 +01003121 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003122 for_each_pipe(pipe)
3123 I915_WRITE(PIPESTAT(pipe), 0);
3124 I915_WRITE(IMR, 0xffffffff);
3125 I915_WRITE(IER, 0x0);
3126 POSTING_READ(IER);
3127}
3128
3129static int i915_irq_postinstall(struct drm_device *dev)
3130{
3131 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003132 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003133
Chris Wilson38bde182012-04-24 22:59:50 +01003134 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3135
3136 /* Unmask the interrupts that we always want on. */
3137 dev_priv->irq_mask =
3138 ~(I915_ASLE_INTERRUPT |
3139 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3140 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3141 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3142 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3143 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3144
3145 enable_mask =
3146 I915_ASLE_INTERRUPT |
3147 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3148 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3149 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3150 I915_USER_INTERRUPT;
3151
Chris Wilsona266c7d2012-04-24 22:59:44 +01003152 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01003153 I915_WRITE(PORT_HOTPLUG_EN, 0);
3154 POSTING_READ(PORT_HOTPLUG_EN);
3155
Chris Wilsona266c7d2012-04-24 22:59:44 +01003156 /* Enable in IER... */
3157 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3158 /* and unmask in IMR */
3159 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3160 }
3161
Chris Wilsona266c7d2012-04-24 22:59:44 +01003162 I915_WRITE(IMR, dev_priv->irq_mask);
3163 I915_WRITE(IER, enable_mask);
3164 POSTING_READ(IER);
3165
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003166 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003167
3168 return 0;
3169}
3170
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003171/*
3172 * Returns true when a page flip has completed.
3173 */
3174static bool i915_handle_vblank(struct drm_device *dev,
3175 int plane, int pipe, u32 iir)
3176{
3177 drm_i915_private_t *dev_priv = dev->dev_private;
3178 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3179
3180 if (!drm_handle_vblank(dev, pipe))
3181 return false;
3182
3183 if ((iir & flip_pending) == 0)
3184 return false;
3185
3186 intel_prepare_page_flip(dev, plane);
3187
3188 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3189 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3190 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3191 * the flip is completed (no longer pending). Since this doesn't raise
3192 * an interrupt per se, we watch for the change at vblank.
3193 */
3194 if (I915_READ(ISR) & flip_pending)
3195 return false;
3196
3197 intel_finish_page_flip(dev, pipe);
3198
3199 return true;
3200}
3201
Daniel Vetterff1f5252012-10-02 15:10:55 +02003202static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003203{
3204 struct drm_device *dev = (struct drm_device *) arg;
3205 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003206 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003207 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003208 u32 flip_mask =
3209 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3210 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003211 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003212
3213 atomic_inc(&dev_priv->irq_received);
3214
3215 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003216 do {
3217 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003218 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003219
3220 /* Can't rely on pipestat interrupt bit in iir as it might
3221 * have been cleared after the pipestat interrupt was received.
3222 * It doesn't set the bit in iir again, but it still produces
3223 * interrupts (for non-MSI).
3224 */
3225 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3226 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3227 i915_handle_error(dev, false);
3228
3229 for_each_pipe(pipe) {
3230 int reg = PIPESTAT(pipe);
3231 pipe_stats[pipe] = I915_READ(reg);
3232
Chris Wilson38bde182012-04-24 22:59:50 +01003233 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003234 if (pipe_stats[pipe] & 0x8000ffff) {
3235 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3236 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3237 pipe_name(pipe));
3238 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003239 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003240 }
3241 }
3242 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3243
3244 if (!irq_received)
3245 break;
3246
Chris Wilsona266c7d2012-04-24 22:59:44 +01003247 /* Consume port. Then clear IIR or we'll miss events */
3248 if ((I915_HAS_HOTPLUG(dev)) &&
3249 (iir & I915_DISPLAY_PORT_INTERRUPT)) {
3250 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003251 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003252
3253 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3254 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02003255
3256 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
3257
Chris Wilsona266c7d2012-04-24 22:59:44 +01003258 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
Chris Wilson38bde182012-04-24 22:59:50 +01003259 POSTING_READ(PORT_HOTPLUG_STAT);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003260 }
3261
Chris Wilson38bde182012-04-24 22:59:50 +01003262 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003263 new_iir = I915_READ(IIR); /* Flush posted writes */
3264
Chris Wilsona266c7d2012-04-24 22:59:44 +01003265 if (iir & I915_USER_INTERRUPT)
3266 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003267
Chris Wilsona266c7d2012-04-24 22:59:44 +01003268 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003269 int plane = pipe;
3270 if (IS_MOBILE(dev))
3271 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003272
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003273 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3274 i915_handle_vblank(dev, plane, pipe, iir))
3275 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003276
3277 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3278 blc_event = true;
3279 }
3280
Chris Wilsona266c7d2012-04-24 22:59:44 +01003281 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3282 intel_opregion_asle_intr(dev);
3283
3284 /* With MSI, interrupts are only generated when iir
3285 * transitions from zero to nonzero. If another bit got
3286 * set while we were handling the existing iir bits, then
3287 * we would never get another interrupt.
3288 *
3289 * This is fine on non-MSI as well, as if we hit this path
3290 * we avoid exiting the interrupt handler only to generate
3291 * another one.
3292 *
3293 * Note that for MSI this could cause a stray interrupt report
3294 * if an interrupt landed in the time between writing IIR and
3295 * the posting read. This should be rare enough to never
3296 * trigger the 99% of 100,000 interrupts test for disabling
3297 * stray interrupts.
3298 */
Chris Wilson38bde182012-04-24 22:59:50 +01003299 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003300 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01003301 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003302
Daniel Vetterd05c6172012-04-26 23:28:09 +02003303 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01003304
Chris Wilsona266c7d2012-04-24 22:59:44 +01003305 return ret;
3306}
3307
3308static void i915_irq_uninstall(struct drm_device * dev)
3309{
3310 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3311 int pipe;
3312
Egbert Eichac4c16c2013-04-16 13:36:58 +02003313 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3314
Chris Wilsona266c7d2012-04-24 22:59:44 +01003315 if (I915_HAS_HOTPLUG(dev)) {
3316 I915_WRITE(PORT_HOTPLUG_EN, 0);
3317 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3318 }
3319
Chris Wilson00d98eb2012-04-24 22:59:48 +01003320 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01003321 for_each_pipe(pipe) {
3322 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003323 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01003324 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3325 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003326 I915_WRITE(IMR, 0xffffffff);
3327 I915_WRITE(IER, 0x0);
3328
Chris Wilsona266c7d2012-04-24 22:59:44 +01003329 I915_WRITE(IIR, I915_READ(IIR));
3330}
3331
3332static void i965_irq_preinstall(struct drm_device * dev)
3333{
3334 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3335 int pipe;
3336
3337 atomic_set(&dev_priv->irq_received, 0);
3338
Chris Wilsonadca4732012-05-11 18:01:31 +01003339 I915_WRITE(PORT_HOTPLUG_EN, 0);
3340 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003341
3342 I915_WRITE(HWSTAM, 0xeffe);
3343 for_each_pipe(pipe)
3344 I915_WRITE(PIPESTAT(pipe), 0);
3345 I915_WRITE(IMR, 0xffffffff);
3346 I915_WRITE(IER, 0x0);
3347 POSTING_READ(IER);
3348}
3349
3350static int i965_irq_postinstall(struct drm_device *dev)
3351{
3352 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003353 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003354 u32 error_mask;
Daniel Vetterb79480b2013-06-27 17:52:10 +02003355 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003356
Chris Wilsona266c7d2012-04-24 22:59:44 +01003357 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003358 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01003359 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003360 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3361 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3362 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3363 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3364 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3365
3366 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003367 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3368 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01003369 enable_mask |= I915_USER_INTERRUPT;
3370
3371 if (IS_G4X(dev))
3372 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003373
Daniel Vetterb79480b2013-06-27 17:52:10 +02003374 /* Interrupt setup is already guaranteed to be single-threaded, this is
3375 * just to make the assert_spin_locked check happy. */
3376 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003377 i915_enable_pipestat(dev_priv, 0, PIPE_GMBUS_EVENT_ENABLE);
Daniel Vetterb79480b2013-06-27 17:52:10 +02003378 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003379
Chris Wilsona266c7d2012-04-24 22:59:44 +01003380 /*
3381 * Enable some error detection, note the instruction error mask
3382 * bit is reserved, so we leave it masked.
3383 */
3384 if (IS_G4X(dev)) {
3385 error_mask = ~(GM45_ERROR_PAGE_TABLE |
3386 GM45_ERROR_MEM_PRIV |
3387 GM45_ERROR_CP_PRIV |
3388 I915_ERROR_MEMORY_REFRESH);
3389 } else {
3390 error_mask = ~(I915_ERROR_PAGE_TABLE |
3391 I915_ERROR_MEMORY_REFRESH);
3392 }
3393 I915_WRITE(EMR, error_mask);
3394
3395 I915_WRITE(IMR, dev_priv->irq_mask);
3396 I915_WRITE(IER, enable_mask);
3397 POSTING_READ(IER);
3398
Daniel Vetter20afbda2012-12-11 14:05:07 +01003399 I915_WRITE(PORT_HOTPLUG_EN, 0);
3400 POSTING_READ(PORT_HOTPLUG_EN);
3401
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003402 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003403
3404 return 0;
3405}
3406
Egbert Eichbac56d52013-02-25 12:06:51 -05003407static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01003408{
3409 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05003410 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02003411 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003412 u32 hotplug_en;
3413
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003414 assert_spin_locked(&dev_priv->irq_lock);
3415
Egbert Eichbac56d52013-02-25 12:06:51 -05003416 if (I915_HAS_HOTPLUG(dev)) {
3417 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
3418 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
3419 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05003420 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02003421 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
3422 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
3423 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05003424 /* Programming the CRT detection parameters tends
3425 to generate a spurious hotplug event about three
3426 seconds later. So just do it once.
3427 */
3428 if (IS_G4X(dev))
3429 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01003430 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05003431 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003432
Egbert Eichbac56d52013-02-25 12:06:51 -05003433 /* Ignore TV since it's buggy */
3434 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
3435 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01003436}
3437
Daniel Vetterff1f5252012-10-02 15:10:55 +02003438static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003439{
3440 struct drm_device *dev = (struct drm_device *) arg;
3441 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003442 u32 iir, new_iir;
3443 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003444 unsigned long irqflags;
3445 int irq_received;
3446 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003447 u32 flip_mask =
3448 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3449 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003450
3451 atomic_inc(&dev_priv->irq_received);
3452
3453 iir = I915_READ(IIR);
3454
Chris Wilsona266c7d2012-04-24 22:59:44 +01003455 for (;;) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003456 bool blc_event = false;
3457
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003458 irq_received = (iir & ~flip_mask) != 0;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003459
3460 /* Can't rely on pipestat interrupt bit in iir as it might
3461 * have been cleared after the pipestat interrupt was received.
3462 * It doesn't set the bit in iir again, but it still produces
3463 * interrupts (for non-MSI).
3464 */
3465 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3466 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
3467 i915_handle_error(dev, false);
3468
3469 for_each_pipe(pipe) {
3470 int reg = PIPESTAT(pipe);
3471 pipe_stats[pipe] = I915_READ(reg);
3472
3473 /*
3474 * Clear the PIPE*STAT regs before the IIR
3475 */
3476 if (pipe_stats[pipe] & 0x8000ffff) {
3477 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS)
3478 DRM_DEBUG_DRIVER("pipe %c underrun\n",
3479 pipe_name(pipe));
3480 I915_WRITE(reg, pipe_stats[pipe]);
3481 irq_received = 1;
3482 }
3483 }
3484 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3485
3486 if (!irq_received)
3487 break;
3488
3489 ret = IRQ_HANDLED;
3490
3491 /* Consume port. Then clear IIR or we'll miss events */
Chris Wilsonadca4732012-05-11 18:01:31 +01003492 if (iir & I915_DISPLAY_PORT_INTERRUPT) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003493 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
Egbert Eichb543fb02013-04-16 13:36:54 +02003494 u32 hotplug_trigger = hotplug_status & (IS_G4X(dev) ?
3495 HOTPLUG_INT_STATUS_G4X :
Daniel Vetter4f7fd702013-06-24 21:33:28 +02003496 HOTPLUG_INT_STATUS_I915);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003497
3498 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
3499 hotplug_status);
Daniel Vetter91d131d2013-06-27 17:52:14 +02003500
3501 intel_hpd_irq_handler(dev, hotplug_trigger,
3502 IS_G4X(dev) ? hpd_status_gen4 : hpd_status_i915);
3503
Chris Wilsona266c7d2012-04-24 22:59:44 +01003504 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
3505 I915_READ(PORT_HOTPLUG_STAT);
3506 }
3507
Ville Syrjälä21ad8332013-02-19 15:16:39 +02003508 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003509 new_iir = I915_READ(IIR); /* Flush posted writes */
3510
Chris Wilsona266c7d2012-04-24 22:59:44 +01003511 if (iir & I915_USER_INTERRUPT)
3512 notify_ring(dev, &dev_priv->ring[RCS]);
3513 if (iir & I915_BSD_USER_INTERRUPT)
3514 notify_ring(dev, &dev_priv->ring[VCS]);
3515
Chris Wilsona266c7d2012-04-24 22:59:44 +01003516 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01003517 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003518 i915_handle_vblank(dev, pipe, pipe, iir))
3519 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003520
3521 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3522 blc_event = true;
3523 }
3524
3525
3526 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3527 intel_opregion_asle_intr(dev);
3528
Daniel Vetter515ac2b2012-12-01 13:53:44 +01003529 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
3530 gmbus_irq_handler(dev);
3531
Chris Wilsona266c7d2012-04-24 22:59:44 +01003532 /* With MSI, interrupts are only generated when iir
3533 * transitions from zero to nonzero. If another bit got
3534 * set while we were handling the existing iir bits, then
3535 * we would never get another interrupt.
3536 *
3537 * This is fine on non-MSI as well, as if we hit this path
3538 * we avoid exiting the interrupt handler only to generate
3539 * another one.
3540 *
3541 * Note that for MSI this could cause a stray interrupt report
3542 * if an interrupt landed in the time between writing IIR and
3543 * the posting read. This should be rare enough to never
3544 * trigger the 99% of 100,000 interrupts test for disabling
3545 * stray interrupts.
3546 */
3547 iir = new_iir;
3548 }
3549
Daniel Vetterd05c6172012-04-26 23:28:09 +02003550 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01003551
Chris Wilsona266c7d2012-04-24 22:59:44 +01003552 return ret;
3553}
3554
3555static void i965_irq_uninstall(struct drm_device * dev)
3556{
3557 drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private;
3558 int pipe;
3559
3560 if (!dev_priv)
3561 return;
3562
Egbert Eichac4c16c2013-04-16 13:36:58 +02003563 del_timer_sync(&dev_priv->hotplug_reenable_timer);
3564
Chris Wilsonadca4732012-05-11 18:01:31 +01003565 I915_WRITE(PORT_HOTPLUG_EN, 0);
3566 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003567
3568 I915_WRITE(HWSTAM, 0xffffffff);
3569 for_each_pipe(pipe)
3570 I915_WRITE(PIPESTAT(pipe), 0);
3571 I915_WRITE(IMR, 0xffffffff);
3572 I915_WRITE(IER, 0x0);
3573
3574 for_each_pipe(pipe)
3575 I915_WRITE(PIPESTAT(pipe),
3576 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
3577 I915_WRITE(IIR, I915_READ(IIR));
3578}
3579
Egbert Eichac4c16c2013-04-16 13:36:58 +02003580static void i915_reenable_hotplug_timer_func(unsigned long data)
3581{
3582 drm_i915_private_t *dev_priv = (drm_i915_private_t *)data;
3583 struct drm_device *dev = dev_priv->dev;
3584 struct drm_mode_config *mode_config = &dev->mode_config;
3585 unsigned long irqflags;
3586 int i;
3587
3588 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3589 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
3590 struct drm_connector *connector;
3591
3592 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
3593 continue;
3594
3595 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3596
3597 list_for_each_entry(connector, &mode_config->connector_list, head) {
3598 struct intel_connector *intel_connector = to_intel_connector(connector);
3599
3600 if (intel_connector->encoder->hpd_pin == i) {
3601 if (connector->polled != intel_connector->polled)
3602 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
3603 drm_get_connector_name(connector));
3604 connector->polled = intel_connector->polled;
3605 if (!connector->polled)
3606 connector->polled = DRM_CONNECTOR_POLL_HPD;
3607 }
3608 }
3609 }
3610 if (dev_priv->display.hpd_irq_setup)
3611 dev_priv->display.hpd_irq_setup(dev);
3612 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3613}
3614
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003615void intel_irq_init(struct drm_device *dev)
3616{
Chris Wilson8b2e3262012-04-24 22:59:41 +01003617 struct drm_i915_private *dev_priv = dev->dev_private;
3618
3619 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01003620 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02003621 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01003622 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01003623
Daniel Vetter99584db2012-11-14 17:14:04 +01003624 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
3625 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01003626 (unsigned long) dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003627 setup_timer(&dev_priv->hotplug_reenable_timer, i915_reenable_hotplug_timer_func,
3628 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01003629
Tomas Janousek97a19a22012-12-08 13:48:13 +01003630 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01003631
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003632 dev->driver->get_vblank_counter = i915_get_vblank_counter;
3633 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Eugeni Dodonov7d4e1462012-05-09 15:37:09 -03003634 if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003635 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
3636 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
3637 }
3638
Keith Packardc3613de2011-08-12 17:05:54 -07003639 if (drm_core_check_feature(dev, DRIVER_MODESET))
3640 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
3641 else
3642 dev->driver->get_vblank_timestamp = NULL;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003643 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
3644
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003645 if (IS_VALLEYVIEW(dev)) {
3646 dev->driver->irq_handler = valleyview_irq_handler;
3647 dev->driver->irq_preinstall = valleyview_irq_preinstall;
3648 dev->driver->irq_postinstall = valleyview_irq_postinstall;
3649 dev->driver->irq_uninstall = valleyview_irq_uninstall;
3650 dev->driver->enable_vblank = valleyview_enable_vblank;
3651 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05003652 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Daniel Vetter4a06e202012-12-01 13:53:40 +01003653 } else if (IS_IVYBRIDGE(dev) || IS_HASWELL(dev)) {
Ben Widawsky7d991632013-05-28 19:22:25 -07003654 /* Share uninstall handlers with ILK/SNB */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003655 dev->driver->irq_handler = ivybridge_irq_handler;
Ben Widawsky7d991632013-05-28 19:22:25 -07003656 dev->driver->irq_preinstall = ivybridge_irq_preinstall;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003657 dev->driver->irq_postinstall = ivybridge_irq_postinstall;
3658 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3659 dev->driver->enable_vblank = ivybridge_enable_vblank;
3660 dev->driver->disable_vblank = ivybridge_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003661 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003662 } else if (HAS_PCH_SPLIT(dev)) {
3663 dev->driver->irq_handler = ironlake_irq_handler;
3664 dev->driver->irq_preinstall = ironlake_irq_preinstall;
3665 dev->driver->irq_postinstall = ironlake_irq_postinstall;
3666 dev->driver->irq_uninstall = ironlake_irq_uninstall;
3667 dev->driver->enable_vblank = ironlake_enable_vblank;
3668 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003669 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003670 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01003671 if (INTEL_INFO(dev)->gen == 2) {
3672 dev->driver->irq_preinstall = i8xx_irq_preinstall;
3673 dev->driver->irq_postinstall = i8xx_irq_postinstall;
3674 dev->driver->irq_handler = i8xx_irq_handler;
3675 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003676 } else if (INTEL_INFO(dev)->gen == 3) {
3677 dev->driver->irq_preinstall = i915_irq_preinstall;
3678 dev->driver->irq_postinstall = i915_irq_postinstall;
3679 dev->driver->irq_uninstall = i915_irq_uninstall;
3680 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003681 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003682 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003683 dev->driver->irq_preinstall = i965_irq_preinstall;
3684 dev->driver->irq_postinstall = i965_irq_postinstall;
3685 dev->driver->irq_uninstall = i965_irq_uninstall;
3686 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05003687 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003688 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003689 dev->driver->enable_vblank = i915_enable_vblank;
3690 dev->driver->disable_vblank = i915_disable_vblank;
3691 }
3692}
Daniel Vetter20afbda2012-12-11 14:05:07 +01003693
3694void intel_hpd_init(struct drm_device *dev)
3695{
3696 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02003697 struct drm_mode_config *mode_config = &dev->mode_config;
3698 struct drm_connector *connector;
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003699 unsigned long irqflags;
Egbert Eich821450c2013-04-16 13:36:55 +02003700 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01003701
Egbert Eich821450c2013-04-16 13:36:55 +02003702 for (i = 1; i < HPD_NUM_PINS; i++) {
3703 dev_priv->hpd_stats[i].hpd_cnt = 0;
3704 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
3705 }
3706 list_for_each_entry(connector, &mode_config->connector_list, head) {
3707 struct intel_connector *intel_connector = to_intel_connector(connector);
3708 connector->polled = intel_connector->polled;
3709 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
3710 connector->polled = DRM_CONNECTOR_POLL_HPD;
3711 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003712
3713 /* Interrupt setup is already guaranteed to be single-threaded, this is
3714 * just to make the assert_spin_locked checks happy. */
3715 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003716 if (dev_priv->display.hpd_irq_setup)
3717 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02003718 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003719}