blob: 07e1a409e4888f62f07223fe370604638fdc31d6 [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>
Damien Lespiaub2c88f52013-10-15 18:55:29 +010033#include <linux/circ_buf.h>
David Howells760285e2012-10-02 18:01:07 +010034#include <drm/drmP.h>
35#include <drm/i915_drm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "i915_drv.h"
Chris Wilson1c5d22f2009-08-25 11:15:50 +010037#include "i915_trace.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080038#include "intel_drv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Egbert Eiche5868a32013-02-28 04:17:12 -050040static const u32 hpd_ibx[] = {
41 [HPD_CRT] = SDE_CRT_HOTPLUG,
42 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG,
43 [HPD_PORT_B] = SDE_PORTB_HOTPLUG,
44 [HPD_PORT_C] = SDE_PORTC_HOTPLUG,
45 [HPD_PORT_D] = SDE_PORTD_HOTPLUG
46};
47
48static const u32 hpd_cpt[] = {
49 [HPD_CRT] = SDE_CRT_HOTPLUG_CPT,
Daniel Vetter73c352a2013-03-26 22:38:43 +010050 [HPD_SDVO_B] = SDE_SDVOB_HOTPLUG_CPT,
Egbert Eiche5868a32013-02-28 04:17:12 -050051 [HPD_PORT_B] = SDE_PORTB_HOTPLUG_CPT,
52 [HPD_PORT_C] = SDE_PORTC_HOTPLUG_CPT,
53 [HPD_PORT_D] = SDE_PORTD_HOTPLUG_CPT
54};
55
56static const u32 hpd_mask_i915[] = {
57 [HPD_CRT] = CRT_HOTPLUG_INT_EN,
58 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_EN,
59 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_EN,
60 [HPD_PORT_B] = PORTB_HOTPLUG_INT_EN,
61 [HPD_PORT_C] = PORTC_HOTPLUG_INT_EN,
62 [HPD_PORT_D] = PORTD_HOTPLUG_INT_EN
63};
64
Daniel Vetter704cfb82013-12-18 09:08:43 +010065static const u32 hpd_status_g4x[] = {
Egbert Eiche5868a32013-02-28 04:17:12 -050066 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
67 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_G4X,
68 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_G4X,
69 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
70 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
71 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
72};
73
Egbert Eiche5868a32013-02-28 04:17:12 -050074static const u32 hpd_status_i915[] = { /* i915 and valleyview are the same */
75 [HPD_CRT] = CRT_HOTPLUG_INT_STATUS,
76 [HPD_SDVO_B] = SDVOB_HOTPLUG_INT_STATUS_I915,
77 [HPD_SDVO_C] = SDVOC_HOTPLUG_INT_STATUS_I915,
78 [HPD_PORT_B] = PORTB_HOTPLUG_INT_STATUS,
79 [HPD_PORT_C] = PORTC_HOTPLUG_INT_STATUS,
80 [HPD_PORT_D] = PORTD_HOTPLUG_INT_STATUS
81};
82
Paulo Zanoni5c502442014-04-01 15:37:11 -030083/* IIR can theoretically queue up two events. Be paranoid. */
Paulo Zanonif86f3fb2014-04-01 15:37:14 -030084#define GEN8_IRQ_RESET_NDX(type, which) do { \
Paulo Zanoni5c502442014-04-01 15:37:11 -030085 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
86 POSTING_READ(GEN8_##type##_IMR(which)); \
87 I915_WRITE(GEN8_##type##_IER(which), 0); \
88 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
89 POSTING_READ(GEN8_##type##_IIR(which)); \
90 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
91 POSTING_READ(GEN8_##type##_IIR(which)); \
92} while (0)
93
Paulo Zanonif86f3fb2014-04-01 15:37:14 -030094#define GEN5_IRQ_RESET(type) do { \
Paulo Zanonia9d356a2014-04-01 15:37:09 -030095 I915_WRITE(type##IMR, 0xffffffff); \
Paulo Zanoni5c502442014-04-01 15:37:11 -030096 POSTING_READ(type##IMR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -030097 I915_WRITE(type##IER, 0); \
Paulo Zanoni5c502442014-04-01 15:37:11 -030098 I915_WRITE(type##IIR, 0xffffffff); \
99 POSTING_READ(type##IIR); \
100 I915_WRITE(type##IIR, 0xffffffff); \
101 POSTING_READ(type##IIR); \
Paulo Zanonia9d356a2014-04-01 15:37:09 -0300102} while (0)
103
Paulo Zanoni337ba012014-04-01 15:37:16 -0300104/*
105 * We should clear IMR at preinstall/uninstall, and just check at postinstall.
106 */
107#define GEN5_ASSERT_IIR_IS_ZERO(reg) do { \
108 u32 val = I915_READ(reg); \
109 if (val) { \
110 WARN(1, "Interrupt register 0x%x is not zero: 0x%08x\n", \
111 (reg), val); \
112 I915_WRITE((reg), 0xffffffff); \
113 POSTING_READ(reg); \
114 I915_WRITE((reg), 0xffffffff); \
115 POSTING_READ(reg); \
116 } \
117} while (0)
118
Paulo Zanoni35079892014-04-01 15:37:15 -0300119#define GEN8_IRQ_INIT_NDX(type, which, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300120 GEN5_ASSERT_IIR_IS_ZERO(GEN8_##type##_IIR(which)); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300121 I915_WRITE(GEN8_##type##_IMR(which), (imr_val)); \
122 I915_WRITE(GEN8_##type##_IER(which), (ier_val)); \
123 POSTING_READ(GEN8_##type##_IER(which)); \
124} while (0)
125
126#define GEN5_IRQ_INIT(type, imr_val, ier_val) do { \
Paulo Zanoni337ba012014-04-01 15:37:16 -0300127 GEN5_ASSERT_IIR_IS_ZERO(type##IIR); \
Paulo Zanoni35079892014-04-01 15:37:15 -0300128 I915_WRITE(type##IMR, (imr_val)); \
129 I915_WRITE(type##IER, (ier_val)); \
130 POSTING_READ(type##IER); \
131} while (0)
132
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800133/* For display hotplug interrupt */
Chris Wilson995b6762010-08-20 13:23:26 +0100134static void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300135ironlake_enable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800136{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200137 assert_spin_locked(&dev_priv->irq_lock);
138
Paulo Zanoni730488b2014-03-07 20:12:32 -0300139 if (WARN_ON(dev_priv->pm.irqs_disabled))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300140 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300141
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000142 if ((dev_priv->irq_mask & mask) != 0) {
143 dev_priv->irq_mask &= ~mask;
144 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000145 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800146 }
147}
148
Paulo Zanoni0ff98002013-02-22 17:05:31 -0300149static void
Jani Nikula2d1013d2014-03-31 14:27:17 +0300150ironlake_disable_display_irq(struct drm_i915_private *dev_priv, u32 mask)
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800151{
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200152 assert_spin_locked(&dev_priv->irq_lock);
153
Paulo Zanoni730488b2014-03-07 20:12:32 -0300154 if (WARN_ON(dev_priv->pm.irqs_disabled))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300155 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300156
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000157 if ((dev_priv->irq_mask & mask) != mask) {
158 dev_priv->irq_mask |= mask;
159 I915_WRITE(DEIMR, dev_priv->irq_mask);
Chris Wilson3143a2b2010-11-16 15:55:10 +0000160 POSTING_READ(DEIMR);
Zhenyu Wang036a4a72009-06-08 14:40:19 +0800161 }
162}
163
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300164/**
165 * ilk_update_gt_irq - update GTIMR
166 * @dev_priv: driver private
167 * @interrupt_mask: mask of interrupt bits to update
168 * @enabled_irq_mask: mask of interrupt bits to enable
169 */
170static void ilk_update_gt_irq(struct drm_i915_private *dev_priv,
171 uint32_t interrupt_mask,
172 uint32_t enabled_irq_mask)
173{
174 assert_spin_locked(&dev_priv->irq_lock);
175
Paulo Zanoni730488b2014-03-07 20:12:32 -0300176 if (WARN_ON(dev_priv->pm.irqs_disabled))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300177 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300178
Paulo Zanoni43eaea12013-08-06 18:57:12 -0300179 dev_priv->gt_irq_mask &= ~interrupt_mask;
180 dev_priv->gt_irq_mask |= (~enabled_irq_mask & interrupt_mask);
181 I915_WRITE(GTIMR, dev_priv->gt_irq_mask);
182 POSTING_READ(GTIMR);
183}
184
185void ilk_enable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
186{
187 ilk_update_gt_irq(dev_priv, mask, mask);
188}
189
190void ilk_disable_gt_irq(struct drm_i915_private *dev_priv, uint32_t mask)
191{
192 ilk_update_gt_irq(dev_priv, mask, 0);
193}
194
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300195/**
196 * snb_update_pm_irq - update GEN6_PMIMR
197 * @dev_priv: driver private
198 * @interrupt_mask: mask of interrupt bits to update
199 * @enabled_irq_mask: mask of interrupt bits to enable
200 */
201static void snb_update_pm_irq(struct drm_i915_private *dev_priv,
202 uint32_t interrupt_mask,
203 uint32_t enabled_irq_mask)
204{
Paulo Zanoni605cd252013-08-06 18:57:15 -0300205 uint32_t new_val;
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300206
207 assert_spin_locked(&dev_priv->irq_lock);
208
Paulo Zanoni730488b2014-03-07 20:12:32 -0300209 if (WARN_ON(dev_priv->pm.irqs_disabled))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300210 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300211
Paulo Zanoni605cd252013-08-06 18:57:15 -0300212 new_val = dev_priv->pm_irq_mask;
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300213 new_val &= ~interrupt_mask;
214 new_val |= (~enabled_irq_mask & interrupt_mask);
215
Paulo Zanoni605cd252013-08-06 18:57:15 -0300216 if (new_val != dev_priv->pm_irq_mask) {
217 dev_priv->pm_irq_mask = new_val;
218 I915_WRITE(GEN6_PMIMR, dev_priv->pm_irq_mask);
Paulo Zanonif52ecbc2013-08-06 18:57:14 -0300219 POSTING_READ(GEN6_PMIMR);
220 }
Paulo Zanoniedbfdb42013-08-06 18:57:13 -0300221}
222
223void snb_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
224{
225 snb_update_pm_irq(dev_priv, mask, mask);
226}
227
228void snb_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
229{
230 snb_update_pm_irq(dev_priv, mask, 0);
231}
232
Paulo Zanoni86642812013-04-12 17:57:57 -0300233static bool ivb_can_enable_err_int(struct drm_device *dev)
234{
235 struct drm_i915_private *dev_priv = dev->dev_private;
236 struct intel_crtc *crtc;
237 enum pipe pipe;
238
Daniel Vetter4bc9d432013-06-27 13:44:58 +0200239 assert_spin_locked(&dev_priv->irq_lock);
240
Paulo Zanoni86642812013-04-12 17:57:57 -0300241 for_each_pipe(pipe) {
242 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
243
244 if (crtc->cpu_fifo_underrun_disabled)
245 return false;
246 }
247
248 return true;
249}
250
Ben Widawsky09610212014-05-15 20:58:08 +0300251/**
252 * bdw_update_pm_irq - update GT interrupt 2
253 * @dev_priv: driver private
254 * @interrupt_mask: mask of interrupt bits to update
255 * @enabled_irq_mask: mask of interrupt bits to enable
256 *
257 * Copied from the snb function, updated with relevant register offsets
258 */
259static void bdw_update_pm_irq(struct drm_i915_private *dev_priv,
260 uint32_t interrupt_mask,
261 uint32_t enabled_irq_mask)
262{
263 uint32_t new_val;
264
265 assert_spin_locked(&dev_priv->irq_lock);
266
267 if (WARN_ON(dev_priv->pm.irqs_disabled))
268 return;
269
270 new_val = dev_priv->pm_irq_mask;
271 new_val &= ~interrupt_mask;
272 new_val |= (~enabled_irq_mask & interrupt_mask);
273
274 if (new_val != dev_priv->pm_irq_mask) {
275 dev_priv->pm_irq_mask = new_val;
276 I915_WRITE(GEN8_GT_IMR(2), dev_priv->pm_irq_mask);
277 POSTING_READ(GEN8_GT_IMR(2));
278 }
279}
280
281void bdw_enable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
282{
283 bdw_update_pm_irq(dev_priv, mask, mask);
284}
285
286void bdw_disable_pm_irq(struct drm_i915_private *dev_priv, uint32_t mask)
287{
288 bdw_update_pm_irq(dev_priv, mask, 0);
289}
290
Paulo Zanoni86642812013-04-12 17:57:57 -0300291static bool cpt_can_enable_serr_int(struct drm_device *dev)
292{
293 struct drm_i915_private *dev_priv = dev->dev_private;
294 enum pipe pipe;
295 struct intel_crtc *crtc;
296
Daniel Vetterfee884e2013-07-04 23:35:21 +0200297 assert_spin_locked(&dev_priv->irq_lock);
298
Paulo Zanoni86642812013-04-12 17:57:57 -0300299 for_each_pipe(pipe) {
300 crtc = to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
301
302 if (crtc->pch_fifo_underrun_disabled)
303 return false;
304 }
305
306 return true;
307}
308
Ville Syrjälä56b80e12014-05-16 19:40:22 +0300309void i9xx_check_fifo_underruns(struct drm_device *dev)
310{
311 struct drm_i915_private *dev_priv = dev->dev_private;
312 struct intel_crtc *crtc;
313 unsigned long flags;
314
315 spin_lock_irqsave(&dev_priv->irq_lock, flags);
316
317 for_each_intel_crtc(dev, crtc) {
318 u32 reg = PIPESTAT(crtc->pipe);
319 u32 pipestat;
320
321 if (crtc->cpu_fifo_underrun_disabled)
322 continue;
323
324 pipestat = I915_READ(reg) & 0xffff0000;
325 if ((pipestat & PIPE_FIFO_UNDERRUN_STATUS) == 0)
326 continue;
327
328 I915_WRITE(reg, pipestat | PIPE_FIFO_UNDERRUN_STATUS);
329 POSTING_READ(reg);
330
331 DRM_ERROR("pipe %c underrun\n", pipe_name(crtc->pipe));
332 }
333
334 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
335}
336
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300337static void i9xx_set_fifo_underrun_reporting(struct drm_device *dev,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200338 enum pipe pipe,
339 bool enable, bool old)
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200340{
341 struct drm_i915_private *dev_priv = dev->dev_private;
342 u32 reg = PIPESTAT(pipe);
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300343 u32 pipestat = I915_READ(reg) & 0xffff0000;
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200344
345 assert_spin_locked(&dev_priv->irq_lock);
346
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300347 if (enable) {
348 I915_WRITE(reg, pipestat | PIPE_FIFO_UNDERRUN_STATUS);
349 POSTING_READ(reg);
350 } else {
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200351 if (old && pipestat & PIPE_FIFO_UNDERRUN_STATUS)
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300352 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
353 }
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200354}
355
Paulo Zanoni86642812013-04-12 17:57:57 -0300356static void ironlake_set_fifo_underrun_reporting(struct drm_device *dev,
357 enum pipe pipe, bool enable)
358{
359 struct drm_i915_private *dev_priv = dev->dev_private;
360 uint32_t bit = (pipe == PIPE_A) ? DE_PIPEA_FIFO_UNDERRUN :
361 DE_PIPEB_FIFO_UNDERRUN;
362
363 if (enable)
364 ironlake_enable_display_irq(dev_priv, bit);
365 else
366 ironlake_disable_display_irq(dev_priv, bit);
367}
368
369static void ivybridge_set_fifo_underrun_reporting(struct drm_device *dev,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200370 enum pipe pipe,
371 bool enable, bool old)
Paulo Zanoni86642812013-04-12 17:57:57 -0300372{
373 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni86642812013-04-12 17:57:57 -0300374 if (enable) {
Daniel Vetter7336df62013-07-09 22:59:16 +0200375 I915_WRITE(GEN7_ERR_INT, ERR_INT_FIFO_UNDERRUN(pipe));
376
Paulo Zanoni86642812013-04-12 17:57:57 -0300377 if (!ivb_can_enable_err_int(dev))
378 return;
379
Paulo Zanoni86642812013-04-12 17:57:57 -0300380 ironlake_enable_display_irq(dev_priv, DE_ERR_INT_IVB);
381 } else {
382 ironlake_disable_display_irq(dev_priv, DE_ERR_INT_IVB);
Daniel Vetter7336df62013-07-09 22:59:16 +0200383
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200384 if (old &&
385 I915_READ(GEN7_ERR_INT) & ERR_INT_FIFO_UNDERRUN(pipe)) {
Ville Syrjälä823c6902014-05-16 19:40:23 +0300386 DRM_ERROR("uncleared fifo underrun on pipe %c\n",
387 pipe_name(pipe));
Daniel Vetter7336df62013-07-09 22:59:16 +0200388 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300389 }
390}
391
Daniel Vetter38d83c962013-11-07 11:05:46 +0100392static void broadwell_set_fifo_underrun_reporting(struct drm_device *dev,
393 enum pipe pipe, bool enable)
394{
395 struct drm_i915_private *dev_priv = dev->dev_private;
396
397 assert_spin_locked(&dev_priv->irq_lock);
398
399 if (enable)
400 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_FIFO_UNDERRUN;
401 else
402 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_FIFO_UNDERRUN;
403 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
404 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
405}
406
Daniel Vetterfee884e2013-07-04 23:35:21 +0200407/**
408 * ibx_display_interrupt_update - update SDEIMR
409 * @dev_priv: driver private
410 * @interrupt_mask: mask of interrupt bits to update
411 * @enabled_irq_mask: mask of interrupt bits to enable
412 */
413static void ibx_display_interrupt_update(struct drm_i915_private *dev_priv,
414 uint32_t interrupt_mask,
415 uint32_t enabled_irq_mask)
416{
417 uint32_t sdeimr = I915_READ(SDEIMR);
418 sdeimr &= ~interrupt_mask;
419 sdeimr |= (~enabled_irq_mask & interrupt_mask);
420
421 assert_spin_locked(&dev_priv->irq_lock);
422
Paulo Zanoni730488b2014-03-07 20:12:32 -0300423 if (WARN_ON(dev_priv->pm.irqs_disabled))
Paulo Zanonic67a4702013-08-19 13:18:09 -0300424 return;
Paulo Zanonic67a4702013-08-19 13:18:09 -0300425
Daniel Vetterfee884e2013-07-04 23:35:21 +0200426 I915_WRITE(SDEIMR, sdeimr);
427 POSTING_READ(SDEIMR);
428}
429#define ibx_enable_display_interrupt(dev_priv, bits) \
430 ibx_display_interrupt_update((dev_priv), (bits), (bits))
431#define ibx_disable_display_interrupt(dev_priv, bits) \
432 ibx_display_interrupt_update((dev_priv), (bits), 0)
433
Daniel Vetterde280752013-07-04 23:35:24 +0200434static void ibx_set_fifo_underrun_reporting(struct drm_device *dev,
435 enum transcoder pch_transcoder,
Paulo Zanoni86642812013-04-12 17:57:57 -0300436 bool enable)
437{
Paulo Zanoni86642812013-04-12 17:57:57 -0300438 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200439 uint32_t bit = (pch_transcoder == TRANSCODER_A) ?
440 SDE_TRANSA_FIFO_UNDER : SDE_TRANSB_FIFO_UNDER;
Paulo Zanoni86642812013-04-12 17:57:57 -0300441
442 if (enable)
Daniel Vetterfee884e2013-07-04 23:35:21 +0200443 ibx_enable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300444 else
Daniel Vetterfee884e2013-07-04 23:35:21 +0200445 ibx_disable_display_interrupt(dev_priv, bit);
Paulo Zanoni86642812013-04-12 17:57:57 -0300446}
447
448static void cpt_set_fifo_underrun_reporting(struct drm_device *dev,
449 enum transcoder pch_transcoder,
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200450 bool enable, bool old)
Paulo Zanoni86642812013-04-12 17:57:57 -0300451{
452 struct drm_i915_private *dev_priv = dev->dev_private;
453
454 if (enable) {
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200455 I915_WRITE(SERR_INT,
456 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder));
457
Paulo Zanoni86642812013-04-12 17:57:57 -0300458 if (!cpt_can_enable_serr_int(dev))
459 return;
460
Daniel Vetterfee884e2013-07-04 23:35:21 +0200461 ibx_enable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Paulo Zanoni86642812013-04-12 17:57:57 -0300462 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +0200463 ibx_disable_display_interrupt(dev_priv, SDE_ERROR_CPT);
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200464
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200465 if (old && I915_READ(SERR_INT) &
466 SERR_INT_TRANS_FIFO_UNDERRUN(pch_transcoder)) {
Ville Syrjälä823c6902014-05-16 19:40:23 +0300467 DRM_ERROR("uncleared pch fifo underrun on pch transcoder %c\n",
468 transcoder_name(pch_transcoder));
Daniel Vetter1dd246f2013-07-10 08:30:23 +0200469 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300470 }
Paulo Zanoni86642812013-04-12 17:57:57 -0300471}
472
473/**
474 * intel_set_cpu_fifo_underrun_reporting - enable/disable FIFO underrun messages
475 * @dev: drm device
476 * @pipe: pipe
477 * @enable: true if we want to report FIFO underrun errors, false otherwise
478 *
479 * This function makes us disable or enable CPU fifo underruns for a specific
480 * pipe. Notice that on some Gens (e.g. IVB, HSW), disabling FIFO underrun
481 * reporting for one pipe may also disable all the other CPU error interruts for
482 * the other pipes, due to the fact that there's just one interrupt mask/enable
483 * bit for all the pipes.
484 *
485 * Returns the previous state of underrun reporting.
486 */
Daniel Vetterc5ab3bc2014-05-14 15:40:34 +0200487static bool __intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
488 enum pipe pipe, bool enable)
Paulo Zanoni86642812013-04-12 17:57:57 -0300489{
490 struct drm_i915_private *dev_priv = dev->dev_private;
491 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
492 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200493 bool old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300494
Imre Deak77961eb2014-03-05 16:20:56 +0200495 assert_spin_locked(&dev_priv->irq_lock);
496
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200497 old = !intel_crtc->cpu_fifo_underrun_disabled;
Paulo Zanoni86642812013-04-12 17:57:57 -0300498 intel_crtc->cpu_fifo_underrun_disabled = !enable;
499
Ville Syrjäläe69abff2014-05-16 19:40:21 +0300500 if (INTEL_INFO(dev)->gen < 5 || IS_VALLEYVIEW(dev))
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200501 i9xx_set_fifo_underrun_reporting(dev, pipe, enable, old);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +0200502 else if (IS_GEN5(dev) || IS_GEN6(dev))
Paulo Zanoni86642812013-04-12 17:57:57 -0300503 ironlake_set_fifo_underrun_reporting(dev, pipe, enable);
504 else if (IS_GEN7(dev))
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200505 ivybridge_set_fifo_underrun_reporting(dev, pipe, enable, old);
Daniel Vetter38d83c962013-11-07 11:05:46 +0100506 else if (IS_GEN8(dev))
507 broadwell_set_fifo_underrun_reporting(dev, pipe, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300508
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200509 return old;
Imre Deakf88d42f2014-03-04 19:23:09 +0200510}
511
512bool intel_set_cpu_fifo_underrun_reporting(struct drm_device *dev,
513 enum pipe pipe, bool enable)
514{
515 struct drm_i915_private *dev_priv = dev->dev_private;
516 unsigned long flags;
517 bool ret;
518
519 spin_lock_irqsave(&dev_priv->irq_lock, flags);
520 ret = __intel_set_cpu_fifo_underrun_reporting(dev, pipe, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300521 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Imre Deakf88d42f2014-03-04 19:23:09 +0200522
Paulo Zanoni86642812013-04-12 17:57:57 -0300523 return ret;
524}
525
Imre Deak91d181d2014-02-10 18:42:49 +0200526static bool __cpu_fifo_underrun_reporting_enabled(struct drm_device *dev,
527 enum pipe pipe)
528{
529 struct drm_i915_private *dev_priv = dev->dev_private;
530 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
531 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
532
533 return !intel_crtc->cpu_fifo_underrun_disabled;
534}
535
Paulo Zanoni86642812013-04-12 17:57:57 -0300536/**
537 * intel_set_pch_fifo_underrun_reporting - enable/disable FIFO underrun messages
538 * @dev: drm device
539 * @pch_transcoder: the PCH transcoder (same as pipe on IVB and older)
540 * @enable: true if we want to report FIFO underrun errors, false otherwise
541 *
542 * This function makes us disable or enable PCH fifo underruns for a specific
543 * PCH transcoder. Notice that on some PCHs (e.g. CPT/PPT), disabling FIFO
544 * underrun reporting for one transcoder may also disable all the other PCH
545 * error interruts for the other transcoders, due to the fact that there's just
546 * one interrupt mask/enable bit for all the transcoders.
547 *
548 * Returns the previous state of underrun reporting.
549 */
550bool intel_set_pch_fifo_underrun_reporting(struct drm_device *dev,
551 enum transcoder pch_transcoder,
552 bool enable)
553{
554 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterde280752013-07-04 23:35:24 +0200555 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pch_transcoder];
556 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni86642812013-04-12 17:57:57 -0300557 unsigned long flags;
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200558 bool old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300559
Daniel Vetterde280752013-07-04 23:35:24 +0200560 /*
561 * NOTE: Pre-LPT has a fixed cpu pipe -> pch transcoder mapping, but LPT
562 * has only one pch transcoder A that all pipes can use. To avoid racy
563 * pch transcoder -> pipe lookups from interrupt code simply store the
564 * underrun statistics in crtc A. Since we never expose this anywhere
565 * nor use it outside of the fifo underrun code here using the "wrong"
566 * crtc on LPT won't cause issues.
567 */
Paulo Zanoni86642812013-04-12 17:57:57 -0300568
569 spin_lock_irqsave(&dev_priv->irq_lock, flags);
570
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200571 old = !intel_crtc->pch_fifo_underrun_disabled;
Paulo Zanoni86642812013-04-12 17:57:57 -0300572 intel_crtc->pch_fifo_underrun_disabled = !enable;
573
574 if (HAS_PCH_IBX(dev))
Daniel Vetterde280752013-07-04 23:35:24 +0200575 ibx_set_fifo_underrun_reporting(dev, pch_transcoder, enable);
Paulo Zanoni86642812013-04-12 17:57:57 -0300576 else
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200577 cpt_set_fifo_underrun_reporting(dev, pch_transcoder, enable, old);
Paulo Zanoni86642812013-04-12 17:57:57 -0300578
Paulo Zanoni86642812013-04-12 17:57:57 -0300579 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
Daniel Vetter2ae2a502014-05-22 17:56:32 +0200580 return old;
Paulo Zanoni86642812013-04-12 17:57:57 -0300581}
582
583
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100584static void
Imre Deak755e9012014-02-10 18:42:47 +0200585__i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
586 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800587{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200588 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200589 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800590
Daniel Vetterb79480b2013-06-27 17:52:10 +0200591 assert_spin_locked(&dev_priv->irq_lock);
592
Ville Syrjälä04feced2014-04-03 13:28:33 +0300593 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
594 status_mask & ~PIPESTAT_INT_STATUS_MASK,
595 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
596 pipe_name(pipe), enable_mask, status_mask))
Imre Deak755e9012014-02-10 18:42:47 +0200597 return;
598
599 if ((pipestat & enable_mask) == enable_mask)
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200600 return;
601
Imre Deak91d181d2014-02-10 18:42:49 +0200602 dev_priv->pipestat_irq_mask[pipe] |= status_mask;
603
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200604 /* Enable the interrupt, clear any pending status */
Imre Deak755e9012014-02-10 18:42:47 +0200605 pipestat |= enable_mask | status_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200606 I915_WRITE(reg, pipestat);
607 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800608}
609
Daniel Vetterb5ea6422014-03-02 21:18:00 +0100610static void
Imre Deak755e9012014-02-10 18:42:47 +0200611__i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
612 u32 enable_mask, u32 status_mask)
Keith Packard7c463582008-11-04 02:03:27 -0800613{
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200614 u32 reg = PIPESTAT(pipe);
Imre Deak755e9012014-02-10 18:42:47 +0200615 u32 pipestat = I915_READ(reg) & PIPESTAT_INT_ENABLE_MASK;
Keith Packard7c463582008-11-04 02:03:27 -0800616
Daniel Vetterb79480b2013-06-27 17:52:10 +0200617 assert_spin_locked(&dev_priv->irq_lock);
618
Ville Syrjälä04feced2014-04-03 13:28:33 +0300619 if (WARN_ONCE(enable_mask & ~PIPESTAT_INT_ENABLE_MASK ||
620 status_mask & ~PIPESTAT_INT_STATUS_MASK,
621 "pipe %c: enable_mask=0x%x, status_mask=0x%x\n",
622 pipe_name(pipe), enable_mask, status_mask))
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200623 return;
624
Imre Deak755e9012014-02-10 18:42:47 +0200625 if ((pipestat & enable_mask) == 0)
626 return;
627
Imre Deak91d181d2014-02-10 18:42:49 +0200628 dev_priv->pipestat_irq_mask[pipe] &= ~status_mask;
629
Imre Deak755e9012014-02-10 18:42:47 +0200630 pipestat &= ~enable_mask;
Ville Syrjälä46c06a32013-02-20 21:16:18 +0200631 I915_WRITE(reg, pipestat);
632 POSTING_READ(reg);
Keith Packard7c463582008-11-04 02:03:27 -0800633}
634
Imre Deak10c59c52014-02-10 18:42:48 +0200635static u32 vlv_get_pipestat_enable_mask(struct drm_device *dev, u32 status_mask)
636{
637 u32 enable_mask = status_mask << 16;
638
639 /*
Ville Syrjälä724a6902014-04-09 13:28:48 +0300640 * On pipe A we don't support the PSR interrupt yet,
641 * on pipe B and C the same bit MBZ.
Imre Deak10c59c52014-02-10 18:42:48 +0200642 */
643 if (WARN_ON_ONCE(status_mask & PIPE_A_PSR_STATUS_VLV))
644 return 0;
Ville Syrjälä724a6902014-04-09 13:28:48 +0300645 /*
646 * On pipe B and C we don't support the PSR interrupt yet, on pipe
647 * A the same bit is for perf counters which we don't use either.
648 */
649 if (WARN_ON_ONCE(status_mask & PIPE_B_PSR_STATUS_VLV))
650 return 0;
Imre Deak10c59c52014-02-10 18:42:48 +0200651
652 enable_mask &= ~(PIPE_FIFO_UNDERRUN_STATUS |
653 SPRITE0_FLIP_DONE_INT_EN_VLV |
654 SPRITE1_FLIP_DONE_INT_EN_VLV);
655 if (status_mask & SPRITE0_FLIP_DONE_INT_STATUS_VLV)
656 enable_mask |= SPRITE0_FLIP_DONE_INT_EN_VLV;
657 if (status_mask & SPRITE1_FLIP_DONE_INT_STATUS_VLV)
658 enable_mask |= SPRITE1_FLIP_DONE_INT_EN_VLV;
659
660 return enable_mask;
661}
662
Imre Deak755e9012014-02-10 18:42:47 +0200663void
664i915_enable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
665 u32 status_mask)
666{
667 u32 enable_mask;
668
Imre Deak10c59c52014-02-10 18:42:48 +0200669 if (IS_VALLEYVIEW(dev_priv->dev))
670 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
671 status_mask);
672 else
673 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200674 __i915_enable_pipestat(dev_priv, pipe, enable_mask, status_mask);
675}
676
677void
678i915_disable_pipestat(struct drm_i915_private *dev_priv, enum pipe pipe,
679 u32 status_mask)
680{
681 u32 enable_mask;
682
Imre Deak10c59c52014-02-10 18:42:48 +0200683 if (IS_VALLEYVIEW(dev_priv->dev))
684 enable_mask = vlv_get_pipestat_enable_mask(dev_priv->dev,
685 status_mask);
686 else
687 enable_mask = status_mask << 16;
Imre Deak755e9012014-02-10 18:42:47 +0200688 __i915_disable_pipestat(dev_priv, pipe, enable_mask, status_mask);
689}
690
=?utf-8?q?Michel_D=C3=A4nzer?=a6b54f32006-10-24 23:37:43 +1000691/**
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300692 * i915_enable_asle_pipestat - enable ASLE pipestat for OpRegion
Zhao Yakui01c66882009-10-28 05:10:00 +0000693 */
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300694static void i915_enable_asle_pipestat(struct drm_device *dev)
Zhao Yakui01c66882009-10-28 05:10:00 +0000695{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300696 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000697 unsigned long irqflags;
698
Jani Nikulaf49e38d2013-04-29 13:02:54 +0300699 if (!dev_priv->opregion.asle || !IS_MOBILE(dev))
700 return;
701
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000702 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000703
Imre Deak755e9012014-02-10 18:42:47 +0200704 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_LEGACY_BLC_EVENT_STATUS);
Jani Nikulaf8987802013-04-29 13:02:53 +0300705 if (INTEL_INFO(dev)->gen >= 4)
Daniel Vetter3b6c42e2013-10-21 18:04:35 +0200706 i915_enable_pipestat(dev_priv, PIPE_A,
Imre Deak755e9012014-02-10 18:42:47 +0200707 PIPE_LEGACY_BLC_EVENT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +0000708
709 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Zhao Yakui01c66882009-10-28 05:10:00 +0000710}
711
712/**
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700713 * i915_pipe_enabled - check if a pipe is enabled
714 * @dev: DRM device
715 * @pipe: pipe to check
716 *
717 * Reading certain registers when the pipe is disabled can hang the chip.
718 * Use this routine to make sure the PLL is running and the pipe is active
719 * before reading such registers if unsure.
720 */
721static int
722i915_pipe_enabled(struct drm_device *dev, int pipe)
723{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300724 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni702e7a52012-10-23 18:29:59 -0200725
Daniel Vettera01025a2013-05-22 00:50:23 +0200726 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
727 /* Locking is horribly broken here, but whatever. */
728 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
729 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Paulo Zanoni71f8ba62013-05-03 12:15:39 -0300730
Daniel Vettera01025a2013-05-22 00:50:23 +0200731 return intel_crtc->active;
732 } else {
733 return I915_READ(PIPECONF(pipe)) & PIPECONF_ENABLE;
734 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700735}
736
Ville Syrjäläf75f3742014-05-15 20:20:36 +0300737/*
738 * This timing diagram depicts the video signal in and
739 * around the vertical blanking period.
740 *
741 * Assumptions about the fictitious mode used in this example:
742 * vblank_start >= 3
743 * vsync_start = vblank_start + 1
744 * vsync_end = vblank_start + 2
745 * vtotal = vblank_start + 3
746 *
747 * start of vblank:
748 * latch double buffered registers
749 * increment frame counter (ctg+)
750 * generate start of vblank interrupt (gen4+)
751 * |
752 * | frame start:
753 * | generate frame start interrupt (aka. vblank interrupt) (gmch)
754 * | may be shifted forward 1-3 extra lines via PIPECONF
755 * | |
756 * | | start of vsync:
757 * | | generate vsync interrupt
758 * | | |
759 * ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx___ ___xxxx
760 * . \hs/ . \hs/ \hs/ \hs/ . \hs/
761 * ----va---> <-----------------vb--------------------> <--------va-------------
762 * | | <----vs-----> |
763 * -vbs-----> <---vbs+1---> <---vbs+2---> <-----0-----> <-----1-----> <-----2--- (scanline counter gen2)
764 * -vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2---> <-----0--- (scanline counter gen3+)
765 * -vbs-2---> <---vbs-2---> <---vbs-1---> <---vbs-----> <---vbs+1---> <---vbs+2- (scanline counter hsw+ hdmi)
766 * | | |
767 * last visible pixel first visible pixel
768 * | increment frame counter (gen3/4)
769 * pixel counter = vblank_start * htotal pixel counter = 0 (gen3/4)
770 *
771 * x = horizontal active
772 * _ = horizontal blanking
773 * hs = horizontal sync
774 * va = vertical active
775 * vb = vertical blanking
776 * vs = vertical sync
777 * vbs = vblank_start (number)
778 *
779 * Summary:
780 * - most events happen at the start of horizontal sync
781 * - frame start happens at the start of horizontal blank, 1-4 lines
782 * (depending on PIPECONF settings) after the start of vblank
783 * - gen3/4 pixel and frame counter are synchronized with the start
784 * of horizontal active on the first line of vertical active
785 */
786
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +0300787static u32 i8xx_get_vblank_counter(struct drm_device *dev, int pipe)
788{
789 /* Gen2 doesn't have a hardware frame counter */
790 return 0;
791}
792
Keith Packard42f52ef2008-10-18 19:39:29 -0700793/* Called from drm generic code, passed a 'crtc', which
794 * we use as a pipe index
795 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700796static u32 i915_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700797{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300798 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700799 unsigned long high_frame;
800 unsigned long low_frame;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300801 u32 high1, high2, low, pixel, vbl_start, hsync_start, htotal;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700802
803 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800804 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800805 "pipe %c\n", pipe_name(pipe));
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700806 return 0;
807 }
808
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300809 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
810 struct intel_crtc *intel_crtc =
811 to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
812 const struct drm_display_mode *mode =
813 &intel_crtc->config.adjusted_mode;
814
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300815 htotal = mode->crtc_htotal;
816 hsync_start = mode->crtc_hsync_start;
817 vbl_start = mode->crtc_vblank_start;
818 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
819 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300820 } else {
Daniel Vettera2d213d2014-02-07 16:34:05 +0100821 enum transcoder cpu_transcoder = (enum transcoder) pipe;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300822
823 htotal = ((I915_READ(HTOTAL(cpu_transcoder)) >> 16) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300824 hsync_start = (I915_READ(HSYNC(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300825 vbl_start = (I915_READ(VBLANK(cpu_transcoder)) & 0x1fff) + 1;
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300826 if ((I915_READ(PIPECONF(cpu_transcoder)) &
827 PIPECONF_INTERLACE_MASK) != PIPECONF_PROGRESSIVE)
828 vbl_start = DIV_ROUND_UP(vbl_start, 2);
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300829 }
830
Ville Syrjälä0b2a8e02014-04-29 13:35:50 +0300831 /* Convert to pixel count */
832 vbl_start *= htotal;
833
834 /* Start of vblank event occurs at start of hsync */
835 vbl_start -= htotal - hsync_start;
836
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800837 high_frame = PIPEFRAME(pipe);
838 low_frame = PIPEFRAMEPIXEL(pipe);
Chris Wilson5eddb702010-09-11 13:48:45 +0100839
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700840 /*
841 * High & low register fields aren't synchronized, so make sure
842 * we get a low value that's stable across two reads of the high
843 * register.
844 */
845 do {
Chris Wilson5eddb702010-09-11 13:48:45 +0100846 high1 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300847 low = I915_READ(low_frame);
Chris Wilson5eddb702010-09-11 13:48:45 +0100848 high2 = I915_READ(high_frame) & PIPE_FRAME_HIGH_MASK;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700849 } while (high1 != high2);
850
Chris Wilson5eddb702010-09-11 13:48:45 +0100851 high1 >>= PIPE_FRAME_HIGH_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300852 pixel = low & PIPE_PIXEL_MASK;
Chris Wilson5eddb702010-09-11 13:48:45 +0100853 low >>= PIPE_FRAME_LOW_SHIFT;
Ville Syrjälä391f75e2013-09-25 19:55:26 +0300854
855 /*
856 * The frame counter increments at beginning of active.
857 * Cook up a vblank counter by also checking the pixel
858 * counter against vblank start.
859 */
Ville Syrjäläedc08d02013-11-06 13:56:27 -0200860 return (((high1 << 8) | low) + (pixel >= vbl_start)) & 0xffffff;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700861}
862
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700863static u32 gm45_get_vblank_counter(struct drm_device *dev, int pipe)
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800864{
Jani Nikula2d1013d2014-03-31 14:27:17 +0300865 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800866 int reg = PIPE_FRMCOUNT_GM45(pipe);
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800867
868 if (!i915_pipe_enabled(dev, pipe)) {
Zhao Yakui44d98a62009-10-09 11:39:40 +0800869 DRM_DEBUG_DRIVER("trying to get vblank count for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800870 "pipe %c\n", pipe_name(pipe));
Jesse Barnes9880b7a2009-02-06 10:22:41 -0800871 return 0;
872 }
873
874 return I915_READ(reg);
875}
876
Mario Kleinerad3543e2013-10-30 05:13:08 +0100877/* raw reads, only for fast reads of display block, no need for forcewake etc. */
878#define __raw_i915_read32(dev_priv__, reg__) readl((dev_priv__)->regs + (reg__))
Mario Kleinerad3543e2013-10-30 05:13:08 +0100879
Ville Syrjäläa225f072014-04-29 13:35:45 +0300880static int __intel_get_crtc_scanline(struct intel_crtc *crtc)
Ville Syrjälä54ddcbd2013-09-23 13:02:07 +0300881{
Ville Syrjäläa225f072014-04-29 13:35:45 +0300882 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä54ddcbd2013-09-23 13:02:07 +0300883 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300884 const struct drm_display_mode *mode = &crtc->config.adjusted_mode;
885 enum pipe pipe = crtc->pipe;
Ville Syrjälä80715b22014-05-15 20:23:23 +0300886 int position, vtotal;
Ville Syrjälä54ddcbd2013-09-23 13:02:07 +0300887
Ville Syrjälä80715b22014-05-15 20:23:23 +0300888 vtotal = mode->crtc_vtotal;
Ville Syrjäläa225f072014-04-29 13:35:45 +0300889 if (mode->flags & DRM_MODE_FLAG_INTERLACE)
890 vtotal /= 2;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100891
Ville Syrjäläa225f072014-04-29 13:35:45 +0300892 if (IS_GEN2(dev))
893 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN2;
894 else
895 position = __raw_i915_read32(dev_priv, PIPEDSL(pipe)) & DSL_LINEMASK_GEN3;
896
897 /*
Ville Syrjälä80715b22014-05-15 20:23:23 +0300898 * See update_scanline_offset() for the details on the
899 * scanline_offset adjustment.
Ville Syrjäläa225f072014-04-29 13:35:45 +0300900 */
Ville Syrjälä80715b22014-05-15 20:23:23 +0300901 return (position + crtc->scanline_offset) % vtotal;
Ville Syrjälä54ddcbd2013-09-23 13:02:07 +0300902}
903
Jesse Barnesf71d4af2011-06-28 13:00:41 -0700904static int i915_get_crtc_scanoutpos(struct drm_device *dev, int pipe,
Ville Syrjäläabca9e42013-10-28 20:50:48 +0200905 unsigned int flags, int *vpos, int *hpos,
906 ktime_t *stime, ktime_t *etime)
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100907{
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300908 struct drm_i915_private *dev_priv = dev->dev_private;
909 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
910 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
911 const struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300912 int position;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300913 int vbl_start, vbl_end, hsync_start, htotal, vtotal;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100914 bool in_vbl = true;
915 int ret = 0;
Mario Kleinerad3543e2013-10-30 05:13:08 +0100916 unsigned long irqflags;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100917
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300918 if (!intel_crtc->active) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100919 DRM_DEBUG_DRIVER("trying to get scanoutpos for disabled "
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800920 "pipe %c\n", pipe_name(pipe));
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100921 return 0;
922 }
923
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300924 htotal = mode->crtc_htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300925 hsync_start = mode->crtc_hsync_start;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300926 vtotal = mode->crtc_vtotal;
927 vbl_start = mode->crtc_vblank_start;
928 vbl_end = mode->crtc_vblank_end;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100929
Ville Syrjäläd31faf62013-10-28 16:31:41 +0200930 if (mode->flags & DRM_MODE_FLAG_INTERLACE) {
931 vbl_start = DIV_ROUND_UP(vbl_start, 2);
932 vbl_end /= 2;
933 vtotal /= 2;
934 }
935
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +0300936 ret |= DRM_SCANOUTPOS_VALID | DRM_SCANOUTPOS_ACCURATE;
937
Mario Kleinerad3543e2013-10-30 05:13:08 +0100938 /*
939 * Lock uncore.lock, as we will do multiple timing critical raw
940 * register reads, potentially with preemption disabled, so the
941 * following code must not block on uncore.lock.
942 */
943 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300944
Mario Kleinerad3543e2013-10-30 05:13:08 +0100945 /* preempt_disable_rt() should go right here in PREEMPT_RT patchset. */
946
947 /* Get optional system timestamp before query. */
948 if (stime)
949 *stime = ktime_get();
950
Ville Syrjälä7c06b082013-10-11 21:52:43 +0300951 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100952 /* No obvious pixelcount register. Only query vertical
953 * scanout position from Display scan line register.
954 */
Ville Syrjäläa225f072014-04-29 13:35:45 +0300955 position = __intel_get_crtc_scanline(intel_crtc);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100956 } else {
957 /* Have access to pixelcount since start of frame.
958 * We can split this into vertical and horizontal
959 * scanout position.
960 */
Mario Kleinerad3543e2013-10-30 05:13:08 +0100961 position = (__raw_i915_read32(dev_priv, PIPEFRAMEPIXEL(pipe)) & PIPE_PIXEL_MASK) >> PIPE_PIXEL_SHIFT;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +0100962
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300963 /* convert to pixel counts */
964 vbl_start *= htotal;
965 vbl_end *= htotal;
966 vtotal *= htotal;
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300967
968 /*
Ville Syrjälä7e78f1cb2014-04-29 13:35:49 +0300969 * In interlaced modes, the pixel counter counts all pixels,
970 * so one field will have htotal more pixels. In order to avoid
971 * the reported position from jumping backwards when the pixel
972 * counter is beyond the length of the shorter field, just
973 * clamp the position the length of the shorter field. This
974 * matches how the scanline counter based position works since
975 * the scanline counter doesn't count the two half lines.
976 */
977 if (position >= vtotal)
978 position = vtotal - 1;
979
980 /*
Ville Syrjälä78e8fc62014-04-29 13:35:44 +0300981 * Start of vblank interrupt is triggered at start of hsync,
982 * just prior to the first active line of vblank. However we
983 * consider lines to start at the leading edge of horizontal
984 * active. So, should we get here before we've crossed into
985 * the horizontal active of the first line in vblank, we would
986 * not set the DRM_SCANOUTPOS_INVBL flag. In order to fix that,
987 * always add htotal-hsync_start to the current pixel position.
988 */
989 position = (position + htotal - hsync_start) % vtotal;
Ville Syrjälä3aa18df2013-10-11 19:10:32 +0300990 }
991
Mario Kleinerad3543e2013-10-30 05:13:08 +0100992 /* Get optional system timestamp after query. */
993 if (etime)
994 *etime = ktime_get();
995
996 /* preempt_enable_rt() should go right here in PREEMPT_RT patchset. */
997
998 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
999
Ville Syrjälä3aa18df2013-10-11 19:10:32 +03001000 in_vbl = position >= vbl_start && position < vbl_end;
1001
1002 /*
1003 * While in vblank, position will be negative
1004 * counting up towards 0 at vbl_end. And outside
1005 * vblank, position will be positive counting
1006 * up since vbl_end.
1007 */
1008 if (position >= vbl_start)
1009 position -= vbl_end;
1010 else
1011 position += vtotal - vbl_end;
1012
Ville Syrjälä7c06b082013-10-11 21:52:43 +03001013 if (IS_GEN2(dev) || IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Ville Syrjälä3aa18df2013-10-11 19:10:32 +03001014 *vpos = position;
1015 *hpos = 0;
1016 } else {
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001017 *vpos = position / htotal;
1018 *hpos = position - (*vpos * htotal);
1019 }
1020
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001021 /* In vblank? */
1022 if (in_vbl)
1023 ret |= DRM_SCANOUTPOS_INVBL;
1024
1025 return ret;
1026}
1027
Ville Syrjäläa225f072014-04-29 13:35:45 +03001028int intel_get_crtc_scanline(struct intel_crtc *crtc)
1029{
1030 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
1031 unsigned long irqflags;
1032 int position;
1033
1034 spin_lock_irqsave(&dev_priv->uncore.lock, irqflags);
1035 position = __intel_get_crtc_scanline(crtc);
1036 spin_unlock_irqrestore(&dev_priv->uncore.lock, irqflags);
1037
1038 return position;
1039}
1040
Jesse Barnesf71d4af2011-06-28 13:00:41 -07001041static int i915_get_vblank_timestamp(struct drm_device *dev, int pipe,
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001042 int *max_error,
1043 struct timeval *vblank_time,
1044 unsigned flags)
1045{
Chris Wilson4041b852011-01-22 10:07:56 +00001046 struct drm_crtc *crtc;
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001047
Ben Widawsky7eb552a2013-03-13 14:05:41 -07001048 if (pipe < 0 || pipe >= INTEL_INFO(dev)->num_pipes) {
Chris Wilson4041b852011-01-22 10:07:56 +00001049 DRM_ERROR("Invalid crtc %d\n", pipe);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001050 return -EINVAL;
1051 }
1052
1053 /* Get drm_crtc to timestamp: */
Chris Wilson4041b852011-01-22 10:07:56 +00001054 crtc = intel_get_crtc_for_pipe(dev, pipe);
1055 if (crtc == NULL) {
1056 DRM_ERROR("Invalid crtc %d\n", pipe);
1057 return -EINVAL;
1058 }
1059
1060 if (!crtc->enabled) {
1061 DRM_DEBUG_KMS("crtc %d is disabled\n", pipe);
1062 return -EBUSY;
1063 }
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001064
1065 /* Helper routine in DRM core does all the work: */
Chris Wilson4041b852011-01-22 10:07:56 +00001066 return drm_calc_vbltimestamp_from_scanoutpos(dev, pipe, max_error,
1067 vblank_time, flags,
Ville Syrjälä7da903e2013-10-26 17:57:31 +03001068 crtc,
1069 &to_intel_crtc(crtc)->config.adjusted_mode);
Mario Kleiner0af7e4d2010-12-08 04:07:19 +01001070}
1071
Jani Nikula67c347f2013-09-17 14:26:34 +03001072static bool intel_hpd_irq_event(struct drm_device *dev,
1073 struct drm_connector *connector)
Egbert Eich321a1b32013-04-11 16:00:26 +02001074{
1075 enum drm_connector_status old_status;
1076
1077 WARN_ON(!mutex_is_locked(&dev->mode_config.mutex));
1078 old_status = connector->status;
1079
1080 connector->status = connector->funcs->detect(connector, false);
Jani Nikula67c347f2013-09-17 14:26:34 +03001081 if (old_status == connector->status)
1082 return false;
1083
1084 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] status updated from %s to %s\n",
Egbert Eich321a1b32013-04-11 16:00:26 +02001085 connector->base.id,
Jani Nikulac23cc412014-06-03 14:56:17 +03001086 connector->name,
Jani Nikula67c347f2013-09-17 14:26:34 +03001087 drm_get_connector_status_name(old_status),
1088 drm_get_connector_status_name(connector->status));
1089
1090 return true;
Egbert Eich321a1b32013-04-11 16:00:26 +02001091}
1092
Dave Airlie13cf5502014-06-18 11:29:35 +10001093static void i915_digport_work_func(struct work_struct *work)
1094{
1095 struct drm_i915_private *dev_priv =
1096 container_of(work, struct drm_i915_private, dig_port_work);
1097 unsigned long irqflags;
1098 u32 long_port_mask, short_port_mask;
1099 struct intel_digital_port *intel_dig_port;
1100 int i, ret;
1101 u32 old_bits = 0;
1102
1103 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1104 long_port_mask = dev_priv->long_hpd_port_mask;
1105 dev_priv->long_hpd_port_mask = 0;
1106 short_port_mask = dev_priv->short_hpd_port_mask;
1107 dev_priv->short_hpd_port_mask = 0;
1108 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1109
1110 for (i = 0; i < I915_MAX_PORTS; i++) {
1111 bool valid = false;
1112 bool long_hpd = false;
1113 intel_dig_port = dev_priv->hpd_irq_port[i];
1114 if (!intel_dig_port || !intel_dig_port->hpd_pulse)
1115 continue;
1116
1117 if (long_port_mask & (1 << i)) {
1118 valid = true;
1119 long_hpd = true;
1120 } else if (short_port_mask & (1 << i))
1121 valid = true;
1122
1123 if (valid) {
1124 ret = intel_dig_port->hpd_pulse(intel_dig_port, long_hpd);
1125 if (ret == true) {
1126 /* if we get true fallback to old school hpd */
1127 old_bits |= (1 << intel_dig_port->base.hpd_pin);
1128 }
1129 }
1130 }
1131
1132 if (old_bits) {
1133 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
1134 dev_priv->hpd_event_bits |= old_bits;
1135 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1136 schedule_work(&dev_priv->hotplug_work);
1137 }
1138}
1139
Jesse Barnes5ca58282009-03-31 14:11:15 -07001140/*
1141 * Handle hotplug events outside the interrupt handler proper.
1142 */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001143#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
1144
Jesse Barnes5ca58282009-03-31 14:11:15 -07001145static void i915_hotplug_work_func(struct work_struct *work)
1146{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001147 struct drm_i915_private *dev_priv =
1148 container_of(work, struct drm_i915_private, hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001149 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -07001150 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001151 struct intel_connector *intel_connector;
1152 struct intel_encoder *intel_encoder;
1153 struct drm_connector *connector;
1154 unsigned long irqflags;
1155 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +02001156 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +02001157 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001158
Keith Packarda65e34c2011-07-25 10:04:56 -07001159 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -08001160 DRM_DEBUG_KMS("running encoder hotplug functions\n");
1161
Egbert Eichcd569ae2013-04-16 13:36:57 +02001162 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +02001163
1164 hpd_event_bits = dev_priv->hpd_event_bits;
1165 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001166 list_for_each_entry(connector, &mode_config->connector_list, head) {
1167 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +10001168 if (!intel_connector->encoder)
1169 continue;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001170 intel_encoder = intel_connector->encoder;
1171 if (intel_encoder->hpd_pin > HPD_NONE &&
1172 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
1173 connector->polled == DRM_CONNECTOR_POLL_HPD) {
1174 DRM_INFO("HPD interrupt storm detected on connector %s: "
1175 "switching from hotplug detection to polling\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001176 connector->name);
Egbert Eichcd569ae2013-04-16 13:36:57 +02001177 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
1178 connector->polled = DRM_CONNECTOR_POLL_CONNECT
1179 | DRM_CONNECTOR_POLL_DISCONNECT;
1180 hpd_disabled = true;
1181 }
Egbert Eich142e2392013-04-11 15:57:57 +02001182 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1183 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001184 connector->name, intel_encoder->hpd_pin);
Egbert Eich142e2392013-04-11 15:57:57 +02001185 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001186 }
1187 /* if there were no outputs to poll, poll was disabled,
1188 * therefore make sure it's enabled when disabling HPD on
1189 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001190 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001191 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02001192 mod_timer(&dev_priv->hotplug_reenable_timer,
1193 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
1194 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001195
1196 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1197
Egbert Eich321a1b32013-04-11 16:00:26 +02001198 list_for_each_entry(connector, &mode_config->connector_list, head) {
1199 intel_connector = to_intel_connector(connector);
Dave Airlie36cd7442014-05-02 13:44:18 +10001200 if (!intel_connector->encoder)
1201 continue;
Egbert Eich321a1b32013-04-11 16:00:26 +02001202 intel_encoder = intel_connector->encoder;
1203 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1204 if (intel_encoder->hot_plug)
1205 intel_encoder->hot_plug(intel_encoder);
1206 if (intel_hpd_irq_event(dev, connector))
1207 changed = true;
1208 }
1209 }
Keith Packard40ee3382011-07-28 15:31:19 -07001210 mutex_unlock(&mode_config->mutex);
1211
Egbert Eich321a1b32013-04-11 16:00:26 +02001212 if (changed)
1213 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001214}
1215
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02001216static void intel_hpd_irq_uninstall(struct drm_i915_private *dev_priv)
1217{
1218 del_timer_sync(&dev_priv->hotplug_reenable_timer);
1219}
1220
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001221static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001222{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001223 struct drm_i915_private *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001224 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +02001225 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001226
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001227 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001228
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001229 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1230
Daniel Vetter20e4d402012-08-08 23:35:39 +02001231 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001232
Jesse Barnes7648fa92010-05-20 14:28:11 -07001233 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001234 busy_up = I915_READ(RCPREVBSYTUPAVG);
1235 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001236 max_avg = I915_READ(RCBMAXAVG);
1237 min_avg = I915_READ(RCBMINAVG);
1238
1239 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001240 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001241 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1242 new_delay = dev_priv->ips.cur_delay - 1;
1243 if (new_delay < dev_priv->ips.max_delay)
1244 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001245 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001246 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1247 new_delay = dev_priv->ips.cur_delay + 1;
1248 if (new_delay > dev_priv->ips.min_delay)
1249 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001250 }
1251
Jesse Barnes7648fa92010-05-20 14:28:11 -07001252 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001253 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001254
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001255 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001256
Jesse Barnesf97108d2010-01-29 11:27:07 -08001257 return;
1258}
1259
Chris Wilson549f7362010-10-19 11:19:32 +01001260static void notify_ring(struct drm_device *dev,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001261 struct intel_engine_cs *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001262{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001263 if (!intel_ring_initialized(ring))
Chris Wilson475553d2011-01-20 09:52:56 +00001264 return;
1265
Chris Wilson814e9b52013-09-23 17:33:19 -03001266 trace_i915_gem_request_complete(ring);
Chris Wilson9862e602011-01-04 22:22:17 +00001267
Sourab Gupta84c33a62014-06-02 16:47:17 +05301268 if (drm_core_check_feature(dev, DRIVER_MODESET))
1269 intel_notify_mmio_flip(ring);
1270
Chris Wilson549f7362010-10-19 11:19:32 +01001271 wake_up_all(&ring->irq_queue);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03001272 i915_queue_hangcheck(dev);
Chris Wilson549f7362010-10-19 11:19:32 +01001273}
1274
Deepak S31685c22014-07-03 17:33:01 -04001275static u32 vlv_c0_residency(struct drm_i915_private *dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001276 struct intel_rps_ei *rps_ei)
Deepak S31685c22014-07-03 17:33:01 -04001277{
1278 u32 cz_ts, cz_freq_khz;
1279 u32 render_count, media_count;
1280 u32 elapsed_render, elapsed_media, elapsed_time;
1281 u32 residency = 0;
1282
1283 cz_ts = vlv_punit_read(dev_priv, PUNIT_REG_CZ_TIMESTAMP);
1284 cz_freq_khz = DIV_ROUND_CLOSEST(dev_priv->mem_freq * 1000, 4);
1285
1286 render_count = I915_READ(VLV_RENDER_C0_COUNT_REG);
1287 media_count = I915_READ(VLV_MEDIA_C0_COUNT_REG);
1288
Chris Wilsonbf225f22014-07-10 20:31:18 +01001289 if (rps_ei->cz_clock == 0) {
1290 rps_ei->cz_clock = cz_ts;
1291 rps_ei->render_c0 = render_count;
1292 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001293
1294 return dev_priv->rps.cur_freq;
1295 }
1296
Chris Wilsonbf225f22014-07-10 20:31:18 +01001297 elapsed_time = cz_ts - rps_ei->cz_clock;
1298 rps_ei->cz_clock = cz_ts;
Deepak S31685c22014-07-03 17:33:01 -04001299
Chris Wilsonbf225f22014-07-10 20:31:18 +01001300 elapsed_render = render_count - rps_ei->render_c0;
1301 rps_ei->render_c0 = render_count;
Deepak S31685c22014-07-03 17:33:01 -04001302
Chris Wilsonbf225f22014-07-10 20:31:18 +01001303 elapsed_media = media_count - rps_ei->media_c0;
1304 rps_ei->media_c0 = media_count;
Deepak S31685c22014-07-03 17:33:01 -04001305
1306 /* Convert all the counters into common unit of milli sec */
1307 elapsed_time /= VLV_CZ_CLOCK_TO_MILLI_SEC;
1308 elapsed_render /= cz_freq_khz;
1309 elapsed_media /= cz_freq_khz;
1310
1311 /*
1312 * Calculate overall C0 residency percentage
1313 * only if elapsed time is non zero
1314 */
1315 if (elapsed_time) {
1316 residency =
1317 ((max(elapsed_render, elapsed_media) * 100)
1318 / elapsed_time);
1319 }
1320
1321 return residency;
1322}
1323
1324/**
1325 * vlv_calc_delay_from_C0_counters - Increase/Decrease freq based on GPU
1326 * busy-ness calculated from C0 counters of render & media power wells
1327 * @dev_priv: DRM device private
1328 *
1329 */
1330static u32 vlv_calc_delay_from_C0_counters(struct drm_i915_private *dev_priv)
1331{
1332 u32 residency_C0_up = 0, residency_C0_down = 0;
1333 u8 new_delay, adj;
1334
1335 dev_priv->rps.ei_interrupt_count++;
1336
1337 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
1338
1339
Chris Wilsonbf225f22014-07-10 20:31:18 +01001340 if (dev_priv->rps.up_ei.cz_clock == 0) {
1341 vlv_c0_residency(dev_priv, &dev_priv->rps.up_ei);
1342 vlv_c0_residency(dev_priv, &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001343 return dev_priv->rps.cur_freq;
1344 }
1345
1346
1347 /*
1348 * To down throttle, C0 residency should be less than down threshold
1349 * for continous EI intervals. So calculate down EI counters
1350 * once in VLV_INT_COUNT_FOR_DOWN_EI
1351 */
1352 if (dev_priv->rps.ei_interrupt_count == VLV_INT_COUNT_FOR_DOWN_EI) {
1353
1354 dev_priv->rps.ei_interrupt_count = 0;
1355
1356 residency_C0_down = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001357 &dev_priv->rps.down_ei);
Deepak S31685c22014-07-03 17:33:01 -04001358 } else {
1359 residency_C0_up = vlv_c0_residency(dev_priv,
Chris Wilsonbf225f22014-07-10 20:31:18 +01001360 &dev_priv->rps.up_ei);
Deepak S31685c22014-07-03 17:33:01 -04001361 }
1362
1363 new_delay = dev_priv->rps.cur_freq;
1364
1365 adj = dev_priv->rps.last_adj;
1366 /* C0 residency is greater than UP threshold. Increase Frequency */
1367 if (residency_C0_up >= VLV_RP_UP_EI_THRESHOLD) {
1368 if (adj > 0)
1369 adj *= 2;
1370 else
1371 adj = 1;
1372
1373 if (dev_priv->rps.cur_freq < dev_priv->rps.max_freq_softlimit)
1374 new_delay = dev_priv->rps.cur_freq + adj;
1375
1376 /*
1377 * For better performance, jump directly
1378 * to RPe if we're below it.
1379 */
1380 if (new_delay < dev_priv->rps.efficient_freq)
1381 new_delay = dev_priv->rps.efficient_freq;
1382
1383 } else if (!dev_priv->rps.ei_interrupt_count &&
1384 (residency_C0_down < VLV_RP_DOWN_EI_THRESHOLD)) {
1385 if (adj < 0)
1386 adj *= 2;
1387 else
1388 adj = -1;
1389 /*
1390 * This means, C0 residency is less than down threshold over
1391 * a period of VLV_INT_COUNT_FOR_DOWN_EI. So, reduce the freq
1392 */
1393 if (dev_priv->rps.cur_freq > dev_priv->rps.min_freq_softlimit)
1394 new_delay = dev_priv->rps.cur_freq + adj;
1395 }
1396
1397 return new_delay;
1398}
1399
Ben Widawsky4912d042011-04-25 11:25:20 -07001400static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001401{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001402 struct drm_i915_private *dev_priv =
1403 container_of(work, struct drm_i915_private, rps.work);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001404 u32 pm_iir;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001405 int new_delay, adj;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001406
Daniel Vetter59cdb632013-07-04 23:35:28 +02001407 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001408 pm_iir = dev_priv->rps.pm_iir;
1409 dev_priv->rps.pm_iir = 0;
Ben Widawsky09610212014-05-15 20:58:08 +03001410 if (IS_BROADWELL(dev_priv->dev))
1411 bdw_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
1412 else {
1413 /* Make sure not to corrupt PMIMR state used by ringbuffer */
1414 snb_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
1415 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001416 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001417
Paulo Zanoni60611c12013-08-15 11:50:01 -03001418 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301419 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001420
Deepak Sa6706b42014-03-15 20:23:22 +05301421 if ((pm_iir & dev_priv->pm_rps_events) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001422 return;
1423
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001424 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001425
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001426 adj = dev_priv->rps.last_adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001427 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001428 if (adj > 0)
1429 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301430 else {
1431 /* CHV needs even encode values */
1432 adj = IS_CHERRYVIEW(dev_priv->dev) ? 2 : 1;
1433 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001434 new_delay = dev_priv->rps.cur_freq + adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001435
1436 /*
1437 * For better performance, jump directly
1438 * to RPe if we're below it.
1439 */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001440 if (new_delay < dev_priv->rps.efficient_freq)
1441 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001442 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001443 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1444 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001445 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001446 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001447 adj = 0;
Deepak S31685c22014-07-03 17:33:01 -04001448 } else if (pm_iir & GEN6_PM_RP_UP_EI_EXPIRED) {
1449 new_delay = vlv_calc_delay_from_C0_counters(dev_priv);
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001450 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1451 if (adj < 0)
1452 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301453 else {
1454 /* CHV needs even encode values */
1455 adj = IS_CHERRYVIEW(dev_priv->dev) ? -2 : -1;
1456 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001457 new_delay = dev_priv->rps.cur_freq + adj;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001458 } else { /* unknown event */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001459 new_delay = dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001460 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001461
Ben Widawsky79249632012-09-07 19:43:42 -07001462 /* sysfs frequency interfaces may have snuck in while servicing the
1463 * interrupt
1464 */
Ville Syrjälä1272e7b2013-11-07 19:57:49 +02001465 new_delay = clamp_t(int, new_delay,
Ben Widawskyb39fb292014-03-19 18:31:11 -07001466 dev_priv->rps.min_freq_softlimit,
1467 dev_priv->rps.max_freq_softlimit);
Deepak S27544362014-01-27 21:35:05 +05301468
Ben Widawskyb39fb292014-03-19 18:31:11 -07001469 dev_priv->rps.last_adj = new_delay - dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001470
1471 if (IS_VALLEYVIEW(dev_priv->dev))
1472 valleyview_set_rps(dev_priv->dev, new_delay);
1473 else
1474 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001475
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001476 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001477}
1478
Ben Widawskye3689192012-05-25 16:56:22 -07001479
1480/**
1481 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1482 * occurred.
1483 * @work: workqueue struct
1484 *
1485 * Doesn't actually do anything except notify userspace. As a consequence of
1486 * this event, userspace should try to remap the bad rows since statistically
1487 * it is likely the same row is more likely to go bad again.
1488 */
1489static void ivybridge_parity_work(struct work_struct *work)
1490{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001491 struct drm_i915_private *dev_priv =
1492 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001493 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001494 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001495 uint32_t misccpctl;
1496 unsigned long flags;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001497 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001498
1499 /* We must turn off DOP level clock gating to access the L3 registers.
1500 * In order to prevent a get/put style interface, acquire struct mutex
1501 * any time we access those registers.
1502 */
1503 mutex_lock(&dev_priv->dev->struct_mutex);
1504
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001505 /* If we've screwed up tracking, just let the interrupt fire again */
1506 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1507 goto out;
1508
Ben Widawskye3689192012-05-25 16:56:22 -07001509 misccpctl = I915_READ(GEN7_MISCCPCTL);
1510 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1511 POSTING_READ(GEN7_MISCCPCTL);
1512
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001513 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
1514 u32 reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001515
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001516 slice--;
1517 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1518 break;
1519
1520 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1521
1522 reg = GEN7_L3CDERRST1 + (slice * 0x200);
1523
1524 error_status = I915_READ(reg);
1525 row = GEN7_PARITY_ERROR_ROW(error_status);
1526 bank = GEN7_PARITY_ERROR_BANK(error_status);
1527 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1528
1529 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1530 POSTING_READ(reg);
1531
1532 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1533 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1534 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1535 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1536 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1537 parity_event[5] = NULL;
1538
Dave Airlie5bdebb12013-10-11 14:07:25 +10001539 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001540 KOBJ_CHANGE, parity_event);
1541
1542 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1543 slice, row, bank, subbank);
1544
1545 kfree(parity_event[4]);
1546 kfree(parity_event[3]);
1547 kfree(parity_event[2]);
1548 kfree(parity_event[1]);
1549 }
Ben Widawskye3689192012-05-25 16:56:22 -07001550
1551 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1552
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001553out:
1554 WARN_ON(dev_priv->l3_parity.which_slice);
Ben Widawskye3689192012-05-25 16:56:22 -07001555 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001556 ilk_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
Ben Widawskye3689192012-05-25 16:56:22 -07001557 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1558
1559 mutex_unlock(&dev_priv->dev->struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001560}
1561
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001562static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001563{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001564 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3689192012-05-25 16:56:22 -07001565
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001566 if (!HAS_L3_DPF(dev))
Ben Widawskye3689192012-05-25 16:56:22 -07001567 return;
1568
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001569 spin_lock(&dev_priv->irq_lock);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001570 ilk_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001571 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001572
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001573 iir &= GT_PARITY_ERROR(dev);
1574 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1575 dev_priv->l3_parity.which_slice |= 1 << 1;
1576
1577 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1578 dev_priv->l3_parity.which_slice |= 1 << 0;
1579
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001580 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001581}
1582
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001583static void ilk_gt_irq_handler(struct drm_device *dev,
1584 struct drm_i915_private *dev_priv,
1585 u32 gt_iir)
1586{
1587 if (gt_iir &
1588 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
1589 notify_ring(dev, &dev_priv->ring[RCS]);
1590 if (gt_iir & ILK_BSD_USER_INTERRUPT)
1591 notify_ring(dev, &dev_priv->ring[VCS]);
1592}
1593
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001594static void snb_gt_irq_handler(struct drm_device *dev,
1595 struct drm_i915_private *dev_priv,
1596 u32 gt_iir)
1597{
1598
Ben Widawskycc609d52013-05-28 19:22:29 -07001599 if (gt_iir &
1600 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001601 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001602 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001603 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001604 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001605 notify_ring(dev, &dev_priv->ring[BCS]);
1606
Ben Widawskycc609d52013-05-28 19:22:29 -07001607 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1608 GT_BSD_CS_ERROR_INTERRUPT |
1609 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001610 i915_handle_error(dev, false, "GT error interrupt 0x%08x",
1611 gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001612 }
Ben Widawskye3689192012-05-25 16:56:22 -07001613
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001614 if (gt_iir & GT_PARITY_ERROR(dev))
1615 ivybridge_parity_error_irq_handler(dev, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001616}
1617
Ben Widawsky09610212014-05-15 20:58:08 +03001618static void gen8_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
1619{
1620 if ((pm_iir & dev_priv->pm_rps_events) == 0)
1621 return;
1622
1623 spin_lock(&dev_priv->irq_lock);
1624 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
1625 bdw_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
1626 spin_unlock(&dev_priv->irq_lock);
1627
1628 queue_work(dev_priv->wq, &dev_priv->rps.work);
1629}
1630
Ben Widawskyabd58f02013-11-02 21:07:09 -07001631static irqreturn_t gen8_gt_irq_handler(struct drm_device *dev,
1632 struct drm_i915_private *dev_priv,
1633 u32 master_ctl)
1634{
1635 u32 rcs, bcs, vcs;
1636 uint32_t tmp = 0;
1637 irqreturn_t ret = IRQ_NONE;
1638
1639 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
1640 tmp = I915_READ(GEN8_GT_IIR(0));
1641 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001642 I915_WRITE(GEN8_GT_IIR(0), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001643 ret = IRQ_HANDLED;
1644 rcs = tmp >> GEN8_RCS_IRQ_SHIFT;
1645 bcs = tmp >> GEN8_BCS_IRQ_SHIFT;
1646 if (rcs & GT_RENDER_USER_INTERRUPT)
1647 notify_ring(dev, &dev_priv->ring[RCS]);
1648 if (bcs & GT_RENDER_USER_INTERRUPT)
1649 notify_ring(dev, &dev_priv->ring[BCS]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001650 } else
1651 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1652 }
1653
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001654 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07001655 tmp = I915_READ(GEN8_GT_IIR(1));
1656 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001657 I915_WRITE(GEN8_GT_IIR(1), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001658 ret = IRQ_HANDLED;
1659 vcs = tmp >> GEN8_VCS1_IRQ_SHIFT;
1660 if (vcs & GT_RENDER_USER_INTERRUPT)
1661 notify_ring(dev, &dev_priv->ring[VCS]);
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001662 vcs = tmp >> GEN8_VCS2_IRQ_SHIFT;
1663 if (vcs & GT_RENDER_USER_INTERRUPT)
1664 notify_ring(dev, &dev_priv->ring[VCS2]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001665 } else
1666 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1667 }
1668
Ben Widawsky09610212014-05-15 20:58:08 +03001669 if (master_ctl & GEN8_GT_PM_IRQ) {
1670 tmp = I915_READ(GEN8_GT_IIR(2));
1671 if (tmp & dev_priv->pm_rps_events) {
Ben Widawsky09610212014-05-15 20:58:08 +03001672 I915_WRITE(GEN8_GT_IIR(2),
1673 tmp & dev_priv->pm_rps_events);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001674 ret = IRQ_HANDLED;
1675 gen8_rps_irq_handler(dev_priv, tmp);
Ben Widawsky09610212014-05-15 20:58:08 +03001676 } else
1677 DRM_ERROR("The master control interrupt lied (PM)!\n");
1678 }
1679
Ben Widawskyabd58f02013-11-02 21:07:09 -07001680 if (master_ctl & GEN8_GT_VECS_IRQ) {
1681 tmp = I915_READ(GEN8_GT_IIR(3));
1682 if (tmp) {
Oscar Mateo38cc46d2014-06-16 16:10:59 +01001683 I915_WRITE(GEN8_GT_IIR(3), tmp);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001684 ret = IRQ_HANDLED;
1685 vcs = tmp >> GEN8_VECS_IRQ_SHIFT;
1686 if (vcs & GT_RENDER_USER_INTERRUPT)
1687 notify_ring(dev, &dev_priv->ring[VECS]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001688 } else
1689 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1690 }
1691
1692 return ret;
1693}
1694
Egbert Eichb543fb02013-04-16 13:36:54 +02001695#define HPD_STORM_DETECT_PERIOD 1000
1696#define HPD_STORM_THRESHOLD 5
1697
Dave Airlie13cf5502014-06-18 11:29:35 +10001698static int ilk_port_to_hotplug_shift(enum port port)
1699{
1700 switch (port) {
1701 case PORT_A:
1702 case PORT_E:
1703 default:
1704 return -1;
1705 case PORT_B:
1706 return 0;
1707 case PORT_C:
1708 return 8;
1709 case PORT_D:
1710 return 16;
1711 }
1712}
1713
1714static int g4x_port_to_hotplug_shift(enum port port)
1715{
1716 switch (port) {
1717 case PORT_A:
1718 case PORT_E:
1719 default:
1720 return -1;
1721 case PORT_B:
1722 return 17;
1723 case PORT_C:
1724 return 19;
1725 case PORT_D:
1726 return 21;
1727 }
1728}
1729
1730static inline enum port get_port_from_pin(enum hpd_pin pin)
1731{
1732 switch (pin) {
1733 case HPD_PORT_B:
1734 return PORT_B;
1735 case HPD_PORT_C:
1736 return PORT_C;
1737 case HPD_PORT_D:
1738 return PORT_D;
1739 default:
1740 return PORT_A; /* no hpd */
1741 }
1742}
1743
Daniel Vetter10a504d2013-06-27 17:52:12 +02001744static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +02001745 u32 hotplug_trigger,
Dave Airlie13cf5502014-06-18 11:29:35 +10001746 u32 dig_hotplug_reg,
Daniel Vetter22062db2013-06-27 17:52:11 +02001747 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +02001748{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001749 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +02001750 int i;
Dave Airlie13cf5502014-06-18 11:29:35 +10001751 enum port port;
Daniel Vetter10a504d2013-06-27 17:52:12 +02001752 bool storm_detected = false;
Dave Airlie13cf5502014-06-18 11:29:35 +10001753 bool queue_dig = false, queue_hp = false;
1754 u32 dig_shift;
1755 u32 dig_port_mask = 0;
Egbert Eichb543fb02013-04-16 13:36:54 +02001756
Daniel Vetter91d131d2013-06-27 17:52:14 +02001757 if (!hotplug_trigger)
1758 return;
1759
Dave Airlie13cf5502014-06-18 11:29:35 +10001760 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x, dig 0x%08x\n",
1761 hotplug_trigger, dig_hotplug_reg);
Imre Deakcc9bd492014-01-16 19:56:54 +02001762
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001763 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +02001764 for (i = 1; i < HPD_NUM_PINS; i++) {
Dave Airlie13cf5502014-06-18 11:29:35 +10001765 if (!(hpd[i] & hotplug_trigger))
1766 continue;
Egbert Eich821450c2013-04-16 13:36:55 +02001767
Dave Airlie13cf5502014-06-18 11:29:35 +10001768 port = get_port_from_pin(i);
1769 if (port && dev_priv->hpd_irq_port[port]) {
1770 bool long_hpd;
1771
1772 if (IS_G4X(dev)) {
1773 dig_shift = g4x_port_to_hotplug_shift(port);
1774 long_hpd = (hotplug_trigger >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
1775 } else {
1776 dig_shift = ilk_port_to_hotplug_shift(port);
1777 long_hpd = (dig_hotplug_reg >> dig_shift) & PORTB_HOTPLUG_LONG_DETECT;
1778 }
1779
1780 DRM_DEBUG_DRIVER("digital hpd port %d %d\n", port, long_hpd);
1781 /* for long HPD pulses we want to have the digital queue happen,
1782 but we still want HPD storm detection to function. */
1783 if (long_hpd) {
1784 dev_priv->long_hpd_port_mask |= (1 << port);
1785 dig_port_mask |= hpd[i];
1786 } else {
1787 /* for short HPD just trigger the digital queue */
1788 dev_priv->short_hpd_port_mask |= (1 << port);
1789 hotplug_trigger &= ~hpd[i];
1790 }
1791 queue_dig = true;
1792 }
1793 }
1794
1795 for (i = 1; i < HPD_NUM_PINS; i++) {
Daniel Vetter3ff04a162014-04-24 12:03:17 +02001796 if (hpd[i] & hotplug_trigger &&
1797 dev_priv->hpd_stats[i].hpd_mark == HPD_DISABLED) {
1798 /*
1799 * On GMCH platforms the interrupt mask bits only
1800 * prevent irq generation, not the setting of the
1801 * hotplug bits itself. So only WARN about unexpected
1802 * interrupts on saner platforms.
1803 */
1804 WARN_ONCE(INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev),
1805 "Received HPD interrupt (0x%08x) on pin %d (0x%08x) although disabled\n",
1806 hotplug_trigger, i, hpd[i]);
1807
1808 continue;
1809 }
Egbert Eichb8f102e2013-07-26 14:14:24 +02001810
Egbert Eichb543fb02013-04-16 13:36:54 +02001811 if (!(hpd[i] & hotplug_trigger) ||
1812 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
1813 continue;
1814
Dave Airlie13cf5502014-06-18 11:29:35 +10001815 if (!(dig_port_mask & hpd[i])) {
1816 dev_priv->hpd_event_bits |= (1 << i);
1817 queue_hp = true;
1818 }
1819
Egbert Eichb543fb02013-04-16 13:36:54 +02001820 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
1821 dev_priv->hpd_stats[i].hpd_last_jiffies
1822 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
1823 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
1824 dev_priv->hpd_stats[i].hpd_cnt = 0;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001825 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001826 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
1827 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +02001828 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001829 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +02001830 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +02001831 } else {
1832 dev_priv->hpd_stats[i].hpd_cnt++;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001833 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", i,
1834 dev_priv->hpd_stats[i].hpd_cnt);
Egbert Eichb543fb02013-04-16 13:36:54 +02001835 }
1836 }
1837
Daniel Vetter10a504d2013-06-27 17:52:12 +02001838 if (storm_detected)
1839 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001840 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +02001841
Daniel Vetter645416f2013-09-02 16:22:25 +02001842 /*
1843 * Our hotplug handler can grab modeset locks (by calling down into the
1844 * fb helpers). Hence it must not be run on our own dev-priv->wq work
1845 * queue for otherwise the flush_work in the pageflip code will
1846 * deadlock.
1847 */
Dave Airlie13cf5502014-06-18 11:29:35 +10001848 if (queue_dig)
Dave Airlie0e32b392014-05-02 14:02:48 +10001849 queue_work(dev_priv->dp_wq, &dev_priv->dig_port_work);
Dave Airlie13cf5502014-06-18 11:29:35 +10001850 if (queue_hp)
1851 schedule_work(&dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001852}
1853
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001854static void gmbus_irq_handler(struct drm_device *dev)
1855{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001856 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter28c70f12012-12-01 13:53:45 +01001857
Daniel Vetter28c70f12012-12-01 13:53:45 +01001858 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001859}
1860
Daniel Vetterce99c252012-12-01 13:53:47 +01001861static void dp_aux_irq_handler(struct drm_device *dev)
1862{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001863 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001864
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001865 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001866}
1867
Shuang He8bf1e9f2013-10-15 18:55:27 +01001868#if defined(CONFIG_DEBUG_FS)
Daniel Vetter277de952013-10-18 16:37:07 +02001869static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1870 uint32_t crc0, uint32_t crc1,
1871 uint32_t crc2, uint32_t crc3,
1872 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001873{
1874 struct drm_i915_private *dev_priv = dev->dev_private;
1875 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1876 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001877 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001878
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001879 spin_lock(&pipe_crc->lock);
1880
Damien Lespiau0c912c72013-10-15 18:55:37 +01001881 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001882 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001883 DRM_ERROR("spurious interrupt\n");
1884 return;
1885 }
1886
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001887 head = pipe_crc->head;
1888 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001889
1890 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001891 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001892 DRM_ERROR("CRC buffer overflowing\n");
1893 return;
1894 }
1895
1896 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001897
Daniel Vetter8bc5e952013-10-16 22:55:49 +02001898 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001899 entry->crc[0] = crc0;
1900 entry->crc[1] = crc1;
1901 entry->crc[2] = crc2;
1902 entry->crc[3] = crc3;
1903 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001904
1905 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001906 pipe_crc->head = head;
1907
1908 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001909
1910 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001911}
Daniel Vetter277de952013-10-18 16:37:07 +02001912#else
1913static inline void
1914display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1915 uint32_t crc0, uint32_t crc1,
1916 uint32_t crc2, uint32_t crc3,
1917 uint32_t crc4) {}
1918#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001919
Daniel Vetter277de952013-10-18 16:37:07 +02001920
1921static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001922{
1923 struct drm_i915_private *dev_priv = dev->dev_private;
1924
Daniel Vetter277de952013-10-18 16:37:07 +02001925 display_pipe_crc_irq_handler(dev, pipe,
1926 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1927 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001928}
1929
Daniel Vetter277de952013-10-18 16:37:07 +02001930static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001931{
1932 struct drm_i915_private *dev_priv = dev->dev_private;
1933
Daniel Vetter277de952013-10-18 16:37:07 +02001934 display_pipe_crc_irq_handler(dev, pipe,
1935 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1936 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1937 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1938 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1939 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001940}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001941
Daniel Vetter277de952013-10-18 16:37:07 +02001942static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001943{
1944 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001945 uint32_t res1, res2;
1946
1947 if (INTEL_INFO(dev)->gen >= 3)
1948 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1949 else
1950 res1 = 0;
1951
1952 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1953 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1954 else
1955 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001956
Daniel Vetter277de952013-10-18 16:37:07 +02001957 display_pipe_crc_irq_handler(dev, pipe,
1958 I915_READ(PIPE_CRC_RES_RED(pipe)),
1959 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1960 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1961 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001962}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001963
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001964/* The RPS events need forcewake, so we add them to a work queue and mask their
1965 * IMR bits until the work is done. Other interrupts can be processed without
1966 * the work queue. */
1967static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001968{
Deepak Sa6706b42014-03-15 20:23:22 +05301969 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001970 spin_lock(&dev_priv->irq_lock);
Deepak Sa6706b42014-03-15 20:23:22 +05301971 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
1972 snb_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Daniel Vetter59cdb632013-07-04 23:35:28 +02001973 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter2adbee62013-07-04 23:35:27 +02001974
1975 queue_work(dev_priv->wq, &dev_priv->rps.work);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001976 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001977
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001978 if (HAS_VEBOX(dev_priv->dev)) {
1979 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
1980 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001981
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001982 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001983 i915_handle_error(dev_priv->dev, false,
1984 "VEBOX CS error interrupt 0x%08x",
1985 pm_iir);
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001986 }
Ben Widawsky12638c52013-05-28 19:22:31 -07001987 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001988}
1989
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001990static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
1991{
1992 struct intel_crtc *crtc;
1993
1994 if (!drm_handle_vblank(dev, pipe))
1995 return false;
1996
1997 crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
1998 wake_up(&crtc->vbl_wait);
1999
2000 return true;
2001}
2002
Imre Deakc1874ed2014-02-04 21:35:46 +02002003static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
2004{
2005 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak91d181d2014-02-10 18:42:49 +02002006 u32 pipe_stats[I915_MAX_PIPES] = { };
Imre Deakc1874ed2014-02-04 21:35:46 +02002007 int pipe;
2008
Imre Deak58ead0d2014-02-04 21:35:47 +02002009 spin_lock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02002010 for_each_pipe(pipe) {
Imre Deak91d181d2014-02-10 18:42:49 +02002011 int reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002012 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02002013
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002014 /*
2015 * PIPESTAT bits get signalled even when the interrupt is
2016 * disabled with the mask bits, and some of the status bits do
2017 * not generate interrupts at all (like the underrun bit). Hence
2018 * we need to be careful that we only handle what we want to
2019 * handle.
2020 */
2021 mask = 0;
2022 if (__cpu_fifo_underrun_reporting_enabled(dev, pipe))
2023 mask |= PIPE_FIFO_UNDERRUN_STATUS;
2024
2025 switch (pipe) {
2026 case PIPE_A:
2027 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
2028 break;
2029 case PIPE_B:
2030 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
2031 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03002032 case PIPE_C:
2033 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
2034 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002035 }
2036 if (iir & iir_bit)
2037 mask |= dev_priv->pipestat_irq_mask[pipe];
2038
2039 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02002040 continue;
2041
2042 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01002043 mask |= PIPESTAT_INT_ENABLE_MASK;
2044 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02002045
2046 /*
2047 * Clear the PIPE*STAT regs before the IIR
2048 */
Imre Deak91d181d2014-02-10 18:42:49 +02002049 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
2050 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02002051 I915_WRITE(reg, pipe_stats[pipe]);
2052 }
Imre Deak58ead0d2014-02-04 21:35:47 +02002053 spin_unlock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02002054
2055 for_each_pipe(pipe) {
2056 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002057 intel_pipe_handle_vblank(dev, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02002058
Imre Deak579a9b02014-02-04 21:35:48 +02002059 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
Imre Deakc1874ed2014-02-04 21:35:46 +02002060 intel_prepare_page_flip(dev, pipe);
2061 intel_finish_page_flip(dev, pipe);
2062 }
2063
2064 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
2065 i9xx_pipe_crc_irq_handler(dev, pipe);
2066
2067 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
2068 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
2069 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
2070 }
2071
2072 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
2073 gmbus_irq_handler(dev);
2074}
2075
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002076static void i9xx_hpd_irq_handler(struct drm_device *dev)
2077{
2078 struct drm_i915_private *dev_priv = dev->dev_private;
2079 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
2080
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002081 if (hotplug_status) {
2082 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
2083 /*
2084 * Make sure hotplug status is cleared before we clear IIR, or else we
2085 * may miss hotplug events.
2086 */
2087 POSTING_READ(PORT_HOTPLUG_STAT);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002088
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002089 if (IS_G4X(dev)) {
2090 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002091
Dave Airlie13cf5502014-06-18 11:29:35 +10002092 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_g4x);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002093 } else {
2094 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
2095
Dave Airlie13cf5502014-06-18 11:29:35 +10002096 intel_hpd_irq_handler(dev, hotplug_trigger, 0, hpd_status_i915);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002097 }
2098
2099 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) &&
2100 hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
2101 dp_aux_irq_handler(dev);
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002102 }
Ville Syrjälä16c6c562014-04-01 10:54:36 +03002103}
2104
Daniel Vetterff1f5252012-10-02 15:10:55 +02002105static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002106{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002107 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002108 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002109 u32 iir, gt_iir, pm_iir;
2110 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002111
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002112 while (true) {
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002113 /* Find, clear, then process each source of interrupt */
2114
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002115 gt_iir = I915_READ(GTIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002116 if (gt_iir)
2117 I915_WRITE(GTIIR, gt_iir);
2118
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002119 pm_iir = I915_READ(GEN6_PMIIR);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002120 if (pm_iir)
2121 I915_WRITE(GEN6_PMIIR, pm_iir);
2122
2123 iir = I915_READ(VLV_IIR);
2124 if (iir) {
2125 /* Consume port before clearing IIR or we'll miss events */
2126 if (iir & I915_DISPLAY_PORT_INTERRUPT)
2127 i9xx_hpd_irq_handler(dev);
2128 I915_WRITE(VLV_IIR, iir);
2129 }
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002130
2131 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
2132 goto out;
2133
2134 ret = IRQ_HANDLED;
2135
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002136 if (gt_iir)
2137 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanoni60611c12013-08-15 11:50:01 -03002138 if (pm_iir)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02002139 gen6_rps_irq_handler(dev_priv, pm_iir);
Oscar Mateo3ff60f82014-06-16 16:10:58 +01002140 /* Call regardless, as some status bits might not be
2141 * signalled in iir */
2142 valleyview_pipestat_irq_handler(dev, iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002143 }
2144
2145out:
2146 return ret;
2147}
2148
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002149static irqreturn_t cherryview_irq_handler(int irq, void *arg)
2150{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002151 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002152 struct drm_i915_private *dev_priv = dev->dev_private;
2153 u32 master_ctl, iir;
2154 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002155
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002156 for (;;) {
2157 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
2158 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03002159
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002160 if (master_ctl == 0 && iir == 0)
2161 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002162
Oscar Mateo27b6c122014-06-16 16:11:00 +01002163 ret = IRQ_HANDLED;
2164
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002165 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002166
Oscar Mateo27b6c122014-06-16 16:11:00 +01002167 /* Find, clear, then process each source of interrupt */
2168
2169 if (iir) {
2170 /* Consume port before clearing IIR or we'll miss events */
2171 if (iir & I915_DISPLAY_PORT_INTERRUPT)
2172 i9xx_hpd_irq_handler(dev);
2173 I915_WRITE(VLV_IIR, iir);
2174 }
2175
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002176 gen8_gt_irq_handler(dev, dev_priv, master_ctl);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002177
Oscar Mateo27b6c122014-06-16 16:11:00 +01002178 /* Call regardless, as some status bits might not be
2179 * signalled in iir */
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002180 valleyview_pipestat_irq_handler(dev, iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002181
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03002182 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
2183 POSTING_READ(GEN8_MASTER_IRQ);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002184 }
2185
Ville Syrjälä43f328d2014-04-09 20:40:52 +03002186 return ret;
2187}
2188
Adam Jackson23e81d62012-06-06 15:45:44 -04002189static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08002190{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002191 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002192 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002193 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Dave Airlie13cf5502014-06-18 11:29:35 +10002194 u32 dig_hotplug_reg;
Jesse Barnes776ad802011-01-04 15:09:39 -08002195
Dave Airlie13cf5502014-06-18 11:29:35 +10002196 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2197 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2198
2199 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_ibx);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002200
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002201 if (pch_iir & SDE_AUDIO_POWER_MASK) {
2202 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
2203 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08002204 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002205 port_name(port));
2206 }
Jesse Barnes776ad802011-01-04 15:09:39 -08002207
Daniel Vetterce99c252012-12-01 13:53:47 +01002208 if (pch_iir & SDE_AUX_MASK)
2209 dp_aux_irq_handler(dev);
2210
Jesse Barnes776ad802011-01-04 15:09:39 -08002211 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002212 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08002213
2214 if (pch_iir & SDE_AUDIO_HDCP_MASK)
2215 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
2216
2217 if (pch_iir & SDE_AUDIO_TRANS_MASK)
2218 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
2219
2220 if (pch_iir & SDE_POISON)
2221 DRM_ERROR("PCH poison interrupt\n");
2222
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002223 if (pch_iir & SDE_FDI_MASK)
2224 for_each_pipe(pipe)
2225 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2226 pipe_name(pipe),
2227 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08002228
2229 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
2230 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
2231
2232 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
2233 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
2234
Jesse Barnes776ad802011-01-04 15:09:39 -08002235 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03002236 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
2237 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002238 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002239
2240 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
2241 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
2242 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002243 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002244}
2245
2246static void ivb_err_int_handler(struct drm_device *dev)
2247{
2248 struct drm_i915_private *dev_priv = dev->dev_private;
2249 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002250 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03002251
Paulo Zanonide032bf2013-04-12 17:57:58 -03002252 if (err_int & ERR_INT_POISON)
2253 DRM_ERROR("Poison interrupt\n");
2254
Daniel Vetter5a69b892013-10-16 22:55:52 +02002255 for_each_pipe(pipe) {
2256 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe)) {
2257 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
2258 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002259 DRM_ERROR("Pipe %c FIFO underrun\n",
2260 pipe_name(pipe));
Daniel Vetter5a69b892013-10-16 22:55:52 +02002261 }
Paulo Zanoni86642812013-04-12 17:57:57 -03002262
Daniel Vetter5a69b892013-10-16 22:55:52 +02002263 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
2264 if (IS_IVYBRIDGE(dev))
Daniel Vetter277de952013-10-18 16:37:07 +02002265 ivb_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002266 else
Daniel Vetter277de952013-10-18 16:37:07 +02002267 hsw_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02002268 }
2269 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01002270
Paulo Zanoni86642812013-04-12 17:57:57 -03002271 I915_WRITE(GEN7_ERR_INT, err_int);
2272}
2273
2274static void cpt_serr_int_handler(struct drm_device *dev)
2275{
2276 struct drm_i915_private *dev_priv = dev->dev_private;
2277 u32 serr_int = I915_READ(SERR_INT);
2278
Paulo Zanonide032bf2013-04-12 17:57:58 -03002279 if (serr_int & SERR_INT_POISON)
2280 DRM_ERROR("PCH poison interrupt\n");
2281
Paulo Zanoni86642812013-04-12 17:57:57 -03002282 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
2283 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
2284 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002285 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002286
2287 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
2288 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
2289 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002290 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002291
2292 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
2293 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
2294 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002295 DRM_ERROR("PCH transcoder C FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002296
2297 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002298}
2299
Adam Jackson23e81d62012-06-06 15:45:44 -04002300static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
2301{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002302 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson23e81d62012-06-06 15:45:44 -04002303 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002304 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Dave Airlie13cf5502014-06-18 11:29:35 +10002305 u32 dig_hotplug_reg;
Adam Jackson23e81d62012-06-06 15:45:44 -04002306
Dave Airlie13cf5502014-06-18 11:29:35 +10002307 dig_hotplug_reg = I915_READ(PCH_PORT_HOTPLUG);
2308 I915_WRITE(PCH_PORT_HOTPLUG, dig_hotplug_reg);
2309
2310 intel_hpd_irq_handler(dev, hotplug_trigger, dig_hotplug_reg, hpd_cpt);
Daniel Vetter91d131d2013-06-27 17:52:14 +02002311
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002312 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2313 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2314 SDE_AUDIO_POWER_SHIFT_CPT);
2315 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2316 port_name(port));
2317 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002318
2319 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01002320 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002321
2322 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002323 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002324
2325 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2326 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2327
2328 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2329 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2330
2331 if (pch_iir & SDE_FDI_MASK_CPT)
2332 for_each_pipe(pipe)
2333 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2334 pipe_name(pipe),
2335 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002336
2337 if (pch_iir & SDE_ERROR_CPT)
2338 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002339}
2340
Paulo Zanonic008bc62013-07-12 16:35:10 -03002341static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2342{
2343 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter40da17c2013-10-21 18:04:36 +02002344 enum pipe pipe;
Paulo Zanonic008bc62013-07-12 16:35:10 -03002345
2346 if (de_iir & DE_AUX_CHANNEL_A)
2347 dp_aux_irq_handler(dev);
2348
2349 if (de_iir & DE_GSE)
2350 intel_opregion_asle_intr(dev);
2351
Paulo Zanonic008bc62013-07-12 16:35:10 -03002352 if (de_iir & DE_POISON)
2353 DRM_ERROR("Poison interrupt\n");
2354
Daniel Vetter40da17c2013-10-21 18:04:36 +02002355 for_each_pipe(pipe) {
2356 if (de_iir & DE_PIPE_VBLANK(pipe))
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002357 intel_pipe_handle_vblank(dev, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002358
Daniel Vetter40da17c2013-10-21 18:04:36 +02002359 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
2360 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002361 DRM_ERROR("Pipe %c FIFO underrun\n",
2362 pipe_name(pipe));
Paulo Zanonic008bc62013-07-12 16:35:10 -03002363
Daniel Vetter40da17c2013-10-21 18:04:36 +02002364 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2365 i9xx_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002366
Daniel Vetter40da17c2013-10-21 18:04:36 +02002367 /* plane/pipes map 1:1 on ilk+ */
2368 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2369 intel_prepare_page_flip(dev, pipe);
2370 intel_finish_page_flip_plane(dev, pipe);
2371 }
Paulo Zanonic008bc62013-07-12 16:35:10 -03002372 }
2373
2374 /* check event from PCH */
2375 if (de_iir & DE_PCH_EVENT) {
2376 u32 pch_iir = I915_READ(SDEIIR);
2377
2378 if (HAS_PCH_CPT(dev))
2379 cpt_irq_handler(dev, pch_iir);
2380 else
2381 ibx_irq_handler(dev, pch_iir);
2382
2383 /* should clear PCH hotplug event before clear CPU irq */
2384 I915_WRITE(SDEIIR, pch_iir);
2385 }
2386
2387 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2388 ironlake_rps_change_irq_handler(dev);
2389}
2390
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002391static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2392{
2393 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00002394 enum pipe pipe;
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002395
2396 if (de_iir & DE_ERR_INT_IVB)
2397 ivb_err_int_handler(dev);
2398
2399 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2400 dp_aux_irq_handler(dev);
2401
2402 if (de_iir & DE_GSE_IVB)
2403 intel_opregion_asle_intr(dev);
2404
Damien Lespiau07d27e22014-03-03 17:31:46 +00002405 for_each_pipe(pipe) {
2406 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)))
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002407 intel_pipe_handle_vblank(dev, pipe);
Daniel Vetter40da17c2013-10-21 18:04:36 +02002408
2409 /* plane/pipes map 1:1 on ilk+ */
Damien Lespiau07d27e22014-03-03 17:31:46 +00002410 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2411 intel_prepare_page_flip(dev, pipe);
2412 intel_finish_page_flip_plane(dev, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002413 }
2414 }
2415
2416 /* check event from PCH */
2417 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2418 u32 pch_iir = I915_READ(SDEIIR);
2419
2420 cpt_irq_handler(dev, pch_iir);
2421
2422 /* clear PCH hotplug event before clear CPU irq */
2423 I915_WRITE(SDEIIR, pch_iir);
2424 }
2425}
2426
Oscar Mateo72c90f62014-06-16 16:10:57 +01002427/*
2428 * To handle irqs with the minimum potential races with fresh interrupts, we:
2429 * 1 - Disable Master Interrupt Control.
2430 * 2 - Find the source(s) of the interrupt.
2431 * 3 - Clear the Interrupt Identity bits (IIR).
2432 * 4 - Process the interrupt(s) that had bits set in the IIRs.
2433 * 5 - Re-enable Master Interrupt Control.
2434 */
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002435static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002436{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002437 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002438 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002439 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002440 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002441
Paulo Zanoni86642812013-04-12 17:57:57 -03002442 /* We get interrupts on unclaimed registers, so check for this before we
2443 * do any I915_{READ,WRITE}. */
Chris Wilson907b28c2013-07-19 20:36:52 +01002444 intel_uncore_check_errors(dev);
Paulo Zanoni86642812013-04-12 17:57:57 -03002445
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002446 /* disable master interrupt before clearing iir */
2447 de_ier = I915_READ(DEIER);
2448 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002449 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002450
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002451 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2452 * interrupts will will be stored on its back queue, and then we'll be
2453 * able to process them after we restore SDEIER (as soon as we restore
2454 * it, we'll get an interrupt if SDEIIR still has something to process
2455 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07002456 if (!HAS_PCH_NOP(dev)) {
2457 sde_ier = I915_READ(SDEIER);
2458 I915_WRITE(SDEIER, 0);
2459 POSTING_READ(SDEIER);
2460 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002461
Oscar Mateo72c90f62014-06-16 16:10:57 +01002462 /* Find, clear, then process each source of interrupt */
2463
Chris Wilson0e434062012-05-09 21:45:44 +01002464 gt_iir = I915_READ(GTIIR);
2465 if (gt_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002466 I915_WRITE(GTIIR, gt_iir);
2467 ret = IRQ_HANDLED;
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002468 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002469 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002470 else
2471 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002472 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002473
2474 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002475 if (de_iir) {
Oscar Mateo72c90f62014-06-16 16:10:57 +01002476 I915_WRITE(DEIIR, de_iir);
2477 ret = IRQ_HANDLED;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002478 if (INTEL_INFO(dev)->gen >= 7)
2479 ivb_display_irq_handler(dev, de_iir);
2480 else
2481 ilk_display_irq_handler(dev, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002482 }
2483
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002484 if (INTEL_INFO(dev)->gen >= 6) {
2485 u32 pm_iir = I915_READ(GEN6_PMIIR);
2486 if (pm_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002487 I915_WRITE(GEN6_PMIIR, pm_iir);
2488 ret = IRQ_HANDLED;
Oscar Mateo72c90f62014-06-16 16:10:57 +01002489 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002490 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002491 }
2492
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002493 I915_WRITE(DEIER, de_ier);
2494 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07002495 if (!HAS_PCH_NOP(dev)) {
2496 I915_WRITE(SDEIER, sde_ier);
2497 POSTING_READ(SDEIER);
2498 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002499
2500 return ret;
2501}
2502
Ben Widawskyabd58f02013-11-02 21:07:09 -07002503static irqreturn_t gen8_irq_handler(int irq, void *arg)
2504{
2505 struct drm_device *dev = arg;
2506 struct drm_i915_private *dev_priv = dev->dev_private;
2507 u32 master_ctl;
2508 irqreturn_t ret = IRQ_NONE;
2509 uint32_t tmp = 0;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002510 enum pipe pipe;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002511
Ben Widawskyabd58f02013-11-02 21:07:09 -07002512 master_ctl = I915_READ(GEN8_MASTER_IRQ);
2513 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2514 if (!master_ctl)
2515 return IRQ_NONE;
2516
2517 I915_WRITE(GEN8_MASTER_IRQ, 0);
2518 POSTING_READ(GEN8_MASTER_IRQ);
2519
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002520 /* Find, clear, then process each source of interrupt */
2521
Ben Widawskyabd58f02013-11-02 21:07:09 -07002522 ret = gen8_gt_irq_handler(dev, dev_priv, master_ctl);
2523
2524 if (master_ctl & GEN8_DE_MISC_IRQ) {
2525 tmp = I915_READ(GEN8_DE_MISC_IIR);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002526 if (tmp) {
2527 I915_WRITE(GEN8_DE_MISC_IIR, tmp);
2528 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002529 if (tmp & GEN8_DE_MISC_GSE)
2530 intel_opregion_asle_intr(dev);
2531 else
2532 DRM_ERROR("Unexpected DE Misc interrupt\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002533 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002534 else
2535 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
Ben Widawskyabd58f02013-11-02 21:07:09 -07002536 }
2537
Daniel Vetter6d766f02013-11-07 14:49:55 +01002538 if (master_ctl & GEN8_DE_PORT_IRQ) {
2539 tmp = I915_READ(GEN8_DE_PORT_IIR);
Daniel Vetter6d766f02013-11-07 14:49:55 +01002540 if (tmp) {
2541 I915_WRITE(GEN8_DE_PORT_IIR, tmp);
2542 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002543 if (tmp & GEN8_AUX_CHANNEL_A)
2544 dp_aux_irq_handler(dev);
2545 else
2546 DRM_ERROR("Unexpected DE Port interrupt\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002547 }
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002548 else
2549 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
Daniel Vetter6d766f02013-11-07 14:49:55 +01002550 }
2551
Daniel Vetterc42664c2013-11-07 11:05:40 +01002552 for_each_pipe(pipe) {
2553 uint32_t pipe_iir;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002554
Daniel Vetterc42664c2013-11-07 11:05:40 +01002555 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2556 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002557
Daniel Vetterc42664c2013-11-07 11:05:40 +01002558 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
Daniel Vetterc42664c2013-11-07 11:05:40 +01002559 if (pipe_iir) {
2560 ret = IRQ_HANDLED;
2561 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002562 if (pipe_iir & GEN8_PIPE_VBLANK)
2563 intel_pipe_handle_vblank(dev, pipe);
2564
2565 if (pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE) {
2566 intel_prepare_page_flip(dev, pipe);
2567 intel_finish_page_flip_plane(dev, pipe);
2568 }
2569
2570 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2571 hsw_pipe_crc_irq_handler(dev, pipe);
2572
2573 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN) {
2574 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
2575 false))
2576 DRM_ERROR("Pipe %c FIFO underrun\n",
2577 pipe_name(pipe));
2578 }
2579
2580 if (pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS) {
2581 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2582 pipe_name(pipe),
2583 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
2584 }
Daniel Vetterc42664c2013-11-07 11:05:40 +01002585 } else
Ben Widawskyabd58f02013-11-02 21:07:09 -07002586 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2587 }
2588
Daniel Vetter92d03a82013-11-07 11:05:43 +01002589 if (!HAS_PCH_NOP(dev) && master_ctl & GEN8_DE_PCH_IRQ) {
2590 /*
2591 * FIXME(BDW): Assume for now that the new interrupt handling
2592 * scheme also closed the SDE interrupt handling race we've seen
2593 * on older pch-split platforms. But this needs testing.
2594 */
2595 u32 pch_iir = I915_READ(SDEIIR);
Daniel Vetter92d03a82013-11-07 11:05:43 +01002596 if (pch_iir) {
2597 I915_WRITE(SDEIIR, pch_iir);
2598 ret = IRQ_HANDLED;
Oscar Mateo38cc46d2014-06-16 16:10:59 +01002599 cpt_irq_handler(dev, pch_iir);
2600 } else
2601 DRM_ERROR("The master control interrupt lied (SDE)!\n");
2602
Daniel Vetter92d03a82013-11-07 11:05:43 +01002603 }
2604
Ben Widawskyabd58f02013-11-02 21:07:09 -07002605 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2606 POSTING_READ(GEN8_MASTER_IRQ);
2607
2608 return ret;
2609}
2610
Daniel Vetter17e1df02013-09-08 21:57:13 +02002611static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2612 bool reset_completed)
2613{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002614 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002615 int i;
2616
2617 /*
2618 * Notify all waiters for GPU completion events that reset state has
2619 * been changed, and that they need to restart their wait after
2620 * checking for potential errors (and bail out to drop locks if there is
2621 * a gpu reset pending so that i915_error_work_func can acquire them).
2622 */
2623
2624 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2625 for_each_ring(ring, dev_priv, i)
2626 wake_up_all(&ring->irq_queue);
2627
2628 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2629 wake_up_all(&dev_priv->pending_flip_queue);
2630
2631 /*
2632 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2633 * reset state is cleared.
2634 */
2635 if (reset_completed)
2636 wake_up_all(&dev_priv->gpu_error.reset_queue);
2637}
2638
Jesse Barnes8a905232009-07-11 16:48:03 -04002639/**
2640 * i915_error_work_func - do process context error handling work
2641 * @work: work struct
2642 *
2643 * Fire an error uevent so userspace can see that a hang or error
2644 * was detected.
2645 */
2646static void i915_error_work_func(struct work_struct *work)
2647{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002648 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
2649 work);
Jani Nikula2d1013d2014-03-31 14:27:17 +03002650 struct drm_i915_private *dev_priv =
2651 container_of(error, struct drm_i915_private, gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04002652 struct drm_device *dev = dev_priv->dev;
Ben Widawskycce723e2013-07-19 09:16:42 -07002653 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2654 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2655 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002656 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002657
Dave Airlie5bdebb12013-10-11 14:07:25 +10002658 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002659
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002660 /*
2661 * Note that there's only one work item which does gpu resets, so we
2662 * need not worry about concurrent gpu resets potentially incrementing
2663 * error->reset_counter twice. We only need to take care of another
2664 * racing irq/hangcheck declaring the gpu dead for a second time. A
2665 * quick check for that is good enough: schedule_work ensures the
2666 * correct ordering between hang detection and this work item, and since
2667 * the reset in-progress bit is only ever set by code outside of this
2668 * work we don't need to worry about any other races.
2669 */
2670 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002671 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002672 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002673 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002674
Daniel Vetter17e1df02013-09-08 21:57:13 +02002675 /*
Imre Deakf454c692014-04-23 01:09:04 +03002676 * In most cases it's guaranteed that we get here with an RPM
2677 * reference held, for example because there is a pending GPU
2678 * request that won't finish until the reset is done. This
2679 * isn't the case at least when we get here by doing a
2680 * simulated reset via debugs, so get an RPM reference.
2681 */
2682 intel_runtime_pm_get(dev_priv);
2683 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002684 * All state reset _must_ be completed before we update the
2685 * reset counter, for otherwise waiters might miss the reset
2686 * pending state and not properly drop locks, resulting in
2687 * deadlocks with the reset work.
2688 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002689 ret = i915_reset(dev);
2690
Daniel Vetter17e1df02013-09-08 21:57:13 +02002691 intel_display_handle_reset(dev);
2692
Imre Deakf454c692014-04-23 01:09:04 +03002693 intel_runtime_pm_put(dev_priv);
2694
Daniel Vetterf69061b2012-12-06 09:01:42 +01002695 if (ret == 0) {
2696 /*
2697 * After all the gem state is reset, increment the reset
2698 * counter and wake up everyone waiting for the reset to
2699 * complete.
2700 *
2701 * Since unlock operations are a one-sided barrier only,
2702 * we need to insert a barrier here to order any seqno
2703 * updates before
2704 * the counter increment.
2705 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01002706 smp_mb__before_atomic();
Daniel Vetterf69061b2012-12-06 09:01:42 +01002707 atomic_inc(&dev_priv->gpu_error.reset_counter);
2708
Dave Airlie5bdebb12013-10-11 14:07:25 +10002709 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002710 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002711 } else {
Mika Kuoppala2ac0f452013-11-12 14:44:19 +02002712 atomic_set_mask(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002713 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002714
Daniel Vetter17e1df02013-09-08 21:57:13 +02002715 /*
2716 * Note: The wake_up also serves as a memory barrier so that
2717 * waiters see the update value of the reset counter atomic_t.
2718 */
2719 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002720 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002721}
2722
Chris Wilson35aed2e2010-05-27 13:18:12 +01002723static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002724{
2725 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002726 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002727 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002728 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002729
Chris Wilson35aed2e2010-05-27 13:18:12 +01002730 if (!eir)
2731 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002732
Joe Perchesa70491c2012-03-18 13:00:11 -07002733 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002734
Ben Widawskybd9854f2012-08-23 15:18:09 -07002735 i915_get_extra_instdone(dev, instdone);
2736
Jesse Barnes8a905232009-07-11 16:48:03 -04002737 if (IS_G4X(dev)) {
2738 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2739 u32 ipeir = I915_READ(IPEIR_I965);
2740
Joe Perchesa70491c2012-03-18 13:00:11 -07002741 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2742 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002743 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2744 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002745 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002746 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002747 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002748 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002749 }
2750 if (eir & GM45_ERROR_PAGE_TABLE) {
2751 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002752 pr_err("page table error\n");
2753 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002754 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002755 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002756 }
2757 }
2758
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002759 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002760 if (eir & I915_ERROR_PAGE_TABLE) {
2761 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002762 pr_err("page table error\n");
2763 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002764 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002765 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002766 }
2767 }
2768
2769 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002770 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002771 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002772 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002773 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002774 /* pipestat has already been acked */
2775 }
2776 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002777 pr_err("instruction error\n");
2778 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002779 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2780 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002781 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002782 u32 ipeir = I915_READ(IPEIR);
2783
Joe Perchesa70491c2012-03-18 13:00:11 -07002784 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2785 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002786 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002787 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002788 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002789 } else {
2790 u32 ipeir = I915_READ(IPEIR_I965);
2791
Joe Perchesa70491c2012-03-18 13:00:11 -07002792 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2793 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002794 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002795 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002796 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002797 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002798 }
2799 }
2800
2801 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002802 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002803 eir = I915_READ(EIR);
2804 if (eir) {
2805 /*
2806 * some errors might have become stuck,
2807 * mask them.
2808 */
2809 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2810 I915_WRITE(EMR, I915_READ(EMR) | eir);
2811 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2812 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002813}
2814
2815/**
2816 * i915_handle_error - handle an error interrupt
2817 * @dev: drm device
2818 *
2819 * Do some basic checking of regsiter state at error interrupt time and
2820 * dump it to the syslog. Also call i915_capture_error_state() to make
2821 * sure we get a record and make it available in debugfs. Fire a uevent
2822 * so userspace knows something bad happened (should trigger collection
2823 * of a ring dump etc.).
2824 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002825void i915_handle_error(struct drm_device *dev, bool wedged,
2826 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002827{
2828 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002829 va_list args;
2830 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002831
Mika Kuoppala58174462014-02-25 17:11:26 +02002832 va_start(args, fmt);
2833 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2834 va_end(args);
2835
2836 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002837 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002838
Ben Gamariba1234d2009-09-14 17:48:47 -04002839 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002840 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2841 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002842
Ben Gamari11ed50e2009-09-14 17:48:45 -04002843 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002844 * Wakeup waiting processes so that the reset work function
2845 * i915_error_work_func doesn't deadlock trying to grab various
2846 * locks. By bumping the reset counter first, the woken
2847 * processes will see a reset in progress and back off,
2848 * releasing their locks and then wait for the reset completion.
2849 * We must do this for _all_ gpu waiters that might hold locks
2850 * that the reset work needs to acquire.
2851 *
2852 * Note: The wake_up serves as the required memory barrier to
2853 * ensure that the waiters see the updated value of the reset
2854 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002855 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002856 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002857 }
2858
Daniel Vetter122f46b2013-09-04 17:36:14 +02002859 /*
2860 * Our reset work can grab modeset locks (since it needs to reset the
2861 * state of outstanding pagelips). Hence it must not be run on our own
2862 * dev-priv->wq work queue for otherwise the flush_work in the pageflip
2863 * code will deadlock.
2864 */
2865 schedule_work(&dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002866}
2867
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002868static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002869{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002870 struct drm_i915_private *dev_priv = dev->dev_private;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002871 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2872 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002873 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002874 struct intel_unpin_work *work;
2875 unsigned long flags;
2876 bool stall_detected;
2877
2878 /* Ignore early vblank irqs */
2879 if (intel_crtc == NULL)
2880 return;
2881
2882 spin_lock_irqsave(&dev->event_lock, flags);
2883 work = intel_crtc->unpin_work;
2884
Chris Wilsone7d841c2012-12-03 11:36:30 +00002885 if (work == NULL ||
2886 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2887 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002888 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2889 spin_unlock_irqrestore(&dev->event_lock, flags);
2890 return;
2891 }
2892
2893 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002894 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002895 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002896 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002897 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002898 i915_gem_obj_ggtt_offset(obj);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002899 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002900 int dspaddr = DSPADDR(intel_crtc->plane);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002901 stall_detected = I915_READ(dspaddr) == (i915_gem_obj_ggtt_offset(obj) +
Matt Roperf4510a22014-04-01 15:22:40 -07002902 crtc->y * crtc->primary->fb->pitches[0] +
2903 crtc->x * crtc->primary->fb->bits_per_pixel/8);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002904 }
2905
2906 spin_unlock_irqrestore(&dev->event_lock, flags);
2907
2908 if (stall_detected) {
2909 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2910 intel_prepare_page_flip(dev, intel_crtc->plane);
2911 }
2912}
2913
Keith Packard42f52ef2008-10-18 19:39:29 -07002914/* Called from drm generic code, passed 'crtc' which
2915 * we use as a pipe index
2916 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002917static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002918{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002919 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002920 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002921
Chris Wilson5eddb702010-09-11 13:48:45 +01002922 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002923 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002924
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002925 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002926 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002927 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002928 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002929 else
Keith Packard7c463582008-11-04 02:03:27 -08002930 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002931 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002932 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002933
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002934 return 0;
2935}
2936
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002937static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002938{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002939 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002940 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002941 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002942 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002943
2944 if (!i915_pipe_enabled(dev, pipe))
2945 return -EINVAL;
2946
2947 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002948 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002949 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2950
2951 return 0;
2952}
2953
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002954static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2955{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002956 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002957 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002958
2959 if (!i915_pipe_enabled(dev, pipe))
2960 return -EINVAL;
2961
2962 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002963 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002964 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002965 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2966
2967 return 0;
2968}
2969
Ben Widawskyabd58f02013-11-02 21:07:09 -07002970static int gen8_enable_vblank(struct drm_device *dev, int pipe)
2971{
2972 struct drm_i915_private *dev_priv = dev->dev_private;
2973 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002974
2975 if (!i915_pipe_enabled(dev, pipe))
2976 return -EINVAL;
2977
2978 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002979 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2980 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2981 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002982 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2983 return 0;
2984}
2985
Keith Packard42f52ef2008-10-18 19:39:29 -07002986/* Called from drm generic code, passed 'crtc' which
2987 * we use as a pipe index
2988 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002989static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002990{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002991 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002992 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002993
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002994 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002995 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002996 PIPE_VBLANK_INTERRUPT_STATUS |
2997 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002998 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2999}
3000
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003001static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07003002{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003003 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07003004 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03003005 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02003006 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07003007
3008 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03003009 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07003010 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3011}
3012
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003013static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
3014{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003015 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003016 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003017
3018 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07003019 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02003020 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003021 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3022}
3023
Ben Widawskyabd58f02013-11-02 21:07:09 -07003024static void gen8_disable_vblank(struct drm_device *dev, int pipe)
3025{
3026 struct drm_i915_private *dev_priv = dev->dev_private;
3027 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003028
3029 if (!i915_pipe_enabled(dev, pipe))
3030 return;
3031
3032 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01003033 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
3034 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
3035 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07003036 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3037}
3038
Chris Wilson893eead2010-10-27 14:44:35 +01003039static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003040ring_last_seqno(struct intel_engine_cs *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08003041{
Chris Wilson893eead2010-10-27 14:44:35 +01003042 return list_entry(ring->request_list.prev,
3043 struct drm_i915_gem_request, list)->seqno;
3044}
3045
Chris Wilson9107e9d2013-06-10 11:20:20 +01003046static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003047ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01003048{
Chris Wilson9107e9d2013-06-10 11:20:20 +01003049 return (list_empty(&ring->request_list) ||
3050 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04003051}
3052
Daniel Vettera028c4b2014-03-15 00:08:56 +01003053static bool
3054ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
3055{
3056 if (INTEL_INFO(dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003057 return (ipehr >> 23) == 0x1c;
Daniel Vettera028c4b2014-03-15 00:08:56 +01003058 } else {
3059 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
3060 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
3061 MI_SEMAPHORE_REGISTER);
3062 }
3063}
3064
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003065static struct intel_engine_cs *
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003066semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr, u64 offset)
Daniel Vetter921d42e2014-03-18 10:26:04 +01003067{
3068 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003069 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01003070 int i;
3071
3072 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003073 for_each_ring(signaller, dev_priv, i) {
3074 if (ring == signaller)
3075 continue;
3076
3077 if (offset == signaller->semaphore.signal_ggtt[ring->id])
3078 return signaller;
3079 }
Daniel Vetter921d42e2014-03-18 10:26:04 +01003080 } else {
3081 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
3082
3083 for_each_ring(signaller, dev_priv, i) {
3084 if(ring == signaller)
3085 continue;
3086
Ben Widawskyebc348b2014-04-29 14:52:28 -07003087 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01003088 return signaller;
3089 }
3090 }
3091
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003092 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x, offset 0x%016llx\n",
3093 ring->id, ipehr, offset);
Daniel Vetter921d42e2014-03-18 10:26:04 +01003094
3095 return NULL;
3096}
3097
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003098static struct intel_engine_cs *
3099semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02003100{
3101 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003102 u32 cmd, ipehr, head;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003103 u64 offset = 0;
3104 int i, backwards;
Chris Wilsona24a11e2013-03-14 17:52:05 +02003105
3106 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01003107 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01003108 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02003109
Daniel Vetter88fe4292014-03-15 00:08:55 +01003110 /*
3111 * HEAD is likely pointing to the dword after the actual command,
3112 * so scan backwards until we find the MBOX. But limit it to just 3
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003113 * or 4 dwords depending on the semaphore wait command size.
3114 * Note that we don't care about ACTHD here since that might
Daniel Vetter88fe4292014-03-15 00:08:55 +01003115 * point at at batch, and semaphores are always emitted into the
3116 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02003117 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01003118 head = I915_READ_HEAD(ring) & HEAD_ADDR;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003119 backwards = (INTEL_INFO(ring->dev)->gen >= 8) ? 5 : 4;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003120
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003121 for (i = backwards; i; --i) {
Daniel Vetter88fe4292014-03-15 00:08:55 +01003122 /*
3123 * Be paranoid and presume the hw has gone off into the wild -
3124 * our ring is smaller than what the hardware (and hence
3125 * HEAD_ADDR) allows. Also handles wrap-around.
3126 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003127 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01003128
3129 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003130 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02003131 if (cmd == ipehr)
3132 break;
3133
Daniel Vetter88fe4292014-03-15 00:08:55 +01003134 head -= 4;
3135 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003136
Daniel Vetter88fe4292014-03-15 00:08:55 +01003137 if (!i)
3138 return NULL;
3139
Oscar Mateoee1b1e52014-05-22 14:13:35 +01003140 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Rodrigo Vivia6cdb932014-06-30 09:53:39 -07003141 if (INTEL_INFO(ring->dev)->gen >= 8) {
3142 offset = ioread32(ring->buffer->virtual_start + head + 12);
3143 offset <<= 32;
3144 offset = ioread32(ring->buffer->virtual_start + head + 8);
3145 }
3146 return semaphore_wait_to_signaller_ring(ring, ipehr, offset);
Chris Wilsona24a11e2013-03-14 17:52:05 +02003147}
3148
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003149static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01003150{
3151 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003152 struct intel_engine_cs *signaller;
Chris Wilson6274f212013-06-10 11:20:21 +01003153 u32 seqno, ctl;
3154
Chris Wilson4be17382014-06-06 10:22:29 +01003155 ring->hangcheck.deadlock++;
Chris Wilson6274f212013-06-10 11:20:21 +01003156
3157 signaller = semaphore_waits_for(ring, &seqno);
Chris Wilson4be17382014-06-06 10:22:29 +01003158 if (signaller == NULL)
3159 return -1;
3160
3161 /* Prevent pathological recursion due to driver bugs */
3162 if (signaller->hangcheck.deadlock >= I915_NUM_RINGS)
Chris Wilson6274f212013-06-10 11:20:21 +01003163 return -1;
3164
3165 /* cursory check for an unkickable deadlock */
3166 ctl = I915_READ_CTL(signaller);
3167 if (ctl & RING_WAIT_SEMAPHORE && semaphore_passed(signaller) < 0)
3168 return -1;
3169
Chris Wilson4be17382014-06-06 10:22:29 +01003170 if (i915_seqno_passed(signaller->get_seqno(signaller, false), seqno))
3171 return 1;
3172
3173 if (signaller->hangcheck.deadlock)
3174 return -1;
3175
3176 return 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003177}
3178
3179static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
3180{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003181 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01003182 int i;
3183
3184 for_each_ring(ring, dev_priv, i)
Chris Wilson4be17382014-06-06 10:22:29 +01003185 ring->hangcheck.deadlock = 0;
Chris Wilson6274f212013-06-10 11:20:21 +01003186}
3187
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003188static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003189ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003190{
3191 struct drm_device *dev = ring->dev;
3192 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003193 u32 tmp;
3194
Chris Wilson6274f212013-06-10 11:20:21 +01003195 if (ring->hangcheck.acthd != acthd)
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003196 return HANGCHECK_ACTIVE;
Chris Wilson6274f212013-06-10 11:20:21 +01003197
Chris Wilson9107e9d2013-06-10 11:20:20 +01003198 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003199 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003200
3201 /* Is the chip hanging on a WAIT_FOR_EVENT?
3202 * If so we can simply poke the RB_WAIT bit
3203 * and break the hang. This should work on
3204 * all but the second generation chipsets.
3205 */
3206 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003207 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02003208 i915_handle_error(dev, false,
3209 "Kicking stuck wait on %s",
3210 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003211 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003212 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003213 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02003214
Chris Wilson6274f212013-06-10 11:20:21 +01003215 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
3216 switch (semaphore_passed(ring)) {
3217 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003218 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003219 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02003220 i915_handle_error(dev, false,
3221 "Kicking stuck semaphore on %s",
3222 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01003223 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003224 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003225 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003226 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01003227 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003228 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003229
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003230 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03003231}
3232
Ben Gamarif65d9422009-09-14 17:48:44 -04003233/**
3234 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003235 * batchbuffers in a long time. We keep track per ring seqno progress and
3236 * if there are no progress, hangcheck score for that ring is increased.
3237 * Further, acthd is inspected to see if the ring is stuck. On stuck case
3238 * we kick the ring. If we see no progress on three subsequent calls
3239 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04003240 */
Damien Lespiaua658b5d2013-08-08 22:28:56 +01003241static void i915_hangcheck_elapsed(unsigned long data)
Ben Gamarif65d9422009-09-14 17:48:44 -04003242{
3243 struct drm_device *dev = (struct drm_device *)data;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003244 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01003245 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01003246 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003247 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003248 bool stuck[I915_NUM_RINGS] = { 0 };
3249#define BUSY 1
3250#define KICK 5
3251#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01003252
Jani Nikulad330a952014-01-21 11:24:25 +02003253 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07003254 return;
3255
Chris Wilsonb4519512012-05-11 14:29:30 +01003256 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00003257 u64 acthd;
3258 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003259 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01003260
Chris Wilson6274f212013-06-10 11:20:21 +01003261 semaphore_clear_deadlocks(dev_priv);
3262
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003263 seqno = ring->get_seqno(ring, false);
3264 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01003265
Chris Wilson9107e9d2013-06-10 11:20:20 +01003266 if (ring->hangcheck.seqno == seqno) {
3267 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003268 ring->hangcheck.action = HANGCHECK_IDLE;
3269
Chris Wilson9107e9d2013-06-10 11:20:20 +01003270 if (waitqueue_active(&ring->irq_queue)) {
3271 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01003272 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01003273 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
3274 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
3275 ring->name);
3276 else
3277 DRM_INFO("Fake missed irq on %s\n",
3278 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01003279 wake_up_all(&ring->irq_queue);
3280 }
3281 /* Safeguard against driver failure */
3282 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003283 } else
3284 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003285 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01003286 /* We always increment the hangcheck score
3287 * if the ring is busy and still processing
3288 * the same request, so that no single request
3289 * can run indefinitely (such as a chain of
3290 * batches). The only time we do not increment
3291 * the hangcheck score on this ring, if this
3292 * ring is in a legitimate wait for another
3293 * ring. In that case the waiting ring is a
3294 * victim and we want to be sure we catch the
3295 * right culprit. Then every time we do kick
3296 * the ring, add a small increment to the
3297 * score so that we can catch a batch that is
3298 * being repeatedly kicked and so responsible
3299 * for stalling the machine.
3300 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03003301 ring->hangcheck.action = ring_stuck(ring,
3302 acthd);
3303
3304 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03003305 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003306 case HANGCHECK_WAIT:
Chris Wilson6274f212013-06-10 11:20:21 +01003307 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003308 case HANGCHECK_ACTIVE:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003309 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01003310 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003311 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003312 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003313 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003314 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003315 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003316 stuck[i] = true;
3317 break;
3318 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003319 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003320 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003321 ring->hangcheck.action = HANGCHECK_ACTIVE;
3322
Chris Wilson9107e9d2013-06-10 11:20:20 +01003323 /* Gradually reduce the count so that we catch DoS
3324 * attempts across multiple batches.
3325 */
3326 if (ring->hangcheck.score > 0)
3327 ring->hangcheck.score--;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003328 }
3329
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003330 ring->hangcheck.seqno = seqno;
3331 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003332 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003333 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003334
Mika Kuoppala92cab732013-05-24 17:16:07 +03003335 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003336 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003337 DRM_INFO("%s on %s\n",
3338 stuck[i] ? "stuck" : "no progress",
3339 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003340 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003341 }
3342 }
3343
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003344 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003345 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003346
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003347 if (busy_count)
3348 /* Reset timer case chip hangs without another request
3349 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003350 i915_queue_hangcheck(dev);
3351}
3352
3353void i915_queue_hangcheck(struct drm_device *dev)
3354{
3355 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulad330a952014-01-21 11:24:25 +02003356 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003357 return;
3358
3359 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
3360 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04003361}
3362
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003363static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003364{
3365 struct drm_i915_private *dev_priv = dev->dev_private;
3366
3367 if (HAS_PCH_NOP(dev))
3368 return;
3369
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003370 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003371
3372 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3373 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003374}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003375
Paulo Zanoni622364b2014-04-01 15:37:22 -03003376/*
3377 * SDEIER is also touched by the interrupt handler to work around missed PCH
3378 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3379 * instead we unconditionally enable all PCH interrupt sources here, but then
3380 * only unmask them as needed with SDEIMR.
3381 *
3382 * This function needs to be called before interrupts are enabled.
3383 */
3384static void ibx_irq_pre_postinstall(struct drm_device *dev)
3385{
3386 struct drm_i915_private *dev_priv = dev->dev_private;
3387
3388 if (HAS_PCH_NOP(dev))
3389 return;
3390
3391 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003392 I915_WRITE(SDEIER, 0xffffffff);
3393 POSTING_READ(SDEIER);
3394}
3395
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003396static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003397{
3398 struct drm_i915_private *dev_priv = dev->dev_private;
3399
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003400 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003401 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003402 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003403}
3404
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405/* drm_dma.h hooks
3406*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003407static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003408{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003409 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003410
Paulo Zanoni0c841212014-04-01 15:37:27 -03003411 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003412
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003413 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003414 if (IS_GEN7(dev))
3415 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003416
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003417 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003418
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003419 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003420}
3421
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003422static void valleyview_irq_preinstall(struct drm_device *dev)
3423{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003424 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003425 int pipe;
3426
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003427 /* VLV magic */
3428 I915_WRITE(VLV_IMR, 0);
3429 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3430 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3431 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3432
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003433 /* and GT */
3434 I915_WRITE(GTIIR, I915_READ(GTIIR));
3435 I915_WRITE(GTIIR, I915_READ(GTIIR));
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003436
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003437 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003438
3439 I915_WRITE(DPINVGTT, 0xff);
3440
3441 I915_WRITE(PORT_HOTPLUG_EN, 0);
3442 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3443 for_each_pipe(pipe)
3444 I915_WRITE(PIPESTAT(pipe), 0xffff);
3445 I915_WRITE(VLV_IIR, 0xffffffff);
3446 I915_WRITE(VLV_IMR, 0xffffffff);
3447 I915_WRITE(VLV_IER, 0x0);
3448 POSTING_READ(VLV_IER);
3449}
3450
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003451static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3452{
3453 GEN8_IRQ_RESET_NDX(GT, 0);
3454 GEN8_IRQ_RESET_NDX(GT, 1);
3455 GEN8_IRQ_RESET_NDX(GT, 2);
3456 GEN8_IRQ_RESET_NDX(GT, 3);
3457}
3458
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003459static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003460{
3461 struct drm_i915_private *dev_priv = dev->dev_private;
3462 int pipe;
3463
Ben Widawskyabd58f02013-11-02 21:07:09 -07003464 I915_WRITE(GEN8_MASTER_IRQ, 0);
3465 POSTING_READ(GEN8_MASTER_IRQ);
3466
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003467 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003468
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003469 for_each_pipe(pipe)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003470 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003471
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003472 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3473 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3474 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003475
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003476 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003477}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003478
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003479static void cherryview_irq_preinstall(struct drm_device *dev)
3480{
3481 struct drm_i915_private *dev_priv = dev->dev_private;
3482 int pipe;
3483
3484 I915_WRITE(GEN8_MASTER_IRQ, 0);
3485 POSTING_READ(GEN8_MASTER_IRQ);
3486
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003487 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003488
3489 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003490
3491 POSTING_READ(GEN8_PCU_IIR);
3492
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003493 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3494
3495 I915_WRITE(PORT_HOTPLUG_EN, 0);
3496 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3497
3498 for_each_pipe(pipe)
3499 I915_WRITE(PIPESTAT(pipe), 0xffff);
3500
3501 I915_WRITE(VLV_IMR, 0xffffffff);
3502 I915_WRITE(VLV_IER, 0x0);
3503 I915_WRITE(VLV_IIR, 0xffffffff);
3504 POSTING_READ(VLV_IIR);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003505}
3506
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003507static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003508{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003509 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003510 struct drm_mode_config *mode_config = &dev->mode_config;
3511 struct intel_encoder *intel_encoder;
Daniel Vetterfee884e2013-07-04 23:35:21 +02003512 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
Keith Packard7fe0b972011-09-19 13:31:02 -07003513
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003514 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003515 hotplug_irqs = SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003516 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003517 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003518 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003519 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003520 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003521 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003522 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003523 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003524 }
3525
Daniel Vetterfee884e2013-07-04 23:35:21 +02003526 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003527
3528 /*
3529 * Enable digital hotplug on the PCH, and configure the DP short pulse
3530 * duration to 2ms (which is the minimum in the Display Port spec)
3531 *
3532 * This register is the same on all known PCH chips.
3533 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003534 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3535 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3536 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3537 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3538 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3539 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3540}
3541
Paulo Zanonid46da432013-02-08 17:35:15 -02003542static void ibx_irq_postinstall(struct drm_device *dev)
3543{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003544 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003545 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003546
Daniel Vetter692a04c2013-05-29 21:43:05 +02003547 if (HAS_PCH_NOP(dev))
3548 return;
3549
Paulo Zanoni105b1222014-04-01 15:37:17 -03003550 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003551 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003552 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003553 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003554
Paulo Zanoni337ba012014-04-01 15:37:16 -03003555 GEN5_ASSERT_IIR_IS_ZERO(SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003556 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003557}
3558
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003559static void gen5_gt_irq_postinstall(struct drm_device *dev)
3560{
3561 struct drm_i915_private *dev_priv = dev->dev_private;
3562 u32 pm_irqs, gt_irqs;
3563
3564 pm_irqs = gt_irqs = 0;
3565
3566 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003567 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003568 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003569 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3570 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003571 }
3572
3573 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3574 if (IS_GEN5(dev)) {
3575 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3576 ILK_BSD_USER_INTERRUPT;
3577 } else {
3578 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3579 }
3580
Paulo Zanoni35079892014-04-01 15:37:15 -03003581 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003582
3583 if (INTEL_INFO(dev)->gen >= 6) {
Deepak Sa6706b42014-03-15 20:23:22 +05303584 pm_irqs |= dev_priv->pm_rps_events;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003585
3586 if (HAS_VEBOX(dev))
3587 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3588
Paulo Zanoni605cd252013-08-06 18:57:15 -03003589 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003590 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003591 }
3592}
3593
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003594static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003595{
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003596 unsigned long irqflags;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003597 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003598 u32 display_mask, extra_mask;
3599
3600 if (INTEL_INFO(dev)->gen >= 7) {
3601 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3602 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3603 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003604 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003605 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003606 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003607 } else {
3608 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3609 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003610 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003611 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3612 DE_POISON);
Daniel Vetter5c673b62014-03-07 20:34:46 +01003613 extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3614 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003615 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003616
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003617 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003618
Paulo Zanoni0c841212014-04-01 15:37:27 -03003619 I915_WRITE(HWSTAM, 0xeffe);
3620
Paulo Zanoni622364b2014-04-01 15:37:22 -03003621 ibx_irq_pre_postinstall(dev);
3622
Paulo Zanoni35079892014-04-01 15:37:15 -03003623 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003624
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003625 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003626
Paulo Zanonid46da432013-02-08 17:35:15 -02003627 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003628
Jesse Barnesf97108d2010-01-29 11:27:07 -08003629 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003630 /* Enable PCU event interrupts
3631 *
3632 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003633 * setup is guaranteed to run in single-threaded context. But we
3634 * need it to make the assert_spin_locked happy. */
3635 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003636 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003637 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003638 }
3639
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003640 return 0;
3641}
3642
Imre Deakf8b79e52014-03-04 19:23:07 +02003643static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3644{
3645 u32 pipestat_mask;
3646 u32 iir_mask;
3647
3648 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3649 PIPE_FIFO_UNDERRUN_STATUS;
3650
3651 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3652 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3653 POSTING_READ(PIPESTAT(PIPE_A));
3654
3655 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3656 PIPE_CRC_DONE_INTERRUPT_STATUS;
3657
3658 i915_enable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3659 PIPE_GMBUS_INTERRUPT_STATUS);
3660 i915_enable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3661
3662 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3663 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3664 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
3665 dev_priv->irq_mask &= ~iir_mask;
3666
3667 I915_WRITE(VLV_IIR, iir_mask);
3668 I915_WRITE(VLV_IIR, iir_mask);
3669 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3670 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3671 POSTING_READ(VLV_IER);
3672}
3673
3674static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3675{
3676 u32 pipestat_mask;
3677 u32 iir_mask;
3678
3679 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3680 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003681 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003682
3683 dev_priv->irq_mask |= iir_mask;
3684 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3685 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3686 I915_WRITE(VLV_IIR, iir_mask);
3687 I915_WRITE(VLV_IIR, iir_mask);
3688 POSTING_READ(VLV_IIR);
3689
3690 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3691 PIPE_CRC_DONE_INTERRUPT_STATUS;
3692
3693 i915_disable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3694 PIPE_GMBUS_INTERRUPT_STATUS);
3695 i915_disable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3696
3697 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3698 PIPE_FIFO_UNDERRUN_STATUS;
3699 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3700 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3701 POSTING_READ(PIPESTAT(PIPE_A));
3702}
3703
3704void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3705{
3706 assert_spin_locked(&dev_priv->irq_lock);
3707
3708 if (dev_priv->display_irqs_enabled)
3709 return;
3710
3711 dev_priv->display_irqs_enabled = true;
3712
3713 if (dev_priv->dev->irq_enabled)
3714 valleyview_display_irqs_install(dev_priv);
3715}
3716
3717void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3718{
3719 assert_spin_locked(&dev_priv->irq_lock);
3720
3721 if (!dev_priv->display_irqs_enabled)
3722 return;
3723
3724 dev_priv->display_irqs_enabled = false;
3725
3726 if (dev_priv->dev->irq_enabled)
3727 valleyview_display_irqs_uninstall(dev_priv);
3728}
3729
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003730static int valleyview_irq_postinstall(struct drm_device *dev)
3731{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003732 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb79480b2013-06-27 17:52:10 +02003733 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003734
Imre Deakf8b79e52014-03-04 19:23:07 +02003735 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003736
Daniel Vetter20afbda2012-12-11 14:05:07 +01003737 I915_WRITE(PORT_HOTPLUG_EN, 0);
3738 POSTING_READ(PORT_HOTPLUG_EN);
3739
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003740 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003741 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003742 I915_WRITE(VLV_IIR, 0xffffffff);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003743 POSTING_READ(VLV_IER);
3744
Daniel Vetterb79480b2013-06-27 17:52:10 +02003745 /* Interrupt setup is already guaranteed to be single-threaded, this is
3746 * just to make the assert_spin_locked check happy. */
3747 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deakf8b79e52014-03-04 19:23:07 +02003748 if (dev_priv->display_irqs_enabled)
3749 valleyview_display_irqs_install(dev_priv);
Daniel Vetterb79480b2013-06-27 17:52:10 +02003750 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07003751
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003752 I915_WRITE(VLV_IIR, 0xffffffff);
3753 I915_WRITE(VLV_IIR, 0xffffffff);
3754
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003755 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003756
3757 /* ack & enable invalid PTE error interrupts */
3758#if 0 /* FIXME: add support to irq handler for checking these bits */
3759 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3760 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3761#endif
3762
3763 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003764
3765 return 0;
3766}
3767
Ben Widawskyabd58f02013-11-02 21:07:09 -07003768static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3769{
3770 int i;
3771
3772 /* These are interrupts we'll toggle with the ring mask register */
3773 uint32_t gt_interrupts[] = {
3774 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
3775 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
3776 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
3777 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3778 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
3779 0,
3780 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT
3781 };
3782
Paulo Zanoni337ba012014-04-01 15:37:16 -03003783 for (i = 0; i < ARRAY_SIZE(gt_interrupts); i++)
Paulo Zanoni35079892014-04-01 15:37:15 -03003784 GEN8_IRQ_INIT_NDX(GT, i, ~gt_interrupts[i], gt_interrupts[i]);
Ben Widawsky09610212014-05-15 20:58:08 +03003785
3786 dev_priv->pm_irq_mask = 0xffffffff;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003787}
3788
3789static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3790{
3791 struct drm_device *dev = dev_priv->dev;
Damien Lespiaud0e1f1c2014-04-08 01:22:44 +01003792 uint32_t de_pipe_masked = GEN8_PIPE_PRIMARY_FLIP_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003793 GEN8_PIPE_CDCLK_CRC_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003794 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Daniel Vetter5c673b62014-03-07 20:34:46 +01003795 uint32_t de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3796 GEN8_PIPE_FIFO_UNDERRUN;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003797 int pipe;
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003798 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3799 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3800 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003801
Paulo Zanoni337ba012014-04-01 15:37:16 -03003802 for_each_pipe(pipe)
Paulo Zanoni35079892014-04-01 15:37:15 -03003803 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe, dev_priv->de_irq_mask[pipe],
3804 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003805
Paulo Zanoni35079892014-04-01 15:37:15 -03003806 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~GEN8_AUX_CHANNEL_A, GEN8_AUX_CHANNEL_A);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003807}
3808
3809static int gen8_irq_postinstall(struct drm_device *dev)
3810{
3811 struct drm_i915_private *dev_priv = dev->dev_private;
3812
Paulo Zanoni622364b2014-04-01 15:37:22 -03003813 ibx_irq_pre_postinstall(dev);
3814
Ben Widawskyabd58f02013-11-02 21:07:09 -07003815 gen8_gt_irq_postinstall(dev_priv);
3816 gen8_de_irq_postinstall(dev_priv);
3817
3818 ibx_irq_postinstall(dev);
3819
3820 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3821 POSTING_READ(GEN8_MASTER_IRQ);
3822
3823 return 0;
3824}
3825
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003826static int cherryview_irq_postinstall(struct drm_device *dev)
3827{
3828 struct drm_i915_private *dev_priv = dev->dev_private;
3829 u32 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3830 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003831 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Ville Syrjälä3278f672014-04-09 13:28:49 +03003832 I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
3833 u32 pipestat_enable = PLANE_FLIP_DONE_INT_STATUS_VLV |
3834 PIPE_CRC_DONE_INTERRUPT_STATUS;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003835 unsigned long irqflags;
3836 int pipe;
3837
3838 /*
3839 * Leave vblank interrupts masked initially. enable/disable will
3840 * toggle them based on usage.
3841 */
Ville Syrjälä3278f672014-04-09 13:28:49 +03003842 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003843
3844 for_each_pipe(pipe)
3845 I915_WRITE(PIPESTAT(pipe), 0xffff);
3846
3847 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä3278f672014-04-09 13:28:49 +03003848 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003849 for_each_pipe(pipe)
3850 i915_enable_pipestat(dev_priv, pipe, pipestat_enable);
3851 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3852
3853 I915_WRITE(VLV_IIR, 0xffffffff);
3854 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3855 I915_WRITE(VLV_IER, enable_mask);
3856
3857 gen8_gt_irq_postinstall(dev_priv);
3858
3859 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3860 POSTING_READ(GEN8_MASTER_IRQ);
3861
3862 return 0;
3863}
3864
Ben Widawskyabd58f02013-11-02 21:07:09 -07003865static void gen8_irq_uninstall(struct drm_device *dev)
3866{
3867 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003868
3869 if (!dev_priv)
3870 return;
3871
Paulo Zanonid4eb6b12014-04-01 15:37:24 -03003872 intel_hpd_irq_uninstall(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003873
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003874 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003875}
3876
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003877static void valleyview_irq_uninstall(struct drm_device *dev)
3878{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003879 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deakf8b79e52014-03-04 19:23:07 +02003880 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003881 int pipe;
3882
3883 if (!dev_priv)
3884 return;
3885
Imre Deak843d0e72014-04-14 20:24:23 +03003886 I915_WRITE(VLV_MASTER_IER, 0);
3887
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02003888 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003889
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003890 for_each_pipe(pipe)
3891 I915_WRITE(PIPESTAT(pipe), 0xffff);
3892
3893 I915_WRITE(HWSTAM, 0xffffffff);
3894 I915_WRITE(PORT_HOTPLUG_EN, 0);
3895 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Imre Deakf8b79e52014-03-04 19:23:07 +02003896
3897 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3898 if (dev_priv->display_irqs_enabled)
3899 valleyview_display_irqs_uninstall(dev_priv);
3900 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3901
3902 dev_priv->irq_mask = 0;
3903
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003904 I915_WRITE(VLV_IIR, 0xffffffff);
3905 I915_WRITE(VLV_IMR, 0xffffffff);
3906 I915_WRITE(VLV_IER, 0x0);
3907 POSTING_READ(VLV_IER);
3908}
3909
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003910static void cherryview_irq_uninstall(struct drm_device *dev)
3911{
3912 struct drm_i915_private *dev_priv = dev->dev_private;
3913 int pipe;
3914
3915 if (!dev_priv)
3916 return;
3917
3918 I915_WRITE(GEN8_MASTER_IRQ, 0);
3919 POSTING_READ(GEN8_MASTER_IRQ);
3920
3921#define GEN8_IRQ_FINI_NDX(type, which) \
3922do { \
3923 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
3924 I915_WRITE(GEN8_##type##_IER(which), 0); \
3925 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3926 POSTING_READ(GEN8_##type##_IIR(which)); \
3927 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3928} while (0)
3929
3930#define GEN8_IRQ_FINI(type) \
3931do { \
3932 I915_WRITE(GEN8_##type##_IMR, 0xffffffff); \
3933 I915_WRITE(GEN8_##type##_IER, 0); \
3934 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3935 POSTING_READ(GEN8_##type##_IIR); \
3936 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3937} while (0)
3938
3939 GEN8_IRQ_FINI_NDX(GT, 0);
3940 GEN8_IRQ_FINI_NDX(GT, 1);
3941 GEN8_IRQ_FINI_NDX(GT, 2);
3942 GEN8_IRQ_FINI_NDX(GT, 3);
3943
3944 GEN8_IRQ_FINI(PCU);
3945
3946#undef GEN8_IRQ_FINI
3947#undef GEN8_IRQ_FINI_NDX
3948
3949 I915_WRITE(PORT_HOTPLUG_EN, 0);
3950 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3951
3952 for_each_pipe(pipe)
3953 I915_WRITE(PIPESTAT(pipe), 0xffff);
3954
3955 I915_WRITE(VLV_IMR, 0xffffffff);
3956 I915_WRITE(VLV_IER, 0x0);
3957 I915_WRITE(VLV_IIR, 0xffffffff);
3958 POSTING_READ(VLV_IIR);
3959}
3960
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003961static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003962{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003963 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003964
3965 if (!dev_priv)
3966 return;
3967
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02003968 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003969
Paulo Zanonibe30b292014-04-01 15:37:25 -03003970 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003971}
3972
Chris Wilsonc2798b12012-04-22 21:13:57 +01003973static void i8xx_irq_preinstall(struct drm_device * dev)
3974{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003975 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003976 int pipe;
3977
Chris Wilsonc2798b12012-04-22 21:13:57 +01003978 for_each_pipe(pipe)
3979 I915_WRITE(PIPESTAT(pipe), 0);
3980 I915_WRITE16(IMR, 0xffff);
3981 I915_WRITE16(IER, 0x0);
3982 POSTING_READ16(IER);
3983}
3984
3985static int i8xx_irq_postinstall(struct drm_device *dev)
3986{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003987 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter379ef822013-10-16 22:55:56 +02003988 unsigned long irqflags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003989
Chris Wilsonc2798b12012-04-22 21:13:57 +01003990 I915_WRITE16(EMR,
3991 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3992
3993 /* Unmask the interrupts that we always want on. */
3994 dev_priv->irq_mask =
3995 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3996 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3997 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3998 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3999 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4000 I915_WRITE16(IMR, dev_priv->irq_mask);
4001
4002 I915_WRITE16(IER,
4003 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4004 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4005 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
4006 I915_USER_INTERRUPT);
4007 POSTING_READ16(IER);
4008
Daniel Vetter379ef822013-10-16 22:55:56 +02004009 /* Interrupt setup is already guaranteed to be single-threaded, this is
4010 * just to make the assert_spin_locked check happy. */
4011 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02004012 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4013 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetter379ef822013-10-16 22:55:56 +02004014 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4015
Chris Wilsonc2798b12012-04-22 21:13:57 +01004016 return 0;
4017}
4018
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004019/*
4020 * Returns true when a page flip has completed.
4021 */
4022static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004023 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004024{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004025 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004026 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004027
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004028 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004029 return false;
4030
4031 if ((iir & flip_pending) == 0)
4032 return false;
4033
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004034 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004035
4036 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4037 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4038 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4039 * the flip is completed (no longer pending). Since this doesn't raise
4040 * an interrupt per se, we watch for the change at vblank.
4041 */
4042 if (I915_READ16(ISR) & flip_pending)
4043 return false;
4044
4045 intel_finish_page_flip(dev, pipe);
4046
4047 return true;
4048}
4049
Daniel Vetterff1f5252012-10-02 15:10:55 +02004050static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004051{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004052 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004053 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004054 u16 iir, new_iir;
4055 u32 pipe_stats[2];
4056 unsigned long irqflags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004057 int pipe;
4058 u16 flip_mask =
4059 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4060 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
4061
Chris Wilsonc2798b12012-04-22 21:13:57 +01004062 iir = I915_READ16(IIR);
4063 if (iir == 0)
4064 return IRQ_NONE;
4065
4066 while (iir & ~flip_mask) {
4067 /* Can't rely on pipestat interrupt bit in iir as it might
4068 * have been cleared after the pipestat interrupt was received.
4069 * It doesn't set the bit in iir again, but it still produces
4070 * interrupts (for non-MSI).
4071 */
4072 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4073 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004074 i915_handle_error(dev, false,
4075 "Command parser error, iir 0x%08x",
4076 iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004077
4078 for_each_pipe(pipe) {
4079 int reg = PIPESTAT(pipe);
4080 pipe_stats[pipe] = I915_READ(reg);
4081
4082 /*
4083 * Clear the PIPE*STAT regs before the IIR
4084 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004085 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01004086 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004087 }
4088 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4089
4090 I915_WRITE16(IIR, iir & ~flip_mask);
4091 new_iir = I915_READ16(IIR); /* Flush posted writes */
4092
Daniel Vetterd05c6172012-04-26 23:28:09 +02004093 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004094
4095 if (iir & I915_USER_INTERRUPT)
4096 notify_ring(dev, &dev_priv->ring[RCS]);
4097
Daniel Vetter4356d582013-10-16 22:55:55 +02004098 for_each_pipe(pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004099 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004100 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004101 plane = !plane;
4102
Daniel Vetter4356d582013-10-16 22:55:55 +02004103 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02004104 i8xx_handle_vblank(dev, plane, pipe, iir))
4105 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01004106
Daniel Vetter4356d582013-10-16 22:55:55 +02004107 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004108 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004109
4110 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4111 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004112 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Daniel Vetter4356d582013-10-16 22:55:55 +02004113 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01004114
4115 iir = new_iir;
4116 }
4117
4118 return IRQ_HANDLED;
4119}
4120
4121static void i8xx_irq_uninstall(struct drm_device * dev)
4122{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004123 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004124 int pipe;
4125
Chris Wilsonc2798b12012-04-22 21:13:57 +01004126 for_each_pipe(pipe) {
4127 /* Clear enable bits; then clear status bits */
4128 I915_WRITE(PIPESTAT(pipe), 0);
4129 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4130 }
4131 I915_WRITE16(IMR, 0xffff);
4132 I915_WRITE16(IER, 0x0);
4133 I915_WRITE16(IIR, I915_READ16(IIR));
4134}
4135
Chris Wilsona266c7d2012-04-24 22:59:44 +01004136static void i915_irq_preinstall(struct drm_device * dev)
4137{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004138 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004139 int pipe;
4140
Chris Wilsona266c7d2012-04-24 22:59:44 +01004141 if (I915_HAS_HOTPLUG(dev)) {
4142 I915_WRITE(PORT_HOTPLUG_EN, 0);
4143 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4144 }
4145
Chris Wilson00d98eb2012-04-24 22:59:48 +01004146 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004147 for_each_pipe(pipe)
4148 I915_WRITE(PIPESTAT(pipe), 0);
4149 I915_WRITE(IMR, 0xffffffff);
4150 I915_WRITE(IER, 0x0);
4151 POSTING_READ(IER);
4152}
4153
4154static int i915_irq_postinstall(struct drm_device *dev)
4155{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004156 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01004157 u32 enable_mask;
Daniel Vetter379ef822013-10-16 22:55:56 +02004158 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004159
Chris Wilson38bde182012-04-24 22:59:50 +01004160 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
4161
4162 /* Unmask the interrupts that we always want on. */
4163 dev_priv->irq_mask =
4164 ~(I915_ASLE_INTERRUPT |
4165 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4166 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4167 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4168 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4169 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4170
4171 enable_mask =
4172 I915_ASLE_INTERRUPT |
4173 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4174 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4175 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
4176 I915_USER_INTERRUPT;
4177
Chris Wilsona266c7d2012-04-24 22:59:44 +01004178 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01004179 I915_WRITE(PORT_HOTPLUG_EN, 0);
4180 POSTING_READ(PORT_HOTPLUG_EN);
4181
Chris Wilsona266c7d2012-04-24 22:59:44 +01004182 /* Enable in IER... */
4183 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
4184 /* and unmask in IMR */
4185 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
4186 }
4187
Chris Wilsona266c7d2012-04-24 22:59:44 +01004188 I915_WRITE(IMR, dev_priv->irq_mask);
4189 I915_WRITE(IER, enable_mask);
4190 POSTING_READ(IER);
4191
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004192 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004193
Daniel Vetter379ef822013-10-16 22:55:56 +02004194 /* Interrupt setup is already guaranteed to be single-threaded, this is
4195 * just to make the assert_spin_locked check happy. */
4196 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02004197 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4198 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetter379ef822013-10-16 22:55:56 +02004199 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4200
Daniel Vetter20afbda2012-12-11 14:05:07 +01004201 return 0;
4202}
4203
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004204/*
4205 * Returns true when a page flip has completed.
4206 */
4207static bool i915_handle_vblank(struct drm_device *dev,
4208 int plane, int pipe, u32 iir)
4209{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004210 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004211 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
4212
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03004213 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004214 return false;
4215
4216 if ((iir & flip_pending) == 0)
4217 return false;
4218
4219 intel_prepare_page_flip(dev, plane);
4220
4221 /* We detect FlipDone by looking for the change in PendingFlip from '1'
4222 * to '0' on the following vblank, i.e. IIR has the Pendingflip
4223 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
4224 * the flip is completed (no longer pending). Since this doesn't raise
4225 * an interrupt per se, we watch for the change at vblank.
4226 */
4227 if (I915_READ(ISR) & flip_pending)
4228 return false;
4229
4230 intel_finish_page_flip(dev, pipe);
4231
4232 return true;
4233}
4234
Daniel Vetterff1f5252012-10-02 15:10:55 +02004235static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004236{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004237 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004238 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01004239 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004240 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01004241 u32 flip_mask =
4242 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4243 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01004244 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004245
Chris Wilsona266c7d2012-04-24 22:59:44 +01004246 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01004247 do {
4248 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01004249 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004250
4251 /* Can't rely on pipestat interrupt bit in iir as it might
4252 * have been cleared after the pipestat interrupt was received.
4253 * It doesn't set the bit in iir again, but it still produces
4254 * interrupts (for non-MSI).
4255 */
4256 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4257 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004258 i915_handle_error(dev, false,
4259 "Command parser error, iir 0x%08x",
4260 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004261
4262 for_each_pipe(pipe) {
4263 int reg = PIPESTAT(pipe);
4264 pipe_stats[pipe] = I915_READ(reg);
4265
Chris Wilson38bde182012-04-24 22:59:50 +01004266 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004267 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004268 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01004269 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004270 }
4271 }
4272 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4273
4274 if (!irq_received)
4275 break;
4276
Chris Wilsona266c7d2012-04-24 22:59:44 +01004277 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004278 if (I915_HAS_HOTPLUG(dev) &&
4279 iir & I915_DISPLAY_PORT_INTERRUPT)
4280 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004281
Chris Wilson38bde182012-04-24 22:59:50 +01004282 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004283 new_iir = I915_READ(IIR); /* Flush posted writes */
4284
Chris Wilsona266c7d2012-04-24 22:59:44 +01004285 if (iir & I915_USER_INTERRUPT)
4286 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004287
Chris Wilsona266c7d2012-04-24 22:59:44 +01004288 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01004289 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01004290 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01004291 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02004292
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004293 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
4294 i915_handle_vblank(dev, plane, pipe, iir))
4295 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004296
4297 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4298 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004299
4300 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004301 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004302
4303 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4304 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004305 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004306 }
4307
Chris Wilsona266c7d2012-04-24 22:59:44 +01004308 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4309 intel_opregion_asle_intr(dev);
4310
4311 /* With MSI, interrupts are only generated when iir
4312 * transitions from zero to nonzero. If another bit got
4313 * set while we were handling the existing iir bits, then
4314 * we would never get another interrupt.
4315 *
4316 * This is fine on non-MSI as well, as if we hit this path
4317 * we avoid exiting the interrupt handler only to generate
4318 * another one.
4319 *
4320 * Note that for MSI this could cause a stray interrupt report
4321 * if an interrupt landed in the time between writing IIR and
4322 * the posting read. This should be rare enough to never
4323 * trigger the 99% of 100,000 interrupts test for disabling
4324 * stray interrupts.
4325 */
Chris Wilson38bde182012-04-24 22:59:50 +01004326 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004327 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004328 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004329
Daniel Vetterd05c6172012-04-26 23:28:09 +02004330 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01004331
Chris Wilsona266c7d2012-04-24 22:59:44 +01004332 return ret;
4333}
4334
4335static void i915_irq_uninstall(struct drm_device * dev)
4336{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004337 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004338 int pipe;
4339
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004340 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004341
Chris Wilsona266c7d2012-04-24 22:59:44 +01004342 if (I915_HAS_HOTPLUG(dev)) {
4343 I915_WRITE(PORT_HOTPLUG_EN, 0);
4344 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4345 }
4346
Chris Wilson00d98eb2012-04-24 22:59:48 +01004347 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01004348 for_each_pipe(pipe) {
4349 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004350 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004351 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4352 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004353 I915_WRITE(IMR, 0xffffffff);
4354 I915_WRITE(IER, 0x0);
4355
Chris Wilsona266c7d2012-04-24 22:59:44 +01004356 I915_WRITE(IIR, I915_READ(IIR));
4357}
4358
4359static void i965_irq_preinstall(struct drm_device * dev)
4360{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004361 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004362 int pipe;
4363
Chris Wilsonadca4732012-05-11 18:01:31 +01004364 I915_WRITE(PORT_HOTPLUG_EN, 0);
4365 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004366
4367 I915_WRITE(HWSTAM, 0xeffe);
4368 for_each_pipe(pipe)
4369 I915_WRITE(PIPESTAT(pipe), 0);
4370 I915_WRITE(IMR, 0xffffffff);
4371 I915_WRITE(IER, 0x0);
4372 POSTING_READ(IER);
4373}
4374
4375static int i965_irq_postinstall(struct drm_device *dev)
4376{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004377 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004378 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004379 u32 error_mask;
Daniel Vetterb79480b2013-06-27 17:52:10 +02004380 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004381
Chris Wilsona266c7d2012-04-24 22:59:44 +01004382 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004383 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004384 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004385 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4386 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4387 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4388 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4389 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4390
4391 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004392 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4393 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004394 enable_mask |= I915_USER_INTERRUPT;
4395
4396 if (IS_G4X(dev))
4397 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004398
Daniel Vetterb79480b2013-06-27 17:52:10 +02004399 /* Interrupt setup is already guaranteed to be single-threaded, this is
4400 * just to make the assert_spin_locked check happy. */
4401 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02004402 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4403 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4404 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterb79480b2013-06-27 17:52:10 +02004405 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004406
Chris Wilsona266c7d2012-04-24 22:59:44 +01004407 /*
4408 * Enable some error detection, note the instruction error mask
4409 * bit is reserved, so we leave it masked.
4410 */
4411 if (IS_G4X(dev)) {
4412 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4413 GM45_ERROR_MEM_PRIV |
4414 GM45_ERROR_CP_PRIV |
4415 I915_ERROR_MEMORY_REFRESH);
4416 } else {
4417 error_mask = ~(I915_ERROR_PAGE_TABLE |
4418 I915_ERROR_MEMORY_REFRESH);
4419 }
4420 I915_WRITE(EMR, error_mask);
4421
4422 I915_WRITE(IMR, dev_priv->irq_mask);
4423 I915_WRITE(IER, enable_mask);
4424 POSTING_READ(IER);
4425
Daniel Vetter20afbda2012-12-11 14:05:07 +01004426 I915_WRITE(PORT_HOTPLUG_EN, 0);
4427 POSTING_READ(PORT_HOTPLUG_EN);
4428
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004429 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004430
4431 return 0;
4432}
4433
Egbert Eichbac56d52013-02-25 12:06:51 -05004434static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004435{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004436 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05004437 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02004438 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004439 u32 hotplug_en;
4440
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004441 assert_spin_locked(&dev_priv->irq_lock);
4442
Egbert Eichbac56d52013-02-25 12:06:51 -05004443 if (I915_HAS_HOTPLUG(dev)) {
4444 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
4445 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
4446 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05004447 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02004448 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
4449 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
4450 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05004451 /* Programming the CRT detection parameters tends
4452 to generate a spurious hotplug event about three
4453 seconds later. So just do it once.
4454 */
4455 if (IS_G4X(dev))
4456 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01004457 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05004458 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004459
Egbert Eichbac56d52013-02-25 12:06:51 -05004460 /* Ignore TV since it's buggy */
4461 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
4462 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004463}
4464
Daniel Vetterff1f5252012-10-02 15:10:55 +02004465static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004466{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004467 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004468 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004469 u32 iir, new_iir;
4470 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004471 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004472 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004473 u32 flip_mask =
4474 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4475 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004476
Chris Wilsona266c7d2012-04-24 22:59:44 +01004477 iir = I915_READ(IIR);
4478
Chris Wilsona266c7d2012-04-24 22:59:44 +01004479 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004480 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004481 bool blc_event = false;
4482
Chris Wilsona266c7d2012-04-24 22:59:44 +01004483 /* Can't rely on pipestat interrupt bit in iir as it might
4484 * have been cleared after the pipestat interrupt was received.
4485 * It doesn't set the bit in iir again, but it still produces
4486 * interrupts (for non-MSI).
4487 */
4488 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4489 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004490 i915_handle_error(dev, false,
4491 "Command parser error, iir 0x%08x",
4492 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004493
4494 for_each_pipe(pipe) {
4495 int reg = PIPESTAT(pipe);
4496 pipe_stats[pipe] = I915_READ(reg);
4497
4498 /*
4499 * Clear the PIPE*STAT regs before the IIR
4500 */
4501 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004502 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004503 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004504 }
4505 }
4506 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4507
4508 if (!irq_received)
4509 break;
4510
4511 ret = IRQ_HANDLED;
4512
4513 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004514 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4515 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004516
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004517 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004518 new_iir = I915_READ(IIR); /* Flush posted writes */
4519
Chris Wilsona266c7d2012-04-24 22:59:44 +01004520 if (iir & I915_USER_INTERRUPT)
4521 notify_ring(dev, &dev_priv->ring[RCS]);
4522 if (iir & I915_BSD_USER_INTERRUPT)
4523 notify_ring(dev, &dev_priv->ring[VCS]);
4524
Chris Wilsona266c7d2012-04-24 22:59:44 +01004525 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004526 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004527 i915_handle_vblank(dev, pipe, pipe, iir))
4528 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004529
4530 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4531 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004532
4533 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004534 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004535
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004536 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4537 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004538 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004539 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004540
4541 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4542 intel_opregion_asle_intr(dev);
4543
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004544 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4545 gmbus_irq_handler(dev);
4546
Chris Wilsona266c7d2012-04-24 22:59:44 +01004547 /* With MSI, interrupts are only generated when iir
4548 * transitions from zero to nonzero. If another bit got
4549 * set while we were handling the existing iir bits, then
4550 * we would never get another interrupt.
4551 *
4552 * This is fine on non-MSI as well, as if we hit this path
4553 * we avoid exiting the interrupt handler only to generate
4554 * another one.
4555 *
4556 * Note that for MSI this could cause a stray interrupt report
4557 * if an interrupt landed in the time between writing IIR and
4558 * the posting read. This should be rare enough to never
4559 * trigger the 99% of 100,000 interrupts test for disabling
4560 * stray interrupts.
4561 */
4562 iir = new_iir;
4563 }
4564
Daniel Vetterd05c6172012-04-26 23:28:09 +02004565 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01004566
Chris Wilsona266c7d2012-04-24 22:59:44 +01004567 return ret;
4568}
4569
4570static void i965_irq_uninstall(struct drm_device * dev)
4571{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004572 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004573 int pipe;
4574
4575 if (!dev_priv)
4576 return;
4577
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004578 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004579
Chris Wilsonadca4732012-05-11 18:01:31 +01004580 I915_WRITE(PORT_HOTPLUG_EN, 0);
4581 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004582
4583 I915_WRITE(HWSTAM, 0xffffffff);
4584 for_each_pipe(pipe)
4585 I915_WRITE(PIPESTAT(pipe), 0);
4586 I915_WRITE(IMR, 0xffffffff);
4587 I915_WRITE(IER, 0x0);
4588
4589 for_each_pipe(pipe)
4590 I915_WRITE(PIPESTAT(pipe),
4591 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4592 I915_WRITE(IIR, I915_READ(IIR));
4593}
4594
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004595static void intel_hpd_irq_reenable(unsigned long data)
Egbert Eichac4c16c2013-04-16 13:36:58 +02004596{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004597 struct drm_i915_private *dev_priv = (struct drm_i915_private *)data;
Egbert Eichac4c16c2013-04-16 13:36:58 +02004598 struct drm_device *dev = dev_priv->dev;
4599 struct drm_mode_config *mode_config = &dev->mode_config;
4600 unsigned long irqflags;
4601 int i;
4602
4603 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4604 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
4605 struct drm_connector *connector;
4606
4607 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
4608 continue;
4609
4610 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4611
4612 list_for_each_entry(connector, &mode_config->connector_list, head) {
4613 struct intel_connector *intel_connector = to_intel_connector(connector);
4614
4615 if (intel_connector->encoder->hpd_pin == i) {
4616 if (connector->polled != intel_connector->polled)
4617 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004618 connector->name);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004619 connector->polled = intel_connector->polled;
4620 if (!connector->polled)
4621 connector->polled = DRM_CONNECTOR_POLL_HPD;
4622 }
4623 }
4624 }
4625 if (dev_priv->display.hpd_irq_setup)
4626 dev_priv->display.hpd_irq_setup(dev);
4627 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4628}
4629
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004630void intel_irq_init(struct drm_device *dev)
4631{
Chris Wilson8b2e3262012-04-24 22:59:41 +01004632 struct drm_i915_private *dev_priv = dev->dev_private;
4633
4634 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Dave Airlie13cf5502014-06-18 11:29:35 +10004635 INIT_WORK(&dev_priv->dig_port_work, i915_digport_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01004636 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004637 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004638 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004639
Deepak Sa6706b42014-03-15 20:23:22 +05304640 /* Let's track the enabled rps events */
Deepak S31685c22014-07-03 17:33:01 -04004641 if (IS_VALLEYVIEW(dev))
4642 /* WaGsvRC0ResidenncyMethod:VLV */
4643 dev_priv->pm_rps_events = GEN6_PM_RP_UP_EI_EXPIRED;
4644 else
4645 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
Deepak Sa6706b42014-03-15 20:23:22 +05304646
Daniel Vetter99584db2012-11-14 17:14:04 +01004647 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
4648 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01004649 (unsigned long) dev);
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004650 setup_timer(&dev_priv->hotplug_reenable_timer, intel_hpd_irq_reenable,
Egbert Eichac4c16c2013-04-16 13:36:58 +02004651 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01004652
Tomas Janousek97a19a22012-12-08 13:48:13 +01004653 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004654
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004655 if (IS_GEN2(dev)) {
4656 dev->max_vblank_count = 0;
4657 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
4658 } else if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004659 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
4660 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004661 } else {
4662 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4663 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004664 }
4665
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004666 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Keith Packardc3613de2011-08-12 17:05:54 -07004667 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004668 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
4669 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004670
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004671 if (IS_CHERRYVIEW(dev)) {
4672 dev->driver->irq_handler = cherryview_irq_handler;
4673 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4674 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4675 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4676 dev->driver->enable_vblank = valleyview_enable_vblank;
4677 dev->driver->disable_vblank = valleyview_disable_vblank;
4678 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
4679 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004680 dev->driver->irq_handler = valleyview_irq_handler;
4681 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4682 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4683 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4684 dev->driver->enable_vblank = valleyview_enable_vblank;
4685 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004686 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004687 } else if (IS_GEN8(dev)) {
4688 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004689 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004690 dev->driver->irq_postinstall = gen8_irq_postinstall;
4691 dev->driver->irq_uninstall = gen8_irq_uninstall;
4692 dev->driver->enable_vblank = gen8_enable_vblank;
4693 dev->driver->disable_vblank = gen8_disable_vblank;
4694 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004695 } else if (HAS_PCH_SPLIT(dev)) {
4696 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004697 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004698 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4699 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4700 dev->driver->enable_vblank = ironlake_enable_vblank;
4701 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01004702 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004703 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004704 if (INTEL_INFO(dev)->gen == 2) {
4705 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4706 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4707 dev->driver->irq_handler = i8xx_irq_handler;
4708 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004709 } else if (INTEL_INFO(dev)->gen == 3) {
4710 dev->driver->irq_preinstall = i915_irq_preinstall;
4711 dev->driver->irq_postinstall = i915_irq_postinstall;
4712 dev->driver->irq_uninstall = i915_irq_uninstall;
4713 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004714 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004715 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004716 dev->driver->irq_preinstall = i965_irq_preinstall;
4717 dev->driver->irq_postinstall = i965_irq_postinstall;
4718 dev->driver->irq_uninstall = i965_irq_uninstall;
4719 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05004720 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004721 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004722 dev->driver->enable_vblank = i915_enable_vblank;
4723 dev->driver->disable_vblank = i915_disable_vblank;
4724 }
4725}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004726
4727void intel_hpd_init(struct drm_device *dev)
4728{
4729 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02004730 struct drm_mode_config *mode_config = &dev->mode_config;
4731 struct drm_connector *connector;
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004732 unsigned long irqflags;
Egbert Eich821450c2013-04-16 13:36:55 +02004733 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004734
Egbert Eich821450c2013-04-16 13:36:55 +02004735 for (i = 1; i < HPD_NUM_PINS; i++) {
4736 dev_priv->hpd_stats[i].hpd_cnt = 0;
4737 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4738 }
4739 list_for_each_entry(connector, &mode_config->connector_list, head) {
4740 struct intel_connector *intel_connector = to_intel_connector(connector);
4741 connector->polled = intel_connector->polled;
Dave Airlie0e32b392014-05-02 14:02:48 +10004742 if (connector->encoder && !connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
4743 connector->polled = DRM_CONNECTOR_POLL_HPD;
4744 if (intel_connector->mst_port)
Egbert Eich821450c2013-04-16 13:36:55 +02004745 connector->polled = DRM_CONNECTOR_POLL_HPD;
4746 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004747
4748 /* Interrupt setup is already guaranteed to be single-threaded, this is
4749 * just to make the assert_spin_locked checks happy. */
4750 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004751 if (dev_priv->display.hpd_irq_setup)
4752 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004753 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004754}
Paulo Zanonic67a4702013-08-19 13:18:09 -03004755
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004756/* Disable interrupts so we can allow runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004757void intel_runtime_pm_disable_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004758{
4759 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004760
Paulo Zanoni730488b2014-03-07 20:12:32 -03004761 dev->driver->irq_uninstall(dev);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004762 dev_priv->pm.irqs_disabled = true;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004763}
4764
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004765/* Restore interrupts so we can recover from runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004766void intel_runtime_pm_restore_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004767{
4768 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004769
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004770 dev_priv->pm.irqs_disabled = false;
Paulo Zanoni730488b2014-03-07 20:12:32 -03004771 dev->driver->irq_preinstall(dev);
4772 dev->driver->irq_postinstall(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004773}