blob: 218ef085cf7339f24197b73024901fa3e109e351 [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)
881{
882 struct drm_device *dev = crtc->base.dev;
883 struct drm_i915_private *dev_priv = dev->dev_private;
884 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äa225f072014-04-29 13:35:45 +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;
891
892 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äa225f072014-04-29 13:35:45 +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
Jesse Barnes5ca58282009-03-31 14:11:15 -07001093/*
1094 * Handle hotplug events outside the interrupt handler proper.
1095 */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001096#define I915_REENABLE_HOTPLUG_DELAY (2*60*1000)
1097
Jesse Barnes5ca58282009-03-31 14:11:15 -07001098static void i915_hotplug_work_func(struct work_struct *work)
1099{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001100 struct drm_i915_private *dev_priv =
1101 container_of(work, struct drm_i915_private, hotplug_work);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001102 struct drm_device *dev = dev_priv->dev;
Keith Packardc31c4ba2009-05-06 11:48:58 -07001103 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001104 struct intel_connector *intel_connector;
1105 struct intel_encoder *intel_encoder;
1106 struct drm_connector *connector;
1107 unsigned long irqflags;
1108 bool hpd_disabled = false;
Egbert Eich321a1b32013-04-11 16:00:26 +02001109 bool changed = false;
Egbert Eich142e2392013-04-11 15:57:57 +02001110 u32 hpd_event_bits;
Jesse Barnes5ca58282009-03-31 14:11:15 -07001111
Daniel Vetter52d7ece2012-12-01 21:03:22 +01001112 /* HPD irq before everything is fully set up. */
1113 if (!dev_priv->enable_hotplug_processing)
1114 return;
1115
Keith Packarda65e34c2011-07-25 10:04:56 -07001116 mutex_lock(&mode_config->mutex);
Jesse Barnese67189ab2011-02-11 14:44:51 -08001117 DRM_DEBUG_KMS("running encoder hotplug functions\n");
1118
Egbert Eichcd569ae2013-04-16 13:36:57 +02001119 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Egbert Eich142e2392013-04-11 15:57:57 +02001120
1121 hpd_event_bits = dev_priv->hpd_event_bits;
1122 dev_priv->hpd_event_bits = 0;
Egbert Eichcd569ae2013-04-16 13:36:57 +02001123 list_for_each_entry(connector, &mode_config->connector_list, head) {
1124 intel_connector = to_intel_connector(connector);
1125 intel_encoder = intel_connector->encoder;
1126 if (intel_encoder->hpd_pin > HPD_NONE &&
1127 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_MARK_DISABLED &&
1128 connector->polled == DRM_CONNECTOR_POLL_HPD) {
1129 DRM_INFO("HPD interrupt storm detected on connector %s: "
1130 "switching from hotplug detection to polling\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001131 connector->name);
Egbert Eichcd569ae2013-04-16 13:36:57 +02001132 dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark = HPD_DISABLED;
1133 connector->polled = DRM_CONNECTOR_POLL_CONNECT
1134 | DRM_CONNECTOR_POLL_DISCONNECT;
1135 hpd_disabled = true;
1136 }
Egbert Eich142e2392013-04-11 15:57:57 +02001137 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1138 DRM_DEBUG_KMS("Connector %s (pin %i) received hotplug event.\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03001139 connector->name, intel_encoder->hpd_pin);
Egbert Eich142e2392013-04-11 15:57:57 +02001140 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001141 }
1142 /* if there were no outputs to poll, poll was disabled,
1143 * therefore make sure it's enabled when disabling HPD on
1144 * some connectors */
Egbert Eichac4c16c2013-04-16 13:36:58 +02001145 if (hpd_disabled) {
Egbert Eichcd569ae2013-04-16 13:36:57 +02001146 drm_kms_helper_poll_enable(dev);
Egbert Eichac4c16c2013-04-16 13:36:58 +02001147 mod_timer(&dev_priv->hotplug_reenable_timer,
1148 jiffies + msecs_to_jiffies(I915_REENABLE_HOTPLUG_DELAY));
1149 }
Egbert Eichcd569ae2013-04-16 13:36:57 +02001150
1151 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
1152
Egbert Eich321a1b32013-04-11 16:00:26 +02001153 list_for_each_entry(connector, &mode_config->connector_list, head) {
1154 intel_connector = to_intel_connector(connector);
1155 intel_encoder = intel_connector->encoder;
1156 if (hpd_event_bits & (1 << intel_encoder->hpd_pin)) {
1157 if (intel_encoder->hot_plug)
1158 intel_encoder->hot_plug(intel_encoder);
1159 if (intel_hpd_irq_event(dev, connector))
1160 changed = true;
1161 }
1162 }
Keith Packard40ee3382011-07-28 15:31:19 -07001163 mutex_unlock(&mode_config->mutex);
1164
Egbert Eich321a1b32013-04-11 16:00:26 +02001165 if (changed)
1166 drm_kms_helper_hotplug_event(dev);
Jesse Barnes5ca58282009-03-31 14:11:15 -07001167}
1168
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02001169static void intel_hpd_irq_uninstall(struct drm_i915_private *dev_priv)
1170{
1171 del_timer_sync(&dev_priv->hotplug_reenable_timer);
1172}
1173
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001174static void ironlake_rps_change_irq_handler(struct drm_device *dev)
Jesse Barnesf97108d2010-01-29 11:27:07 -08001175{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001176 struct drm_i915_private *dev_priv = dev->dev_private;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001177 u32 busy_up, busy_down, max_avg, min_avg;
Daniel Vetter92703882012-08-09 16:46:01 +02001178 u8 new_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001179
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001180 spin_lock(&mchdev_lock);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001181
Daniel Vetter73edd18f2012-08-08 23:35:37 +02001182 I915_WRITE16(MEMINTRSTS, I915_READ(MEMINTRSTS));
1183
Daniel Vetter20e4d402012-08-08 23:35:39 +02001184 new_delay = dev_priv->ips.cur_delay;
Daniel Vetter92703882012-08-09 16:46:01 +02001185
Jesse Barnes7648fa92010-05-20 14:28:11 -07001186 I915_WRITE16(MEMINTRSTS, MEMINT_EVAL_CHG);
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001187 busy_up = I915_READ(RCPREVBSYTUPAVG);
1188 busy_down = I915_READ(RCPREVBSYTDNAVG);
Jesse Barnesf97108d2010-01-29 11:27:07 -08001189 max_avg = I915_READ(RCBMAXAVG);
1190 min_avg = I915_READ(RCBMINAVG);
1191
1192 /* Handle RCS change request from hw */
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001193 if (busy_up > max_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001194 if (dev_priv->ips.cur_delay != dev_priv->ips.max_delay)
1195 new_delay = dev_priv->ips.cur_delay - 1;
1196 if (new_delay < dev_priv->ips.max_delay)
1197 new_delay = dev_priv->ips.max_delay;
Matthew Garrettb5b72e82010-02-02 18:30:47 +00001198 } else if (busy_down < min_avg) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02001199 if (dev_priv->ips.cur_delay != dev_priv->ips.min_delay)
1200 new_delay = dev_priv->ips.cur_delay + 1;
1201 if (new_delay > dev_priv->ips.min_delay)
1202 new_delay = dev_priv->ips.min_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001203 }
1204
Jesse Barnes7648fa92010-05-20 14:28:11 -07001205 if (ironlake_set_drps(dev, new_delay))
Daniel Vetter20e4d402012-08-08 23:35:39 +02001206 dev_priv->ips.cur_delay = new_delay;
Jesse Barnesf97108d2010-01-29 11:27:07 -08001207
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001208 spin_unlock(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02001209
Jesse Barnesf97108d2010-01-29 11:27:07 -08001210 return;
1211}
1212
Chris Wilson549f7362010-10-19 11:19:32 +01001213static void notify_ring(struct drm_device *dev,
Oscar Mateoa4872ba2014-05-22 14:13:33 +01001214 struct intel_engine_cs *ring)
Chris Wilson549f7362010-10-19 11:19:32 +01001215{
Oscar Mateo93b0a4e2014-05-22 14:13:36 +01001216 if (!intel_ring_initialized(ring))
Chris Wilson475553d2011-01-20 09:52:56 +00001217 return;
1218
Chris Wilson814e9b52013-09-23 17:33:19 -03001219 trace_i915_gem_request_complete(ring);
Chris Wilson9862e602011-01-04 22:22:17 +00001220
Chris Wilson549f7362010-10-19 11:19:32 +01001221 wake_up_all(&ring->irq_queue);
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03001222 i915_queue_hangcheck(dev);
Chris Wilson549f7362010-10-19 11:19:32 +01001223}
1224
Ben Widawsky4912d042011-04-25 11:25:20 -07001225static void gen6_pm_rps_work(struct work_struct *work)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001226{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001227 struct drm_i915_private *dev_priv =
1228 container_of(work, struct drm_i915_private, rps.work);
Paulo Zanoniedbfdb42013-08-06 18:57:13 -03001229 u32 pm_iir;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001230 int new_delay, adj;
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001231
Daniel Vetter59cdb632013-07-04 23:35:28 +02001232 spin_lock_irq(&dev_priv->irq_lock);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02001233 pm_iir = dev_priv->rps.pm_iir;
1234 dev_priv->rps.pm_iir = 0;
Ben Widawsky09610212014-05-15 20:58:08 +03001235 if (IS_BROADWELL(dev_priv->dev))
1236 bdw_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
1237 else {
1238 /* Make sure not to corrupt PMIMR state used by ringbuffer */
1239 snb_enable_pm_irq(dev_priv, dev_priv->pm_rps_events);
1240 }
Daniel Vetter59cdb632013-07-04 23:35:28 +02001241 spin_unlock_irq(&dev_priv->irq_lock);
Ben Widawsky4912d042011-04-25 11:25:20 -07001242
Paulo Zanoni60611c12013-08-15 11:50:01 -03001243 /* Make sure we didn't queue anything we're not going to process. */
Deepak Sa6706b42014-03-15 20:23:22 +05301244 WARN_ON(pm_iir & ~dev_priv->pm_rps_events);
Paulo Zanoni60611c12013-08-15 11:50:01 -03001245
Deepak Sa6706b42014-03-15 20:23:22 +05301246 if ((pm_iir & dev_priv->pm_rps_events) == 0)
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001247 return;
1248
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001249 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01001250
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001251 adj = dev_priv->rps.last_adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001252 if (pm_iir & GEN6_PM_RP_UP_THRESHOLD) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001253 if (adj > 0)
1254 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301255 else {
1256 /* CHV needs even encode values */
1257 adj = IS_CHERRYVIEW(dev_priv->dev) ? 2 : 1;
1258 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001259 new_delay = dev_priv->rps.cur_freq + adj;
Ville Syrjälä74250342013-06-25 21:38:11 +03001260
1261 /*
1262 * For better performance, jump directly
1263 * to RPe if we're below it.
1264 */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001265 if (new_delay < dev_priv->rps.efficient_freq)
1266 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001267 } else if (pm_iir & GEN6_PM_RP_DOWN_TIMEOUT) {
Ben Widawskyb39fb292014-03-19 18:31:11 -07001268 if (dev_priv->rps.cur_freq > dev_priv->rps.efficient_freq)
1269 new_delay = dev_priv->rps.efficient_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001270 else
Ben Widawskyb39fb292014-03-19 18:31:11 -07001271 new_delay = dev_priv->rps.min_freq_softlimit;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001272 adj = 0;
1273 } else if (pm_iir & GEN6_PM_RP_DOWN_THRESHOLD) {
1274 if (adj < 0)
1275 adj *= 2;
Deepak S13a56602014-05-23 21:00:21 +05301276 else {
1277 /* CHV needs even encode values */
1278 adj = IS_CHERRYVIEW(dev_priv->dev) ? -2 : -1;
1279 }
Ben Widawskyb39fb292014-03-19 18:31:11 -07001280 new_delay = dev_priv->rps.cur_freq + adj;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001281 } else { /* unknown event */
Ben Widawskyb39fb292014-03-19 18:31:11 -07001282 new_delay = dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001283 }
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001284
Ben Widawsky79249632012-09-07 19:43:42 -07001285 /* sysfs frequency interfaces may have snuck in while servicing the
1286 * interrupt
1287 */
Ville Syrjälä1272e7b2013-11-07 19:57:49 +02001288 new_delay = clamp_t(int, new_delay,
Ben Widawskyb39fb292014-03-19 18:31:11 -07001289 dev_priv->rps.min_freq_softlimit,
1290 dev_priv->rps.max_freq_softlimit);
Deepak S27544362014-01-27 21:35:05 +05301291
Ben Widawskyb39fb292014-03-19 18:31:11 -07001292 dev_priv->rps.last_adj = new_delay - dev_priv->rps.cur_freq;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01001293
1294 if (IS_VALLEYVIEW(dev_priv->dev))
1295 valleyview_set_rps(dev_priv->dev, new_delay);
1296 else
1297 gen6_set_rps(dev_priv->dev, new_delay);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001298
Jesse Barnes4fc688c2012-11-02 11:14:01 -07001299 mutex_unlock(&dev_priv->rps.hw_lock);
Jesse Barnes3b8d8d92010-12-17 14:19:02 -08001300}
1301
Ben Widawskye3689192012-05-25 16:56:22 -07001302
1303/**
1304 * ivybridge_parity_work - Workqueue called when a parity error interrupt
1305 * occurred.
1306 * @work: workqueue struct
1307 *
1308 * Doesn't actually do anything except notify userspace. As a consequence of
1309 * this event, userspace should try to remap the bad rows since statistically
1310 * it is likely the same row is more likely to go bad again.
1311 */
1312static void ivybridge_parity_work(struct work_struct *work)
1313{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001314 struct drm_i915_private *dev_priv =
1315 container_of(work, struct drm_i915_private, l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001316 u32 error_status, row, bank, subbank;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001317 char *parity_event[6];
Ben Widawskye3689192012-05-25 16:56:22 -07001318 uint32_t misccpctl;
1319 unsigned long flags;
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001320 uint8_t slice = 0;
Ben Widawskye3689192012-05-25 16:56:22 -07001321
1322 /* We must turn off DOP level clock gating to access the L3 registers.
1323 * In order to prevent a get/put style interface, acquire struct mutex
1324 * any time we access those registers.
1325 */
1326 mutex_lock(&dev_priv->dev->struct_mutex);
1327
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001328 /* If we've screwed up tracking, just let the interrupt fire again */
1329 if (WARN_ON(!dev_priv->l3_parity.which_slice))
1330 goto out;
1331
Ben Widawskye3689192012-05-25 16:56:22 -07001332 misccpctl = I915_READ(GEN7_MISCCPCTL);
1333 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
1334 POSTING_READ(GEN7_MISCCPCTL);
1335
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001336 while ((slice = ffs(dev_priv->l3_parity.which_slice)) != 0) {
1337 u32 reg;
Ben Widawskye3689192012-05-25 16:56:22 -07001338
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001339 slice--;
1340 if (WARN_ON_ONCE(slice >= NUM_L3_SLICES(dev_priv->dev)))
1341 break;
1342
1343 dev_priv->l3_parity.which_slice &= ~(1<<slice);
1344
1345 reg = GEN7_L3CDERRST1 + (slice * 0x200);
1346
1347 error_status = I915_READ(reg);
1348 row = GEN7_PARITY_ERROR_ROW(error_status);
1349 bank = GEN7_PARITY_ERROR_BANK(error_status);
1350 subbank = GEN7_PARITY_ERROR_SUBBANK(error_status);
1351
1352 I915_WRITE(reg, GEN7_PARITY_ERROR_VALID | GEN7_L3CDERRST1_ENABLE);
1353 POSTING_READ(reg);
1354
1355 parity_event[0] = I915_L3_PARITY_UEVENT "=1";
1356 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
1357 parity_event[2] = kasprintf(GFP_KERNEL, "BANK=%d", bank);
1358 parity_event[3] = kasprintf(GFP_KERNEL, "SUBBANK=%d", subbank);
1359 parity_event[4] = kasprintf(GFP_KERNEL, "SLICE=%d", slice);
1360 parity_event[5] = NULL;
1361
Dave Airlie5bdebb12013-10-11 14:07:25 +10001362 kobject_uevent_env(&dev_priv->dev->primary->kdev->kobj,
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001363 KOBJ_CHANGE, parity_event);
1364
1365 DRM_DEBUG("Parity error: Slice = %d, Row = %d, Bank = %d, Sub bank = %d.\n",
1366 slice, row, bank, subbank);
1367
1368 kfree(parity_event[4]);
1369 kfree(parity_event[3]);
1370 kfree(parity_event[2]);
1371 kfree(parity_event[1]);
1372 }
Ben Widawskye3689192012-05-25 16:56:22 -07001373
1374 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
1375
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001376out:
1377 WARN_ON(dev_priv->l3_parity.which_slice);
Ben Widawskye3689192012-05-25 16:56:22 -07001378 spin_lock_irqsave(&dev_priv->irq_lock, flags);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001379 ilk_enable_gt_irq(dev_priv, GT_PARITY_ERROR(dev_priv->dev));
Ben Widawskye3689192012-05-25 16:56:22 -07001380 spin_unlock_irqrestore(&dev_priv->irq_lock, flags);
1381
1382 mutex_unlock(&dev_priv->dev->struct_mutex);
Ben Widawskye3689192012-05-25 16:56:22 -07001383}
1384
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001385static void ivybridge_parity_error_irq_handler(struct drm_device *dev, u32 iir)
Ben Widawskye3689192012-05-25 16:56:22 -07001386{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001387 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskye3689192012-05-25 16:56:22 -07001388
Ben Widawsky040d2ba2013-09-19 11:01:40 -07001389 if (!HAS_L3_DPF(dev))
Ben Widawskye3689192012-05-25 16:56:22 -07001390 return;
1391
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001392 spin_lock(&dev_priv->irq_lock);
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001393 ilk_disable_gt_irq(dev_priv, GT_PARITY_ERROR(dev));
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001394 spin_unlock(&dev_priv->irq_lock);
Ben Widawskye3689192012-05-25 16:56:22 -07001395
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001396 iir &= GT_PARITY_ERROR(dev);
1397 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT_S1)
1398 dev_priv->l3_parity.which_slice |= 1 << 1;
1399
1400 if (iir & GT_RENDER_L3_PARITY_ERROR_INTERRUPT)
1401 dev_priv->l3_parity.which_slice |= 1 << 0;
1402
Daniel Vettera4da4fa2012-11-02 19:55:07 +01001403 queue_work(dev_priv->wq, &dev_priv->l3_parity.error_work);
Ben Widawskye3689192012-05-25 16:56:22 -07001404}
1405
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03001406static void ilk_gt_irq_handler(struct drm_device *dev,
1407 struct drm_i915_private *dev_priv,
1408 u32 gt_iir)
1409{
1410 if (gt_iir &
1411 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
1412 notify_ring(dev, &dev_priv->ring[RCS]);
1413 if (gt_iir & ILK_BSD_USER_INTERRUPT)
1414 notify_ring(dev, &dev_priv->ring[VCS]);
1415}
1416
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001417static void snb_gt_irq_handler(struct drm_device *dev,
1418 struct drm_i915_private *dev_priv,
1419 u32 gt_iir)
1420{
1421
Ben Widawskycc609d52013-05-28 19:22:29 -07001422 if (gt_iir &
1423 (GT_RENDER_USER_INTERRUPT | GT_RENDER_PIPECTL_NOTIFY_INTERRUPT))
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001424 notify_ring(dev, &dev_priv->ring[RCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001425 if (gt_iir & GT_BSD_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001426 notify_ring(dev, &dev_priv->ring[VCS]);
Ben Widawskycc609d52013-05-28 19:22:29 -07001427 if (gt_iir & GT_BLT_USER_INTERRUPT)
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001428 notify_ring(dev, &dev_priv->ring[BCS]);
1429
Ben Widawskycc609d52013-05-28 19:22:29 -07001430 if (gt_iir & (GT_BLT_CS_ERROR_INTERRUPT |
1431 GT_BSD_CS_ERROR_INTERRUPT |
1432 GT_RENDER_CS_MASTER_ERROR_INTERRUPT)) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001433 i915_handle_error(dev, false, "GT error interrupt 0x%08x",
1434 gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001435 }
Ben Widawskye3689192012-05-25 16:56:22 -07001436
Ben Widawsky35a85ac2013-09-19 11:13:41 -07001437 if (gt_iir & GT_PARITY_ERROR(dev))
1438 ivybridge_parity_error_irq_handler(dev, gt_iir);
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001439}
1440
Ben Widawsky09610212014-05-15 20:58:08 +03001441static void gen8_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
1442{
1443 if ((pm_iir & dev_priv->pm_rps_events) == 0)
1444 return;
1445
1446 spin_lock(&dev_priv->irq_lock);
1447 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
1448 bdw_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
1449 spin_unlock(&dev_priv->irq_lock);
1450
1451 queue_work(dev_priv->wq, &dev_priv->rps.work);
1452}
1453
Ben Widawskyabd58f02013-11-02 21:07:09 -07001454static irqreturn_t gen8_gt_irq_handler(struct drm_device *dev,
1455 struct drm_i915_private *dev_priv,
1456 u32 master_ctl)
1457{
1458 u32 rcs, bcs, vcs;
1459 uint32_t tmp = 0;
1460 irqreturn_t ret = IRQ_NONE;
1461
1462 if (master_ctl & (GEN8_GT_RCS_IRQ | GEN8_GT_BCS_IRQ)) {
1463 tmp = I915_READ(GEN8_GT_IIR(0));
1464 if (tmp) {
1465 ret = IRQ_HANDLED;
1466 rcs = tmp >> GEN8_RCS_IRQ_SHIFT;
1467 bcs = tmp >> GEN8_BCS_IRQ_SHIFT;
1468 if (rcs & GT_RENDER_USER_INTERRUPT)
1469 notify_ring(dev, &dev_priv->ring[RCS]);
1470 if (bcs & GT_RENDER_USER_INTERRUPT)
1471 notify_ring(dev, &dev_priv->ring[BCS]);
1472 I915_WRITE(GEN8_GT_IIR(0), tmp);
1473 } else
1474 DRM_ERROR("The master control interrupt lied (GT0)!\n");
1475 }
1476
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001477 if (master_ctl & (GEN8_GT_VCS1_IRQ | GEN8_GT_VCS2_IRQ)) {
Ben Widawskyabd58f02013-11-02 21:07:09 -07001478 tmp = I915_READ(GEN8_GT_IIR(1));
1479 if (tmp) {
1480 ret = IRQ_HANDLED;
1481 vcs = tmp >> GEN8_VCS1_IRQ_SHIFT;
1482 if (vcs & GT_RENDER_USER_INTERRUPT)
1483 notify_ring(dev, &dev_priv->ring[VCS]);
Zhao Yakui85f9b5f2014-04-17 10:37:38 +08001484 vcs = tmp >> GEN8_VCS2_IRQ_SHIFT;
1485 if (vcs & GT_RENDER_USER_INTERRUPT)
1486 notify_ring(dev, &dev_priv->ring[VCS2]);
Ben Widawskyabd58f02013-11-02 21:07:09 -07001487 I915_WRITE(GEN8_GT_IIR(1), tmp);
1488 } else
1489 DRM_ERROR("The master control interrupt lied (GT1)!\n");
1490 }
1491
Ben Widawsky09610212014-05-15 20:58:08 +03001492 if (master_ctl & GEN8_GT_PM_IRQ) {
1493 tmp = I915_READ(GEN8_GT_IIR(2));
1494 if (tmp & dev_priv->pm_rps_events) {
1495 ret = IRQ_HANDLED;
1496 gen8_rps_irq_handler(dev_priv, tmp);
1497 I915_WRITE(GEN8_GT_IIR(2),
1498 tmp & dev_priv->pm_rps_events);
1499 } else
1500 DRM_ERROR("The master control interrupt lied (PM)!\n");
1501 }
1502
Ben Widawskyabd58f02013-11-02 21:07:09 -07001503 if (master_ctl & GEN8_GT_VECS_IRQ) {
1504 tmp = I915_READ(GEN8_GT_IIR(3));
1505 if (tmp) {
1506 ret = IRQ_HANDLED;
1507 vcs = tmp >> GEN8_VECS_IRQ_SHIFT;
1508 if (vcs & GT_RENDER_USER_INTERRUPT)
1509 notify_ring(dev, &dev_priv->ring[VECS]);
1510 I915_WRITE(GEN8_GT_IIR(3), tmp);
1511 } else
1512 DRM_ERROR("The master control interrupt lied (GT3)!\n");
1513 }
1514
1515 return ret;
1516}
1517
Egbert Eichb543fb02013-04-16 13:36:54 +02001518#define HPD_STORM_DETECT_PERIOD 1000
1519#define HPD_STORM_THRESHOLD 5
1520
Daniel Vetter10a504d2013-06-27 17:52:12 +02001521static inline void intel_hpd_irq_handler(struct drm_device *dev,
Daniel Vetter22062db2013-06-27 17:52:11 +02001522 u32 hotplug_trigger,
1523 const u32 *hpd)
Egbert Eichb543fb02013-04-16 13:36:54 +02001524{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001525 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eichb543fb02013-04-16 13:36:54 +02001526 int i;
Daniel Vetter10a504d2013-06-27 17:52:12 +02001527 bool storm_detected = false;
Egbert Eichb543fb02013-04-16 13:36:54 +02001528
Daniel Vetter91d131d2013-06-27 17:52:14 +02001529 if (!hotplug_trigger)
1530 return;
1531
Imre Deakcc9bd492014-01-16 19:56:54 +02001532 DRM_DEBUG_DRIVER("hotplug event received, stat 0x%08x\n",
1533 hotplug_trigger);
1534
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001535 spin_lock(&dev_priv->irq_lock);
Egbert Eichb543fb02013-04-16 13:36:54 +02001536 for (i = 1; i < HPD_NUM_PINS; i++) {
Egbert Eich821450c2013-04-16 13:36:55 +02001537
Daniel Vetter3ff04a162014-04-24 12:03:17 +02001538 if (hpd[i] & hotplug_trigger &&
1539 dev_priv->hpd_stats[i].hpd_mark == HPD_DISABLED) {
1540 /*
1541 * On GMCH platforms the interrupt mask bits only
1542 * prevent irq generation, not the setting of the
1543 * hotplug bits itself. So only WARN about unexpected
1544 * interrupts on saner platforms.
1545 */
1546 WARN_ONCE(INTEL_INFO(dev)->gen >= 5 && !IS_VALLEYVIEW(dev),
1547 "Received HPD interrupt (0x%08x) on pin %d (0x%08x) although disabled\n",
1548 hotplug_trigger, i, hpd[i]);
1549
1550 continue;
1551 }
Egbert Eichb8f102e2013-07-26 14:14:24 +02001552
Egbert Eichb543fb02013-04-16 13:36:54 +02001553 if (!(hpd[i] & hotplug_trigger) ||
1554 dev_priv->hpd_stats[i].hpd_mark != HPD_ENABLED)
1555 continue;
1556
Jani Nikulabc5ead8c2013-05-07 15:10:29 +03001557 dev_priv->hpd_event_bits |= (1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001558 if (!time_in_range(jiffies, dev_priv->hpd_stats[i].hpd_last_jiffies,
1559 dev_priv->hpd_stats[i].hpd_last_jiffies
1560 + msecs_to_jiffies(HPD_STORM_DETECT_PERIOD))) {
1561 dev_priv->hpd_stats[i].hpd_last_jiffies = jiffies;
1562 dev_priv->hpd_stats[i].hpd_cnt = 0;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001563 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: 0\n", i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001564 } else if (dev_priv->hpd_stats[i].hpd_cnt > HPD_STORM_THRESHOLD) {
1565 dev_priv->hpd_stats[i].hpd_mark = HPD_MARK_DISABLED;
Egbert Eich142e2392013-04-11 15:57:57 +02001566 dev_priv->hpd_event_bits &= ~(1 << i);
Egbert Eichb543fb02013-04-16 13:36:54 +02001567 DRM_DEBUG_KMS("HPD interrupt storm detected on PIN %d\n", i);
Daniel Vetter10a504d2013-06-27 17:52:12 +02001568 storm_detected = true;
Egbert Eichb543fb02013-04-16 13:36:54 +02001569 } else {
1570 dev_priv->hpd_stats[i].hpd_cnt++;
Egbert Eichb8f102e2013-07-26 14:14:24 +02001571 DRM_DEBUG_KMS("Received HPD interrupt on PIN %d - cnt: %d\n", i,
1572 dev_priv->hpd_stats[i].hpd_cnt);
Egbert Eichb543fb02013-04-16 13:36:54 +02001573 }
1574 }
1575
Daniel Vetter10a504d2013-06-27 17:52:12 +02001576 if (storm_detected)
1577 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02001578 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter5876fa02013-06-27 17:52:13 +02001579
Daniel Vetter645416f2013-09-02 16:22:25 +02001580 /*
1581 * Our hotplug handler can grab modeset locks (by calling down into the
1582 * fb helpers). Hence it must not be run on our own dev-priv->wq work
1583 * queue for otherwise the flush_work in the pageflip code will
1584 * deadlock.
1585 */
1586 schedule_work(&dev_priv->hotplug_work);
Egbert Eichb543fb02013-04-16 13:36:54 +02001587}
1588
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001589static void gmbus_irq_handler(struct drm_device *dev)
1590{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001591 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter28c70f12012-12-01 13:53:45 +01001592
Daniel Vetter28c70f12012-12-01 13:53:45 +01001593 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001594}
1595
Daniel Vetterce99c252012-12-01 13:53:47 +01001596static void dp_aux_irq_handler(struct drm_device *dev)
1597{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001598 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001599
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01001600 wake_up_all(&dev_priv->gmbus_wait_queue);
Daniel Vetterce99c252012-12-01 13:53:47 +01001601}
1602
Shuang He8bf1e9f2013-10-15 18:55:27 +01001603#if defined(CONFIG_DEBUG_FS)
Daniel Vetter277de952013-10-18 16:37:07 +02001604static void display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1605 uint32_t crc0, uint32_t crc1,
1606 uint32_t crc2, uint32_t crc3,
1607 uint32_t crc4)
Shuang He8bf1e9f2013-10-15 18:55:27 +01001608{
1609 struct drm_i915_private *dev_priv = dev->dev_private;
1610 struct intel_pipe_crc *pipe_crc = &dev_priv->pipe_crc[pipe];
1611 struct intel_pipe_crc_entry *entry;
Damien Lespiauac2300d2013-10-15 18:55:30 +01001612 int head, tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001613
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001614 spin_lock(&pipe_crc->lock);
1615
Damien Lespiau0c912c72013-10-15 18:55:37 +01001616 if (!pipe_crc->entries) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001617 spin_unlock(&pipe_crc->lock);
Damien Lespiau0c912c72013-10-15 18:55:37 +01001618 DRM_ERROR("spurious interrupt\n");
1619 return;
1620 }
1621
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001622 head = pipe_crc->head;
1623 tail = pipe_crc->tail;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001624
1625 if (CIRC_SPACE(head, tail, INTEL_PIPE_CRC_ENTRIES_NR) < 1) {
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001626 spin_unlock(&pipe_crc->lock);
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001627 DRM_ERROR("CRC buffer overflowing\n");
1628 return;
1629 }
1630
1631 entry = &pipe_crc->entries[head];
Shuang He8bf1e9f2013-10-15 18:55:27 +01001632
Daniel Vetter8bc5e952013-10-16 22:55:49 +02001633 entry->frame = dev->driver->get_vblank_counter(dev, pipe);
Daniel Vettereba94eb2013-10-16 22:55:46 +02001634 entry->crc[0] = crc0;
1635 entry->crc[1] = crc1;
1636 entry->crc[2] = crc2;
1637 entry->crc[3] = crc3;
1638 entry->crc[4] = crc4;
Damien Lespiaub2c88f52013-10-15 18:55:29 +01001639
1640 head = (head + 1) & (INTEL_PIPE_CRC_ENTRIES_NR - 1);
Damien Lespiaud538bbd2013-10-21 14:29:30 +01001641 pipe_crc->head = head;
1642
1643 spin_unlock(&pipe_crc->lock);
Damien Lespiau07144422013-10-15 18:55:40 +01001644
1645 wake_up_interruptible(&pipe_crc->wq);
Shuang He8bf1e9f2013-10-15 18:55:27 +01001646}
Daniel Vetter277de952013-10-18 16:37:07 +02001647#else
1648static inline void
1649display_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe,
1650 uint32_t crc0, uint32_t crc1,
1651 uint32_t crc2, uint32_t crc3,
1652 uint32_t crc4) {}
1653#endif
Daniel Vettereba94eb2013-10-16 22:55:46 +02001654
Daniel Vetter277de952013-10-18 16:37:07 +02001655
1656static void hsw_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5a69b892013-10-16 22:55:52 +02001657{
1658 struct drm_i915_private *dev_priv = dev->dev_private;
1659
Daniel Vetter277de952013-10-18 16:37:07 +02001660 display_pipe_crc_irq_handler(dev, pipe,
1661 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1662 0, 0, 0, 0);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001663}
1664
Daniel Vetter277de952013-10-18 16:37:07 +02001665static void ivb_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vettereba94eb2013-10-16 22:55:46 +02001666{
1667 struct drm_i915_private *dev_priv = dev->dev_private;
1668
Daniel Vetter277de952013-10-18 16:37:07 +02001669 display_pipe_crc_irq_handler(dev, pipe,
1670 I915_READ(PIPE_CRC_RES_1_IVB(pipe)),
1671 I915_READ(PIPE_CRC_RES_2_IVB(pipe)),
1672 I915_READ(PIPE_CRC_RES_3_IVB(pipe)),
1673 I915_READ(PIPE_CRC_RES_4_IVB(pipe)),
1674 I915_READ(PIPE_CRC_RES_5_IVB(pipe)));
Daniel Vettereba94eb2013-10-16 22:55:46 +02001675}
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001676
Daniel Vetter277de952013-10-18 16:37:07 +02001677static void i9xx_pipe_crc_irq_handler(struct drm_device *dev, enum pipe pipe)
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001678{
1679 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter0b5c5ed2013-10-16 22:55:53 +02001680 uint32_t res1, res2;
1681
1682 if (INTEL_INFO(dev)->gen >= 3)
1683 res1 = I915_READ(PIPE_CRC_RES_RES1_I915(pipe));
1684 else
1685 res1 = 0;
1686
1687 if (INTEL_INFO(dev)->gen >= 5 || IS_G4X(dev))
1688 res2 = I915_READ(PIPE_CRC_RES_RES2_G4X(pipe));
1689 else
1690 res2 = 0;
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001691
Daniel Vetter277de952013-10-18 16:37:07 +02001692 display_pipe_crc_irq_handler(dev, pipe,
1693 I915_READ(PIPE_CRC_RES_RED(pipe)),
1694 I915_READ(PIPE_CRC_RES_GREEN(pipe)),
1695 I915_READ(PIPE_CRC_RES_BLUE(pipe)),
1696 res1, res2);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02001697}
Shuang He8bf1e9f2013-10-15 18:55:27 +01001698
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001699/* The RPS events need forcewake, so we add them to a work queue and mask their
1700 * IMR bits until the work is done. Other interrupts can be processed without
1701 * the work queue. */
1702static void gen6_rps_irq_handler(struct drm_i915_private *dev_priv, u32 pm_iir)
Ben Widawskybaf02a12013-05-28 19:22:24 -07001703{
Deepak Sa6706b42014-03-15 20:23:22 +05301704 if (pm_iir & dev_priv->pm_rps_events) {
Daniel Vetter59cdb632013-07-04 23:35:28 +02001705 spin_lock(&dev_priv->irq_lock);
Deepak Sa6706b42014-03-15 20:23:22 +05301706 dev_priv->rps.pm_iir |= pm_iir & dev_priv->pm_rps_events;
1707 snb_disable_pm_irq(dev_priv, pm_iir & dev_priv->pm_rps_events);
Daniel Vetter59cdb632013-07-04 23:35:28 +02001708 spin_unlock(&dev_priv->irq_lock);
Daniel Vetter2adbee62013-07-04 23:35:27 +02001709
1710 queue_work(dev_priv->wq, &dev_priv->rps.work);
Ben Widawskybaf02a12013-05-28 19:22:24 -07001711 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001712
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001713 if (HAS_VEBOX(dev_priv->dev)) {
1714 if (pm_iir & PM_VEBOX_USER_INTERRUPT)
1715 notify_ring(dev_priv->dev, &dev_priv->ring[VECS]);
Ben Widawsky12638c52013-05-28 19:22:31 -07001716
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001717 if (pm_iir & PM_VEBOX_CS_ERROR_INTERRUPT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02001718 i915_handle_error(dev_priv->dev, false,
1719 "VEBOX CS error interrupt 0x%08x",
1720 pm_iir);
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03001721 }
Ben Widawsky12638c52013-05-28 19:22:31 -07001722 }
Ben Widawskybaf02a12013-05-28 19:22:24 -07001723}
1724
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001725static bool intel_pipe_handle_vblank(struct drm_device *dev, enum pipe pipe)
1726{
1727 struct intel_crtc *crtc;
1728
1729 if (!drm_handle_vblank(dev, pipe))
1730 return false;
1731
1732 crtc = to_intel_crtc(intel_get_crtc_for_pipe(dev, pipe));
1733 wake_up(&crtc->vbl_wait);
1734
1735 return true;
1736}
1737
Imre Deakc1874ed2014-02-04 21:35:46 +02001738static void valleyview_pipestat_irq_handler(struct drm_device *dev, u32 iir)
1739{
1740 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deak91d181d2014-02-10 18:42:49 +02001741 u32 pipe_stats[I915_MAX_PIPES] = { };
Imre Deakc1874ed2014-02-04 21:35:46 +02001742 int pipe;
1743
Imre Deak58ead0d2014-02-04 21:35:47 +02001744 spin_lock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02001745 for_each_pipe(pipe) {
Imre Deak91d181d2014-02-10 18:42:49 +02001746 int reg;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001747 u32 mask, iir_bit = 0;
Imre Deak91d181d2014-02-10 18:42:49 +02001748
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001749 /*
1750 * PIPESTAT bits get signalled even when the interrupt is
1751 * disabled with the mask bits, and some of the status bits do
1752 * not generate interrupts at all (like the underrun bit). Hence
1753 * we need to be careful that we only handle what we want to
1754 * handle.
1755 */
1756 mask = 0;
1757 if (__cpu_fifo_underrun_reporting_enabled(dev, pipe))
1758 mask |= PIPE_FIFO_UNDERRUN_STATUS;
1759
1760 switch (pipe) {
1761 case PIPE_A:
1762 iir_bit = I915_DISPLAY_PIPE_A_EVENT_INTERRUPT;
1763 break;
1764 case PIPE_B:
1765 iir_bit = I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
1766 break;
Ville Syrjälä3278f672014-04-09 13:28:49 +03001767 case PIPE_C:
1768 iir_bit = I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
1769 break;
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001770 }
1771 if (iir & iir_bit)
1772 mask |= dev_priv->pipestat_irq_mask[pipe];
1773
1774 if (!mask)
Imre Deak91d181d2014-02-10 18:42:49 +02001775 continue;
1776
1777 reg = PIPESTAT(pipe);
Daniel Vetterbbb5eeb2014-02-12 17:55:36 +01001778 mask |= PIPESTAT_INT_ENABLE_MASK;
1779 pipe_stats[pipe] = I915_READ(reg) & mask;
Imre Deakc1874ed2014-02-04 21:35:46 +02001780
1781 /*
1782 * Clear the PIPE*STAT regs before the IIR
1783 */
Imre Deak91d181d2014-02-10 18:42:49 +02001784 if (pipe_stats[pipe] & (PIPE_FIFO_UNDERRUN_STATUS |
1785 PIPESTAT_INT_STATUS_MASK))
Imre Deakc1874ed2014-02-04 21:35:46 +02001786 I915_WRITE(reg, pipe_stats[pipe]);
1787 }
Imre Deak58ead0d2014-02-04 21:35:47 +02001788 spin_unlock(&dev_priv->irq_lock);
Imre Deakc1874ed2014-02-04 21:35:46 +02001789
1790 for_each_pipe(pipe) {
1791 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03001792 intel_pipe_handle_vblank(dev, pipe);
Imre Deakc1874ed2014-02-04 21:35:46 +02001793
Imre Deak579a9b02014-02-04 21:35:48 +02001794 if (pipe_stats[pipe] & PLANE_FLIP_DONE_INT_STATUS_VLV) {
Imre Deakc1874ed2014-02-04 21:35:46 +02001795 intel_prepare_page_flip(dev, pipe);
1796 intel_finish_page_flip(dev, pipe);
1797 }
1798
1799 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
1800 i9xx_pipe_crc_irq_handler(dev, pipe);
1801
1802 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
1803 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
1804 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
1805 }
1806
1807 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
1808 gmbus_irq_handler(dev);
1809}
1810
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001811static void i9xx_hpd_irq_handler(struct drm_device *dev)
1812{
1813 struct drm_i915_private *dev_priv = dev->dev_private;
1814 u32 hotplug_status = I915_READ(PORT_HOTPLUG_STAT);
1815
1816 if (IS_G4X(dev)) {
1817 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_G4X;
1818
1819 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_g4x);
1820 } else {
1821 u32 hotplug_trigger = hotplug_status & HOTPLUG_INT_STATUS_I915;
1822
1823 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_status_i915);
1824 }
1825
1826 if ((IS_G4X(dev) || IS_VALLEYVIEW(dev)) &&
1827 hotplug_status & DP_AUX_CHANNEL_MASK_INT_STATUS_G4X)
1828 dp_aux_irq_handler(dev);
1829
1830 I915_WRITE(PORT_HOTPLUG_STAT, hotplug_status);
1831 /*
1832 * Make sure hotplug status is cleared before we clear IIR, or else we
1833 * may miss hotplug events.
1834 */
1835 POSTING_READ(PORT_HOTPLUG_STAT);
1836}
1837
Daniel Vetterff1f5252012-10-02 15:10:55 +02001838static irqreturn_t valleyview_irq_handler(int irq, void *arg)
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001839{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001840 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03001841 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001842 u32 iir, gt_iir, pm_iir;
1843 irqreturn_t ret = IRQ_NONE;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001844
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001845 while (true) {
1846 iir = I915_READ(VLV_IIR);
1847 gt_iir = I915_READ(GTIIR);
1848 pm_iir = I915_READ(GEN6_PMIIR);
1849
1850 if (gt_iir == 0 && pm_iir == 0 && iir == 0)
1851 goto out;
1852
1853 ret = IRQ_HANDLED;
1854
Daniel Vettere7b4c6b2012-03-30 20:24:35 +02001855 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001856
Imre Deakc1874ed2014-02-04 21:35:46 +02001857 valleyview_pipestat_irq_handler(dev, iir);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07001858
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001859 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03001860 if (iir & I915_DISPLAY_PORT_INTERRUPT)
1861 i9xx_hpd_irq_handler(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001862
Paulo Zanoni60611c12013-08-15 11:50:01 -03001863 if (pm_iir)
Daniel Vetterd0ecd7e2013-07-04 23:35:25 +02001864 gen6_rps_irq_handler(dev_priv, pm_iir);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07001865
1866 I915_WRITE(GTIIR, gt_iir);
1867 I915_WRITE(GEN6_PMIIR, pm_iir);
1868 I915_WRITE(VLV_IIR, iir);
1869 }
1870
1871out:
1872 return ret;
1873}
1874
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001875static irqreturn_t cherryview_irq_handler(int irq, void *arg)
1876{
Daniel Vetter45a83f82014-05-12 19:17:55 +02001877 struct drm_device *dev = arg;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001878 struct drm_i915_private *dev_priv = dev->dev_private;
1879 u32 master_ctl, iir;
1880 irqreturn_t ret = IRQ_NONE;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001881
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001882 for (;;) {
1883 master_ctl = I915_READ(GEN8_MASTER_IRQ) & ~GEN8_MASTER_IRQ_CONTROL;
1884 iir = I915_READ(VLV_IIR);
Ville Syrjälä3278f672014-04-09 13:28:49 +03001885
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001886 if (master_ctl == 0 && iir == 0)
1887 break;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001888
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001889 I915_WRITE(GEN8_MASTER_IRQ, 0);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001890
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001891 gen8_gt_irq_handler(dev, dev_priv, master_ctl);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001892
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001893 valleyview_pipestat_irq_handler(dev, iir);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001894
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001895 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä3278f672014-04-09 13:28:49 +03001896 i9xx_hpd_irq_handler(dev);
Ville Syrjälä8e5fd592014-04-09 13:28:50 +03001897
1898 I915_WRITE(VLV_IIR, iir);
1899
1900 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
1901 POSTING_READ(GEN8_MASTER_IRQ);
1902
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001903 ret = IRQ_HANDLED;
1904 }
1905
Ville Syrjälä43f328d2014-04-09 20:40:52 +03001906 return ret;
1907}
1908
Adam Jackson23e81d62012-06-06 15:45:44 -04001909static void ibx_irq_handler(struct drm_device *dev, u32 pch_iir)
Jesse Barnes776ad802011-01-04 15:09:39 -08001910{
Jani Nikula2d1013d2014-03-31 14:27:17 +03001911 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001912 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02001913 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK;
Jesse Barnes776ad802011-01-04 15:09:39 -08001914
Daniel Vetter91d131d2013-06-27 17:52:14 +02001915 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_ibx);
1916
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001917 if (pch_iir & SDE_AUDIO_POWER_MASK) {
1918 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK) >>
1919 SDE_AUDIO_POWER_SHIFT);
Jesse Barnes776ad802011-01-04 15:09:39 -08001920 DRM_DEBUG_DRIVER("PCH audio power change on port %d\n",
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03001921 port_name(port));
1922 }
Jesse Barnes776ad802011-01-04 15:09:39 -08001923
Daniel Vetterce99c252012-12-01 13:53:47 +01001924 if (pch_iir & SDE_AUX_MASK)
1925 dp_aux_irq_handler(dev);
1926
Jesse Barnes776ad802011-01-04 15:09:39 -08001927 if (pch_iir & SDE_GMBUS)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01001928 gmbus_irq_handler(dev);
Jesse Barnes776ad802011-01-04 15:09:39 -08001929
1930 if (pch_iir & SDE_AUDIO_HDCP_MASK)
1931 DRM_DEBUG_DRIVER("PCH HDCP audio interrupt\n");
1932
1933 if (pch_iir & SDE_AUDIO_TRANS_MASK)
1934 DRM_DEBUG_DRIVER("PCH transcoder audio interrupt\n");
1935
1936 if (pch_iir & SDE_POISON)
1937 DRM_ERROR("PCH poison interrupt\n");
1938
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08001939 if (pch_iir & SDE_FDI_MASK)
1940 for_each_pipe(pipe)
1941 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
1942 pipe_name(pipe),
1943 I915_READ(FDI_RX_IIR(pipe)));
Jesse Barnes776ad802011-01-04 15:09:39 -08001944
1945 if (pch_iir & (SDE_TRANSB_CRC_DONE | SDE_TRANSA_CRC_DONE))
1946 DRM_DEBUG_DRIVER("PCH transcoder CRC done interrupt\n");
1947
1948 if (pch_iir & (SDE_TRANSB_CRC_ERR | SDE_TRANSA_CRC_ERR))
1949 DRM_DEBUG_DRIVER("PCH transcoder CRC error interrupt\n");
1950
Jesse Barnes776ad802011-01-04 15:09:39 -08001951 if (pch_iir & SDE_TRANSA_FIFO_UNDER)
Paulo Zanoni86642812013-04-12 17:57:57 -03001952 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
1953 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02001954 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03001955
1956 if (pch_iir & SDE_TRANSB_FIFO_UNDER)
1957 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
1958 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02001959 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03001960}
1961
1962static void ivb_err_int_handler(struct drm_device *dev)
1963{
1964 struct drm_i915_private *dev_priv = dev->dev_private;
1965 u32 err_int = I915_READ(GEN7_ERR_INT);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001966 enum pipe pipe;
Paulo Zanoni86642812013-04-12 17:57:57 -03001967
Paulo Zanonide032bf2013-04-12 17:57:58 -03001968 if (err_int & ERR_INT_POISON)
1969 DRM_ERROR("Poison interrupt\n");
1970
Daniel Vetter5a69b892013-10-16 22:55:52 +02001971 for_each_pipe(pipe) {
1972 if (err_int & ERR_INT_FIFO_UNDERRUN(pipe)) {
1973 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
1974 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02001975 DRM_ERROR("Pipe %c FIFO underrun\n",
1976 pipe_name(pipe));
Daniel Vetter5a69b892013-10-16 22:55:52 +02001977 }
Paulo Zanoni86642812013-04-12 17:57:57 -03001978
Daniel Vetter5a69b892013-10-16 22:55:52 +02001979 if (err_int & ERR_INT_PIPE_CRC_DONE(pipe)) {
1980 if (IS_IVYBRIDGE(dev))
Daniel Vetter277de952013-10-18 16:37:07 +02001981 ivb_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001982 else
Daniel Vetter277de952013-10-18 16:37:07 +02001983 hsw_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5a69b892013-10-16 22:55:52 +02001984 }
1985 }
Shuang He8bf1e9f2013-10-15 18:55:27 +01001986
Paulo Zanoni86642812013-04-12 17:57:57 -03001987 I915_WRITE(GEN7_ERR_INT, err_int);
1988}
1989
1990static void cpt_serr_int_handler(struct drm_device *dev)
1991{
1992 struct drm_i915_private *dev_priv = dev->dev_private;
1993 u32 serr_int = I915_READ(SERR_INT);
1994
Paulo Zanonide032bf2013-04-12 17:57:58 -03001995 if (serr_int & SERR_INT_POISON)
1996 DRM_ERROR("PCH poison interrupt\n");
1997
Paulo Zanoni86642812013-04-12 17:57:57 -03001998 if (serr_int & SERR_INT_TRANS_A_FIFO_UNDERRUN)
1999 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_A,
2000 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002001 DRM_ERROR("PCH transcoder A FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002002
2003 if (serr_int & SERR_INT_TRANS_B_FIFO_UNDERRUN)
2004 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_B,
2005 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002006 DRM_ERROR("PCH transcoder B FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002007
2008 if (serr_int & SERR_INT_TRANS_C_FIFO_UNDERRUN)
2009 if (intel_set_pch_fifo_underrun_reporting(dev, TRANSCODER_C,
2010 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002011 DRM_ERROR("PCH transcoder C FIFO underrun\n");
Paulo Zanoni86642812013-04-12 17:57:57 -03002012
2013 I915_WRITE(SERR_INT, serr_int);
Jesse Barnes776ad802011-01-04 15:09:39 -08002014}
2015
Adam Jackson23e81d62012-06-06 15:45:44 -04002016static void cpt_irq_handler(struct drm_device *dev, u32 pch_iir)
2017{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002018 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson23e81d62012-06-06 15:45:44 -04002019 int pipe;
Egbert Eichb543fb02013-04-16 13:36:54 +02002020 u32 hotplug_trigger = pch_iir & SDE_HOTPLUG_MASK_CPT;
Adam Jackson23e81d62012-06-06 15:45:44 -04002021
Daniel Vetter91d131d2013-06-27 17:52:14 +02002022 intel_hpd_irq_handler(dev, hotplug_trigger, hpd_cpt);
2023
Ville Syrjäläcfc33bf2013-04-17 17:48:48 +03002024 if (pch_iir & SDE_AUDIO_POWER_MASK_CPT) {
2025 int port = ffs((pch_iir & SDE_AUDIO_POWER_MASK_CPT) >>
2026 SDE_AUDIO_POWER_SHIFT_CPT);
2027 DRM_DEBUG_DRIVER("PCH audio power change on port %c\n",
2028 port_name(port));
2029 }
Adam Jackson23e81d62012-06-06 15:45:44 -04002030
2031 if (pch_iir & SDE_AUX_MASK_CPT)
Daniel Vetterce99c252012-12-01 13:53:47 +01002032 dp_aux_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002033
2034 if (pch_iir & SDE_GMBUS_CPT)
Daniel Vetter515ac2b2012-12-01 13:53:44 +01002035 gmbus_irq_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002036
2037 if (pch_iir & SDE_AUDIO_CP_REQ_CPT)
2038 DRM_DEBUG_DRIVER("Audio CP request interrupt\n");
2039
2040 if (pch_iir & SDE_AUDIO_CP_CHG_CPT)
2041 DRM_DEBUG_DRIVER("Audio CP change interrupt\n");
2042
2043 if (pch_iir & SDE_FDI_MASK_CPT)
2044 for_each_pipe(pipe)
2045 DRM_DEBUG_DRIVER(" pipe %c FDI IIR: 0x%08x\n",
2046 pipe_name(pipe),
2047 I915_READ(FDI_RX_IIR(pipe)));
Paulo Zanoni86642812013-04-12 17:57:57 -03002048
2049 if (pch_iir & SDE_ERROR_CPT)
2050 cpt_serr_int_handler(dev);
Adam Jackson23e81d62012-06-06 15:45:44 -04002051}
2052
Paulo Zanonic008bc62013-07-12 16:35:10 -03002053static void ilk_display_irq_handler(struct drm_device *dev, u32 de_iir)
2054{
2055 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter40da17c2013-10-21 18:04:36 +02002056 enum pipe pipe;
Paulo Zanonic008bc62013-07-12 16:35:10 -03002057
2058 if (de_iir & DE_AUX_CHANNEL_A)
2059 dp_aux_irq_handler(dev);
2060
2061 if (de_iir & DE_GSE)
2062 intel_opregion_asle_intr(dev);
2063
Paulo Zanonic008bc62013-07-12 16:35:10 -03002064 if (de_iir & DE_POISON)
2065 DRM_ERROR("Poison interrupt\n");
2066
Daniel Vetter40da17c2013-10-21 18:04:36 +02002067 for_each_pipe(pipe) {
2068 if (de_iir & DE_PIPE_VBLANK(pipe))
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002069 intel_pipe_handle_vblank(dev, pipe);
Paulo Zanonic008bc62013-07-12 16:35:10 -03002070
Daniel Vetter40da17c2013-10-21 18:04:36 +02002071 if (de_iir & DE_PIPE_FIFO_UNDERRUN(pipe))
2072 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002073 DRM_ERROR("Pipe %c FIFO underrun\n",
2074 pipe_name(pipe));
Paulo Zanonic008bc62013-07-12 16:35:10 -03002075
Daniel Vetter40da17c2013-10-21 18:04:36 +02002076 if (de_iir & DE_PIPE_CRC_DONE(pipe))
2077 i9xx_pipe_crc_irq_handler(dev, pipe);
Daniel Vetter5b3a8562013-10-16 22:55:48 +02002078
Daniel Vetter40da17c2013-10-21 18:04:36 +02002079 /* plane/pipes map 1:1 on ilk+ */
2080 if (de_iir & DE_PLANE_FLIP_DONE(pipe)) {
2081 intel_prepare_page_flip(dev, pipe);
2082 intel_finish_page_flip_plane(dev, pipe);
2083 }
Paulo Zanonic008bc62013-07-12 16:35:10 -03002084 }
2085
2086 /* check event from PCH */
2087 if (de_iir & DE_PCH_EVENT) {
2088 u32 pch_iir = I915_READ(SDEIIR);
2089
2090 if (HAS_PCH_CPT(dev))
2091 cpt_irq_handler(dev, pch_iir);
2092 else
2093 ibx_irq_handler(dev, pch_iir);
2094
2095 /* should clear PCH hotplug event before clear CPU irq */
2096 I915_WRITE(SDEIIR, pch_iir);
2097 }
2098
2099 if (IS_GEN5(dev) && de_iir & DE_PCU_EVENT)
2100 ironlake_rps_change_irq_handler(dev);
2101}
2102
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002103static void ivb_display_irq_handler(struct drm_device *dev, u32 de_iir)
2104{
2105 struct drm_i915_private *dev_priv = dev->dev_private;
Damien Lespiau07d27e22014-03-03 17:31:46 +00002106 enum pipe pipe;
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002107
2108 if (de_iir & DE_ERR_INT_IVB)
2109 ivb_err_int_handler(dev);
2110
2111 if (de_iir & DE_AUX_CHANNEL_A_IVB)
2112 dp_aux_irq_handler(dev);
2113
2114 if (de_iir & DE_GSE_IVB)
2115 intel_opregion_asle_intr(dev);
2116
Damien Lespiau07d27e22014-03-03 17:31:46 +00002117 for_each_pipe(pipe) {
2118 if (de_iir & (DE_PIPE_VBLANK_IVB(pipe)))
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002119 intel_pipe_handle_vblank(dev, pipe);
Daniel Vetter40da17c2013-10-21 18:04:36 +02002120
2121 /* plane/pipes map 1:1 on ilk+ */
Damien Lespiau07d27e22014-03-03 17:31:46 +00002122 if (de_iir & DE_PLANE_FLIP_DONE_IVB(pipe)) {
2123 intel_prepare_page_flip(dev, pipe);
2124 intel_finish_page_flip_plane(dev, pipe);
Paulo Zanoni9719fb92013-07-12 16:35:11 -03002125 }
2126 }
2127
2128 /* check event from PCH */
2129 if (!HAS_PCH_NOP(dev) && (de_iir & DE_PCH_EVENT_IVB)) {
2130 u32 pch_iir = I915_READ(SDEIIR);
2131
2132 cpt_irq_handler(dev, pch_iir);
2133
2134 /* clear PCH hotplug event before clear CPU irq */
2135 I915_WRITE(SDEIIR, pch_iir);
2136 }
2137}
2138
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002139static irqreturn_t ironlake_irq_handler(int irq, void *arg)
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002140{
Daniel Vetter45a83f82014-05-12 19:17:55 +02002141 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002142 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002143 u32 de_iir, gt_iir, de_ier, sde_ier = 0;
Chris Wilson0e434062012-05-09 21:45:44 +01002144 irqreturn_t ret = IRQ_NONE;
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002145
Paulo Zanoni86642812013-04-12 17:57:57 -03002146 /* We get interrupts on unclaimed registers, so check for this before we
2147 * do any I915_{READ,WRITE}. */
Chris Wilson907b28c2013-07-19 20:36:52 +01002148 intel_uncore_check_errors(dev);
Paulo Zanoni86642812013-04-12 17:57:57 -03002149
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002150 /* disable master interrupt before clearing iir */
2151 de_ier = I915_READ(DEIER);
2152 I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL);
Paulo Zanoni23a78512013-07-12 16:35:14 -03002153 POSTING_READ(DEIER);
Chris Wilson0e434062012-05-09 21:45:44 +01002154
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002155 /* Disable south interrupts. We'll only write to SDEIIR once, so further
2156 * interrupts will will be stored on its back queue, and then we'll be
2157 * able to process them after we restore SDEIER (as soon as we restore
2158 * it, we'll get an interrupt if SDEIIR still has something to process
2159 * due to its back queue). */
Ben Widawskyab5c6082013-04-05 13:12:41 -07002160 if (!HAS_PCH_NOP(dev)) {
2161 sde_ier = I915_READ(SDEIER);
2162 I915_WRITE(SDEIER, 0);
2163 POSTING_READ(SDEIER);
2164 }
Paulo Zanoni44498ae2013-02-22 17:05:28 -03002165
Chris Wilson0e434062012-05-09 21:45:44 +01002166 gt_iir = I915_READ(GTIIR);
2167 if (gt_iir) {
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002168 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002169 snb_gt_irq_handler(dev, dev_priv, gt_iir);
Paulo Zanonid8fc8a42013-07-19 18:57:55 -03002170 else
2171 ilk_gt_irq_handler(dev, dev_priv, gt_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002172 I915_WRITE(GTIIR, gt_iir);
2173 ret = IRQ_HANDLED;
2174 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002175
2176 de_iir = I915_READ(DEIIR);
Chris Wilson0e434062012-05-09 21:45:44 +01002177 if (de_iir) {
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002178 if (INTEL_INFO(dev)->gen >= 7)
2179 ivb_display_irq_handler(dev, de_iir);
2180 else
2181 ilk_display_irq_handler(dev, de_iir);
Chris Wilson0e434062012-05-09 21:45:44 +01002182 I915_WRITE(DEIIR, de_iir);
2183 ret = IRQ_HANDLED;
2184 }
2185
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002186 if (INTEL_INFO(dev)->gen >= 6) {
2187 u32 pm_iir = I915_READ(GEN6_PMIIR);
2188 if (pm_iir) {
Paulo Zanoni1403c0d2013-08-15 11:51:32 -03002189 gen6_rps_irq_handler(dev_priv, pm_iir);
Paulo Zanonif1af8fc2013-07-12 19:56:30 -03002190 I915_WRITE(GEN6_PMIIR, pm_iir);
2191 ret = IRQ_HANDLED;
2192 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002193 }
2194
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002195 I915_WRITE(DEIER, de_ier);
2196 POSTING_READ(DEIER);
Ben Widawskyab5c6082013-04-05 13:12:41 -07002197 if (!HAS_PCH_NOP(dev)) {
2198 I915_WRITE(SDEIER, sde_ier);
2199 POSTING_READ(SDEIER);
2200 }
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002201
2202 return ret;
2203}
2204
Ben Widawskyabd58f02013-11-02 21:07:09 -07002205static irqreturn_t gen8_irq_handler(int irq, void *arg)
2206{
2207 struct drm_device *dev = arg;
2208 struct drm_i915_private *dev_priv = dev->dev_private;
2209 u32 master_ctl;
2210 irqreturn_t ret = IRQ_NONE;
2211 uint32_t tmp = 0;
Daniel Vetterc42664c2013-11-07 11:05:40 +01002212 enum pipe pipe;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002213
Ben Widawskyabd58f02013-11-02 21:07:09 -07002214 master_ctl = I915_READ(GEN8_MASTER_IRQ);
2215 master_ctl &= ~GEN8_MASTER_IRQ_CONTROL;
2216 if (!master_ctl)
2217 return IRQ_NONE;
2218
2219 I915_WRITE(GEN8_MASTER_IRQ, 0);
2220 POSTING_READ(GEN8_MASTER_IRQ);
2221
2222 ret = gen8_gt_irq_handler(dev, dev_priv, master_ctl);
2223
2224 if (master_ctl & GEN8_DE_MISC_IRQ) {
2225 tmp = I915_READ(GEN8_DE_MISC_IIR);
2226 if (tmp & GEN8_DE_MISC_GSE)
2227 intel_opregion_asle_intr(dev);
2228 else if (tmp)
2229 DRM_ERROR("Unexpected DE Misc interrupt\n");
2230 else
2231 DRM_ERROR("The master control interrupt lied (DE MISC)!\n");
2232
2233 if (tmp) {
2234 I915_WRITE(GEN8_DE_MISC_IIR, tmp);
2235 ret = IRQ_HANDLED;
2236 }
2237 }
2238
Daniel Vetter6d766f02013-11-07 14:49:55 +01002239 if (master_ctl & GEN8_DE_PORT_IRQ) {
2240 tmp = I915_READ(GEN8_DE_PORT_IIR);
2241 if (tmp & GEN8_AUX_CHANNEL_A)
2242 dp_aux_irq_handler(dev);
2243 else if (tmp)
2244 DRM_ERROR("Unexpected DE Port interrupt\n");
2245 else
2246 DRM_ERROR("The master control interrupt lied (DE PORT)!\n");
2247
2248 if (tmp) {
2249 I915_WRITE(GEN8_DE_PORT_IIR, tmp);
2250 ret = IRQ_HANDLED;
2251 }
2252 }
2253
Daniel Vetterc42664c2013-11-07 11:05:40 +01002254 for_each_pipe(pipe) {
2255 uint32_t pipe_iir;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002256
Daniel Vetterc42664c2013-11-07 11:05:40 +01002257 if (!(master_ctl & GEN8_DE_PIPE_IRQ(pipe)))
2258 continue;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002259
Daniel Vetterc42664c2013-11-07 11:05:40 +01002260 pipe_iir = I915_READ(GEN8_DE_PIPE_IIR(pipe));
2261 if (pipe_iir & GEN8_PIPE_VBLANK)
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03002262 intel_pipe_handle_vblank(dev, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002263
Damien Lespiaud0e1f1c2014-04-08 01:22:44 +01002264 if (pipe_iir & GEN8_PIPE_PRIMARY_FLIP_DONE) {
Daniel Vetterc42664c2013-11-07 11:05:40 +01002265 intel_prepare_page_flip(dev, pipe);
2266 intel_finish_page_flip_plane(dev, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07002267 }
Daniel Vetterc42664c2013-11-07 11:05:40 +01002268
Daniel Vetter0fbe7872013-11-07 11:05:44 +01002269 if (pipe_iir & GEN8_PIPE_CDCLK_CRC_DONE)
2270 hsw_pipe_crc_irq_handler(dev, pipe);
2271
Daniel Vetter38d83c962013-11-07 11:05:46 +01002272 if (pipe_iir & GEN8_PIPE_FIFO_UNDERRUN) {
2273 if (intel_set_cpu_fifo_underrun_reporting(dev, pipe,
2274 false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02002275 DRM_ERROR("Pipe %c FIFO underrun\n",
2276 pipe_name(pipe));
Daniel Vetter38d83c962013-11-07 11:05:46 +01002277 }
2278
Daniel Vetter30100f22013-11-07 14:49:24 +01002279 if (pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS) {
2280 DRM_ERROR("Fault errors on pipe %c\n: 0x%08x",
2281 pipe_name(pipe),
2282 pipe_iir & GEN8_DE_PIPE_IRQ_FAULT_ERRORS);
2283 }
Daniel Vetterc42664c2013-11-07 11:05:40 +01002284
2285 if (pipe_iir) {
2286 ret = IRQ_HANDLED;
2287 I915_WRITE(GEN8_DE_PIPE_IIR(pipe), pipe_iir);
2288 } else
Ben Widawskyabd58f02013-11-02 21:07:09 -07002289 DRM_ERROR("The master control interrupt lied (DE PIPE)!\n");
2290 }
2291
Daniel Vetter92d03a82013-11-07 11:05:43 +01002292 if (!HAS_PCH_NOP(dev) && master_ctl & GEN8_DE_PCH_IRQ) {
2293 /*
2294 * FIXME(BDW): Assume for now that the new interrupt handling
2295 * scheme also closed the SDE interrupt handling race we've seen
2296 * on older pch-split platforms. But this needs testing.
2297 */
2298 u32 pch_iir = I915_READ(SDEIIR);
2299
2300 cpt_irq_handler(dev, pch_iir);
2301
2302 if (pch_iir) {
2303 I915_WRITE(SDEIIR, pch_iir);
2304 ret = IRQ_HANDLED;
2305 }
2306 }
2307
Ben Widawskyabd58f02013-11-02 21:07:09 -07002308 I915_WRITE(GEN8_MASTER_IRQ, GEN8_MASTER_IRQ_CONTROL);
2309 POSTING_READ(GEN8_MASTER_IRQ);
2310
2311 return ret;
2312}
2313
Daniel Vetter17e1df02013-09-08 21:57:13 +02002314static void i915_error_wake_up(struct drm_i915_private *dev_priv,
2315 bool reset_completed)
2316{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002317 struct intel_engine_cs *ring;
Daniel Vetter17e1df02013-09-08 21:57:13 +02002318 int i;
2319
2320 /*
2321 * Notify all waiters for GPU completion events that reset state has
2322 * been changed, and that they need to restart their wait after
2323 * checking for potential errors (and bail out to drop locks if there is
2324 * a gpu reset pending so that i915_error_work_func can acquire them).
2325 */
2326
2327 /* Wake up __wait_seqno, potentially holding dev->struct_mutex. */
2328 for_each_ring(ring, dev_priv, i)
2329 wake_up_all(&ring->irq_queue);
2330
2331 /* Wake up intel_crtc_wait_for_pending_flips, holding crtc->mutex. */
2332 wake_up_all(&dev_priv->pending_flip_queue);
2333
2334 /*
2335 * Signal tasks blocked in i915_gem_wait_for_error that the pending
2336 * reset state is cleared.
2337 */
2338 if (reset_completed)
2339 wake_up_all(&dev_priv->gpu_error.reset_queue);
2340}
2341
Jesse Barnes8a905232009-07-11 16:48:03 -04002342/**
2343 * i915_error_work_func - do process context error handling work
2344 * @work: work struct
2345 *
2346 * Fire an error uevent so userspace can see that a hang or error
2347 * was detected.
2348 */
2349static void i915_error_work_func(struct work_struct *work)
2350{
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002351 struct i915_gpu_error *error = container_of(work, struct i915_gpu_error,
2352 work);
Jani Nikula2d1013d2014-03-31 14:27:17 +03002353 struct drm_i915_private *dev_priv =
2354 container_of(error, struct drm_i915_private, gpu_error);
Jesse Barnes8a905232009-07-11 16:48:03 -04002355 struct drm_device *dev = dev_priv->dev;
Ben Widawskycce723e2013-07-19 09:16:42 -07002356 char *error_event[] = { I915_ERROR_UEVENT "=1", NULL };
2357 char *reset_event[] = { I915_RESET_UEVENT "=1", NULL };
2358 char *reset_done_event[] = { I915_ERROR_UEVENT "=0", NULL };
Daniel Vetter17e1df02013-09-08 21:57:13 +02002359 int ret;
Jesse Barnes8a905232009-07-11 16:48:03 -04002360
Dave Airlie5bdebb12013-10-11 14:07:25 +10002361 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE, error_event);
Jesse Barnes8a905232009-07-11 16:48:03 -04002362
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002363 /*
2364 * Note that there's only one work item which does gpu resets, so we
2365 * need not worry about concurrent gpu resets potentially incrementing
2366 * error->reset_counter twice. We only need to take care of another
2367 * racing irq/hangcheck declaring the gpu dead for a second time. A
2368 * quick check for that is good enough: schedule_work ensures the
2369 * correct ordering between hang detection and this work item, and since
2370 * the reset in-progress bit is only ever set by code outside of this
2371 * work we don't need to worry about any other races.
2372 */
2373 if (i915_reset_in_progress(error) && !i915_terminally_wedged(error)) {
Chris Wilsonf803aa52010-09-19 12:38:26 +01002374 DRM_DEBUG_DRIVER("resetting chip\n");
Dave Airlie5bdebb12013-10-11 14:07:25 +10002375 kobject_uevent_env(&dev->primary->kdev->kobj, KOBJ_CHANGE,
Daniel Vetter7db0ba22012-12-06 16:23:37 +01002376 reset_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002377
Daniel Vetter17e1df02013-09-08 21:57:13 +02002378 /*
Imre Deakf454c692014-04-23 01:09:04 +03002379 * In most cases it's guaranteed that we get here with an RPM
2380 * reference held, for example because there is a pending GPU
2381 * request that won't finish until the reset is done. This
2382 * isn't the case at least when we get here by doing a
2383 * simulated reset via debugs, so get an RPM reference.
2384 */
2385 intel_runtime_pm_get(dev_priv);
2386 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002387 * All state reset _must_ be completed before we update the
2388 * reset counter, for otherwise waiters might miss the reset
2389 * pending state and not properly drop locks, resulting in
2390 * deadlocks with the reset work.
2391 */
Daniel Vetterf69061b2012-12-06 09:01:42 +01002392 ret = i915_reset(dev);
2393
Daniel Vetter17e1df02013-09-08 21:57:13 +02002394 intel_display_handle_reset(dev);
2395
Imre Deakf454c692014-04-23 01:09:04 +03002396 intel_runtime_pm_put(dev_priv);
2397
Daniel Vetterf69061b2012-12-06 09:01:42 +01002398 if (ret == 0) {
2399 /*
2400 * After all the gem state is reset, increment the reset
2401 * counter and wake up everyone waiting for the reset to
2402 * complete.
2403 *
2404 * Since unlock operations are a one-sided barrier only,
2405 * we need to insert a barrier here to order any seqno
2406 * updates before
2407 * the counter increment.
2408 */
2409 smp_mb__before_atomic_inc();
2410 atomic_inc(&dev_priv->gpu_error.reset_counter);
2411
Dave Airlie5bdebb12013-10-11 14:07:25 +10002412 kobject_uevent_env(&dev->primary->kdev->kobj,
Daniel Vetterf69061b2012-12-06 09:01:42 +01002413 KOBJ_CHANGE, reset_done_event);
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002414 } else {
Mika Kuoppala2ac0f452013-11-12 14:44:19 +02002415 atomic_set_mask(I915_WEDGED, &error->reset_counter);
Ben Gamarif316a422009-09-14 17:48:46 -04002416 }
Daniel Vetter1f83fee2012-11-15 17:17:22 +01002417
Daniel Vetter17e1df02013-09-08 21:57:13 +02002418 /*
2419 * Note: The wake_up also serves as a memory barrier so that
2420 * waiters see the update value of the reset counter atomic_t.
2421 */
2422 i915_error_wake_up(dev_priv, true);
Ben Gamarif316a422009-09-14 17:48:46 -04002423 }
Jesse Barnes8a905232009-07-11 16:48:03 -04002424}
2425
Chris Wilson35aed2e2010-05-27 13:18:12 +01002426static void i915_report_and_clear_eir(struct drm_device *dev)
Jesse Barnes8a905232009-07-11 16:48:03 -04002427{
2428 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskybd9854f2012-08-23 15:18:09 -07002429 uint32_t instdone[I915_NUM_INSTDONE_REG];
Jesse Barnes8a905232009-07-11 16:48:03 -04002430 u32 eir = I915_READ(EIR);
Ben Widawsky050ee912012-08-22 11:32:15 -07002431 int pipe, i;
Jesse Barnes8a905232009-07-11 16:48:03 -04002432
Chris Wilson35aed2e2010-05-27 13:18:12 +01002433 if (!eir)
2434 return;
Jesse Barnes8a905232009-07-11 16:48:03 -04002435
Joe Perchesa70491c2012-03-18 13:00:11 -07002436 pr_err("render error detected, EIR: 0x%08x\n", eir);
Jesse Barnes8a905232009-07-11 16:48:03 -04002437
Ben Widawskybd9854f2012-08-23 15:18:09 -07002438 i915_get_extra_instdone(dev, instdone);
2439
Jesse Barnes8a905232009-07-11 16:48:03 -04002440 if (IS_G4X(dev)) {
2441 if (eir & (GM45_ERROR_MEM_PRIV | GM45_ERROR_CP_PRIV)) {
2442 u32 ipeir = I915_READ(IPEIR_I965);
2443
Joe Perchesa70491c2012-03-18 13:00:11 -07002444 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2445 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Ben Widawsky050ee912012-08-22 11:32:15 -07002446 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2447 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Joe Perchesa70491c2012-03-18 13:00:11 -07002448 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002449 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002450 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002451 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002452 }
2453 if (eir & GM45_ERROR_PAGE_TABLE) {
2454 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002455 pr_err("page table error\n");
2456 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002457 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002458 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002459 }
2460 }
2461
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002462 if (!IS_GEN2(dev)) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002463 if (eir & I915_ERROR_PAGE_TABLE) {
2464 u32 pgtbl_err = I915_READ(PGTBL_ER);
Joe Perchesa70491c2012-03-18 13:00:11 -07002465 pr_err("page table error\n");
2466 pr_err(" PGTBL_ER: 0x%08x\n", pgtbl_err);
Jesse Barnes8a905232009-07-11 16:48:03 -04002467 I915_WRITE(PGTBL_ER, pgtbl_err);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002468 POSTING_READ(PGTBL_ER);
Jesse Barnes8a905232009-07-11 16:48:03 -04002469 }
2470 }
2471
2472 if (eir & I915_ERROR_MEMORY_REFRESH) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002473 pr_err("memory refresh error:\n");
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002474 for_each_pipe(pipe)
Joe Perchesa70491c2012-03-18 13:00:11 -07002475 pr_err("pipe %c stat: 0x%08x\n",
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002476 pipe_name(pipe), I915_READ(PIPESTAT(pipe)));
Jesse Barnes8a905232009-07-11 16:48:03 -04002477 /* pipestat has already been acked */
2478 }
2479 if (eir & I915_ERROR_INSTRUCTION) {
Joe Perchesa70491c2012-03-18 13:00:11 -07002480 pr_err("instruction error\n");
2481 pr_err(" INSTPM: 0x%08x\n", I915_READ(INSTPM));
Ben Widawsky050ee912012-08-22 11:32:15 -07002482 for (i = 0; i < ARRAY_SIZE(instdone); i++)
2483 pr_err(" INSTDONE_%d: 0x%08x\n", i, instdone[i]);
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002484 if (INTEL_INFO(dev)->gen < 4) {
Jesse Barnes8a905232009-07-11 16:48:03 -04002485 u32 ipeir = I915_READ(IPEIR);
2486
Joe Perchesa70491c2012-03-18 13:00:11 -07002487 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR));
2488 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR));
Joe Perchesa70491c2012-03-18 13:00:11 -07002489 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD));
Jesse Barnes8a905232009-07-11 16:48:03 -04002490 I915_WRITE(IPEIR, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002491 POSTING_READ(IPEIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002492 } else {
2493 u32 ipeir = I915_READ(IPEIR_I965);
2494
Joe Perchesa70491c2012-03-18 13:00:11 -07002495 pr_err(" IPEIR: 0x%08x\n", I915_READ(IPEIR_I965));
2496 pr_err(" IPEHR: 0x%08x\n", I915_READ(IPEHR_I965));
Joe Perchesa70491c2012-03-18 13:00:11 -07002497 pr_err(" INSTPS: 0x%08x\n", I915_READ(INSTPS));
Joe Perchesa70491c2012-03-18 13:00:11 -07002498 pr_err(" ACTHD: 0x%08x\n", I915_READ(ACTHD_I965));
Jesse Barnes8a905232009-07-11 16:48:03 -04002499 I915_WRITE(IPEIR_I965, ipeir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002500 POSTING_READ(IPEIR_I965);
Jesse Barnes8a905232009-07-11 16:48:03 -04002501 }
2502 }
2503
2504 I915_WRITE(EIR, eir);
Chris Wilson3143a2b2010-11-16 15:55:10 +00002505 POSTING_READ(EIR);
Jesse Barnes8a905232009-07-11 16:48:03 -04002506 eir = I915_READ(EIR);
2507 if (eir) {
2508 /*
2509 * some errors might have become stuck,
2510 * mask them.
2511 */
2512 DRM_ERROR("EIR stuck: 0x%08x, masking\n", eir);
2513 I915_WRITE(EMR, I915_READ(EMR) | eir);
2514 I915_WRITE(IIR, I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
2515 }
Chris Wilson35aed2e2010-05-27 13:18:12 +01002516}
2517
2518/**
2519 * i915_handle_error - handle an error interrupt
2520 * @dev: drm device
2521 *
2522 * Do some basic checking of regsiter state at error interrupt time and
2523 * dump it to the syslog. Also call i915_capture_error_state() to make
2524 * sure we get a record and make it available in debugfs. Fire a uevent
2525 * so userspace knows something bad happened (should trigger collection
2526 * of a ring dump etc.).
2527 */
Mika Kuoppala58174462014-02-25 17:11:26 +02002528void i915_handle_error(struct drm_device *dev, bool wedged,
2529 const char *fmt, ...)
Chris Wilson35aed2e2010-05-27 13:18:12 +01002530{
2531 struct drm_i915_private *dev_priv = dev->dev_private;
Mika Kuoppala58174462014-02-25 17:11:26 +02002532 va_list args;
2533 char error_msg[80];
Chris Wilson35aed2e2010-05-27 13:18:12 +01002534
Mika Kuoppala58174462014-02-25 17:11:26 +02002535 va_start(args, fmt);
2536 vscnprintf(error_msg, sizeof(error_msg), fmt, args);
2537 va_end(args);
2538
2539 i915_capture_error_state(dev, wedged, error_msg);
Chris Wilson35aed2e2010-05-27 13:18:12 +01002540 i915_report_and_clear_eir(dev);
Jesse Barnes8a905232009-07-11 16:48:03 -04002541
Ben Gamariba1234d2009-09-14 17:48:47 -04002542 if (wedged) {
Daniel Vetterf69061b2012-12-06 09:01:42 +01002543 atomic_set_mask(I915_RESET_IN_PROGRESS_FLAG,
2544 &dev_priv->gpu_error.reset_counter);
Ben Gamariba1234d2009-09-14 17:48:47 -04002545
Ben Gamari11ed50e2009-09-14 17:48:45 -04002546 /*
Daniel Vetter17e1df02013-09-08 21:57:13 +02002547 * Wakeup waiting processes so that the reset work function
2548 * i915_error_work_func doesn't deadlock trying to grab various
2549 * locks. By bumping the reset counter first, the woken
2550 * processes will see a reset in progress and back off,
2551 * releasing their locks and then wait for the reset completion.
2552 * We must do this for _all_ gpu waiters that might hold locks
2553 * that the reset work needs to acquire.
2554 *
2555 * Note: The wake_up serves as the required memory barrier to
2556 * ensure that the waiters see the updated value of the reset
2557 * counter atomic_t.
Ben Gamari11ed50e2009-09-14 17:48:45 -04002558 */
Daniel Vetter17e1df02013-09-08 21:57:13 +02002559 i915_error_wake_up(dev_priv, false);
Ben Gamari11ed50e2009-09-14 17:48:45 -04002560 }
2561
Daniel Vetter122f46b2013-09-04 17:36:14 +02002562 /*
2563 * Our reset work can grab modeset locks (since it needs to reset the
2564 * state of outstanding pagelips). Hence it must not be run on our own
2565 * dev-priv->wq work queue for otherwise the flush_work in the pageflip
2566 * code will deadlock.
2567 */
2568 schedule_work(&dev_priv->gpu_error.work);
Jesse Barnes8a905232009-07-11 16:48:03 -04002569}
2570
Ville Syrjälä21ad8332013-02-19 15:16:39 +02002571static void __always_unused i915_pageflip_stall_check(struct drm_device *dev, int pipe)
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002572{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002573 struct drm_i915_private *dev_priv = dev->dev_private;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002574 struct drm_crtc *crtc = dev_priv->pipe_to_crtc_mapping[pipe];
2575 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilson05394f32010-11-08 19:18:58 +00002576 struct drm_i915_gem_object *obj;
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002577 struct intel_unpin_work *work;
2578 unsigned long flags;
2579 bool stall_detected;
2580
2581 /* Ignore early vblank irqs */
2582 if (intel_crtc == NULL)
2583 return;
2584
2585 spin_lock_irqsave(&dev->event_lock, flags);
2586 work = intel_crtc->unpin_work;
2587
Chris Wilsone7d841c2012-12-03 11:36:30 +00002588 if (work == NULL ||
2589 atomic_read(&work->pending) >= INTEL_FLIP_COMPLETE ||
2590 !work->enable_stall_check) {
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002591 /* Either the pending flip IRQ arrived, or we're too early. Don't check */
2592 spin_unlock_irqrestore(&dev->event_lock, flags);
2593 return;
2594 }
2595
2596 /* Potential stall - if we see that the flip has happened, assume a missed interrupt */
Chris Wilson05394f32010-11-08 19:18:58 +00002597 obj = work->pending_flip_obj;
Chris Wilsona6c45cf2010-09-17 00:32:17 +01002598 if (INTEL_INFO(dev)->gen >= 4) {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002599 int dspsurf = DSPSURF(intel_crtc->plane);
Armin Reese446f2542012-03-30 16:20:16 -07002600 stall_detected = I915_HI_DISPBASE(I915_READ(dspsurf)) ==
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002601 i915_gem_obj_ggtt_offset(obj);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002602 } else {
Jesse Barnes9db4a9c2011-02-07 12:26:52 -08002603 int dspaddr = DSPADDR(intel_crtc->plane);
Ben Widawskyf343c5f2013-07-05 14:41:04 -07002604 stall_detected = I915_READ(dspaddr) == (i915_gem_obj_ggtt_offset(obj) +
Matt Roperf4510a22014-04-01 15:22:40 -07002605 crtc->y * crtc->primary->fb->pitches[0] +
2606 crtc->x * crtc->primary->fb->bits_per_pixel/8);
Simon Farnsworth4e5359c2010-09-01 17:47:52 +01002607 }
2608
2609 spin_unlock_irqrestore(&dev->event_lock, flags);
2610
2611 if (stall_detected) {
2612 DRM_DEBUG_DRIVER("Pageflip stall detected\n");
2613 intel_prepare_page_flip(dev, intel_crtc->plane);
2614 }
2615}
2616
Keith Packard42f52ef2008-10-18 19:39:29 -07002617/* Called from drm generic code, passed 'crtc' which
2618 * we use as a pipe index
2619 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002620static int i915_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002621{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002622 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002623 unsigned long irqflags;
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002624
Chris Wilson5eddb702010-09-11 13:48:45 +01002625 if (!i915_pipe_enabled(dev, pipe))
Jesse Barnes71e0ffa2009-01-08 10:42:15 -08002626 return -EINVAL;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002627
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002628 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002629 if (INTEL_INFO(dev)->gen >= 4)
Keith Packard7c463582008-11-04 02:03:27 -08002630 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002631 PIPE_START_VBLANK_INTERRUPT_STATUS);
Keith Packarde9d21d72008-10-16 11:31:38 -07002632 else
Keith Packard7c463582008-11-04 02:03:27 -08002633 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002634 PIPE_VBLANK_INTERRUPT_STATUS);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002635 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilson8692d00e2011-02-05 10:08:21 +00002636
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002637 return 0;
2638}
2639
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002640static int ironlake_enable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002641{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002642 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002643 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002644 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002645 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002646
2647 if (!i915_pipe_enabled(dev, pipe))
2648 return -EINVAL;
2649
2650 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002651 ironlake_enable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002652 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2653
2654 return 0;
2655}
2656
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002657static int valleyview_enable_vblank(struct drm_device *dev, int pipe)
2658{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002659 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002660 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002661
2662 if (!i915_pipe_enabled(dev, pipe))
2663 return -EINVAL;
2664
2665 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002666 i915_enable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002667 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002668 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2669
2670 return 0;
2671}
2672
Ben Widawskyabd58f02013-11-02 21:07:09 -07002673static int gen8_enable_vblank(struct drm_device *dev, int pipe)
2674{
2675 struct drm_i915_private *dev_priv = dev->dev_private;
2676 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002677
2678 if (!i915_pipe_enabled(dev, pipe))
2679 return -EINVAL;
2680
2681 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002682 dev_priv->de_irq_mask[pipe] &= ~GEN8_PIPE_VBLANK;
2683 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2684 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002685 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2686 return 0;
2687}
2688
Keith Packard42f52ef2008-10-18 19:39:29 -07002689/* Called from drm generic code, passed 'crtc' which
2690 * we use as a pipe index
2691 */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002692static void i915_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002693{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002694 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde9d21d72008-10-16 11:31:38 -07002695 unsigned long irqflags;
Jesse Barnes0a3e67a2008-09-30 12:14:26 -07002696
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002697 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002698 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002699 PIPE_VBLANK_INTERRUPT_STATUS |
2700 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002701 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2702}
2703
Jesse Barnesf71d4af2011-06-28 13:00:41 -07002704static void ironlake_disable_vblank(struct drm_device *dev, int pipe)
Jesse Barnesf796cf82011-04-07 13:58:17 -07002705{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002706 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnesf796cf82011-04-07 13:58:17 -07002707 unsigned long irqflags;
Paulo Zanonib5184212013-07-12 20:00:08 -03002708 uint32_t bit = (INTEL_INFO(dev)->gen >= 7) ? DE_PIPE_VBLANK_IVB(pipe) :
Daniel Vetter40da17c2013-10-21 18:04:36 +02002709 DE_PIPE_VBLANK(pipe);
Jesse Barnesf796cf82011-04-07 13:58:17 -07002710
2711 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Paulo Zanonib5184212013-07-12 20:00:08 -03002712 ironlake_disable_display_irq(dev_priv, bit);
Jesse Barnesb1f14ad2011-04-06 12:13:38 -07002713 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2714}
2715
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002716static void valleyview_disable_vblank(struct drm_device *dev, int pipe)
2717{
Jani Nikula2d1013d2014-03-31 14:27:17 +03002718 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002719 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002720
2721 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07002722 i915_disable_pipestat(dev_priv, pipe,
Imre Deak755e9012014-02-10 18:42:47 +02002723 PIPE_START_VBLANK_INTERRUPT_STATUS);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07002724 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2725}
2726
Ben Widawskyabd58f02013-11-02 21:07:09 -07002727static void gen8_disable_vblank(struct drm_device *dev, int pipe)
2728{
2729 struct drm_i915_private *dev_priv = dev->dev_private;
2730 unsigned long irqflags;
Ben Widawskyabd58f02013-11-02 21:07:09 -07002731
2732 if (!i915_pipe_enabled(dev, pipe))
2733 return;
2734
2735 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter7167d7c2013-11-07 11:05:45 +01002736 dev_priv->de_irq_mask[pipe] |= GEN8_PIPE_VBLANK;
2737 I915_WRITE(GEN8_DE_PIPE_IMR(pipe), dev_priv->de_irq_mask[pipe]);
2738 POSTING_READ(GEN8_DE_PIPE_IMR(pipe));
Ben Widawskyabd58f02013-11-02 21:07:09 -07002739 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
2740}
2741
Chris Wilson893eead2010-10-27 14:44:35 +01002742static u32
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002743ring_last_seqno(struct intel_engine_cs *ring)
Zou Nan hai852835f2010-05-21 09:08:56 +08002744{
Chris Wilson893eead2010-10-27 14:44:35 +01002745 return list_entry(ring->request_list.prev,
2746 struct drm_i915_gem_request, list)->seqno;
2747}
2748
Chris Wilson9107e9d2013-06-10 11:20:20 +01002749static bool
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002750ring_idle(struct intel_engine_cs *ring, u32 seqno)
Chris Wilson893eead2010-10-27 14:44:35 +01002751{
Chris Wilson9107e9d2013-06-10 11:20:20 +01002752 return (list_empty(&ring->request_list) ||
2753 i915_seqno_passed(seqno, ring_last_seqno(ring)));
Ben Gamarif65d9422009-09-14 17:48:44 -04002754}
2755
Daniel Vettera028c4b2014-03-15 00:08:56 +01002756static bool
2757ipehr_is_semaphore_wait(struct drm_device *dev, u32 ipehr)
2758{
2759 if (INTEL_INFO(dev)->gen >= 8) {
2760 /*
2761 * FIXME: gen8 semaphore support - currently we don't emit
2762 * semaphores on bdw anyway, but this needs to be addressed when
2763 * we merge that code.
2764 */
2765 return false;
2766 } else {
2767 ipehr &= ~MI_SEMAPHORE_SYNC_MASK;
2768 return ipehr == (MI_SEMAPHORE_MBOX | MI_SEMAPHORE_COMPARE |
2769 MI_SEMAPHORE_REGISTER);
2770 }
2771}
2772
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002773static struct intel_engine_cs *
2774semaphore_wait_to_signaller_ring(struct intel_engine_cs *ring, u32 ipehr)
Daniel Vetter921d42e2014-03-18 10:26:04 +01002775{
2776 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002777 struct intel_engine_cs *signaller;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002778 int i;
2779
2780 if (INTEL_INFO(dev_priv->dev)->gen >= 8) {
2781 /*
2782 * FIXME: gen8 semaphore support - currently we don't emit
2783 * semaphores on bdw anyway, but this needs to be addressed when
2784 * we merge that code.
2785 */
2786 return NULL;
2787 } else {
2788 u32 sync_bits = ipehr & MI_SEMAPHORE_SYNC_MASK;
2789
2790 for_each_ring(signaller, dev_priv, i) {
2791 if(ring == signaller)
2792 continue;
2793
Ben Widawskyebc348b2014-04-29 14:52:28 -07002794 if (sync_bits == signaller->semaphore.mbox.wait[ring->id])
Daniel Vetter921d42e2014-03-18 10:26:04 +01002795 return signaller;
2796 }
2797 }
2798
2799 DRM_ERROR("No signaller ring found for ring %i, ipehr 0x%08x\n",
2800 ring->id, ipehr);
2801
2802 return NULL;
2803}
2804
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002805static struct intel_engine_cs *
2806semaphore_waits_for(struct intel_engine_cs *ring, u32 *seqno)
Chris Wilsona24a11e2013-03-14 17:52:05 +02002807{
2808 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002809 u32 cmd, ipehr, head;
2810 int i;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002811
2812 ipehr = I915_READ(RING_IPEHR(ring->mmio_base));
Daniel Vettera028c4b2014-03-15 00:08:56 +01002813 if (!ipehr_is_semaphore_wait(ring->dev, ipehr))
Chris Wilson6274f212013-06-10 11:20:21 +01002814 return NULL;
Chris Wilsona24a11e2013-03-14 17:52:05 +02002815
Daniel Vetter88fe4292014-03-15 00:08:55 +01002816 /*
2817 * HEAD is likely pointing to the dword after the actual command,
2818 * so scan backwards until we find the MBOX. But limit it to just 3
2819 * dwords. Note that we don't care about ACTHD here since that might
2820 * point at at batch, and semaphores are always emitted into the
2821 * ringbuffer itself.
Chris Wilsona24a11e2013-03-14 17:52:05 +02002822 */
Daniel Vetter88fe4292014-03-15 00:08:55 +01002823 head = I915_READ_HEAD(ring) & HEAD_ADDR;
2824
2825 for (i = 4; i; --i) {
2826 /*
2827 * Be paranoid and presume the hw has gone off into the wild -
2828 * our ring is smaller than what the hardware (and hence
2829 * HEAD_ADDR) allows. Also handles wrap-around.
2830 */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002831 head &= ring->buffer->size - 1;
Daniel Vetter88fe4292014-03-15 00:08:55 +01002832
2833 /* This here seems to blow up */
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002834 cmd = ioread32(ring->buffer->virtual_start + head);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002835 if (cmd == ipehr)
2836 break;
2837
Daniel Vetter88fe4292014-03-15 00:08:55 +01002838 head -= 4;
2839 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002840
Daniel Vetter88fe4292014-03-15 00:08:55 +01002841 if (!i)
2842 return NULL;
2843
Oscar Mateoee1b1e52014-05-22 14:13:35 +01002844 *seqno = ioread32(ring->buffer->virtual_start + head + 4) + 1;
Daniel Vetter921d42e2014-03-18 10:26:04 +01002845 return semaphore_wait_to_signaller_ring(ring, ipehr);
Chris Wilsona24a11e2013-03-14 17:52:05 +02002846}
2847
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002848static int semaphore_passed(struct intel_engine_cs *ring)
Chris Wilson6274f212013-06-10 11:20:21 +01002849{
2850 struct drm_i915_private *dev_priv = ring->dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002851 struct intel_engine_cs *signaller;
Chris Wilson6274f212013-06-10 11:20:21 +01002852 u32 seqno, ctl;
2853
2854 ring->hangcheck.deadlock = true;
2855
2856 signaller = semaphore_waits_for(ring, &seqno);
2857 if (signaller == NULL || signaller->hangcheck.deadlock)
2858 return -1;
2859
2860 /* cursory check for an unkickable deadlock */
2861 ctl = I915_READ_CTL(signaller);
2862 if (ctl & RING_WAIT_SEMAPHORE && semaphore_passed(signaller) < 0)
2863 return -1;
2864
2865 return i915_seqno_passed(signaller->get_seqno(signaller, false), seqno);
2866}
2867
2868static void semaphore_clear_deadlocks(struct drm_i915_private *dev_priv)
2869{
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002870 struct intel_engine_cs *ring;
Chris Wilson6274f212013-06-10 11:20:21 +01002871 int i;
2872
2873 for_each_ring(ring, dev_priv, i)
2874 ring->hangcheck.deadlock = false;
2875}
2876
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002877static enum intel_ring_hangcheck_action
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002878ring_stuck(struct intel_engine_cs *ring, u64 acthd)
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002879{
2880 struct drm_device *dev = ring->dev;
2881 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002882 u32 tmp;
2883
Chris Wilson6274f212013-06-10 11:20:21 +01002884 if (ring->hangcheck.acthd != acthd)
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002885 return HANGCHECK_ACTIVE;
Chris Wilson6274f212013-06-10 11:20:21 +01002886
Chris Wilson9107e9d2013-06-10 11:20:20 +01002887 if (IS_GEN2(dev))
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002888 return HANGCHECK_HUNG;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002889
2890 /* Is the chip hanging on a WAIT_FOR_EVENT?
2891 * If so we can simply poke the RB_WAIT bit
2892 * and break the hang. This should work on
2893 * all but the second generation chipsets.
2894 */
2895 tmp = I915_READ_CTL(ring);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002896 if (tmp & RING_WAIT) {
Mika Kuoppala58174462014-02-25 17:11:26 +02002897 i915_handle_error(dev, false,
2898 "Kicking stuck wait on %s",
2899 ring->name);
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002900 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002901 return HANGCHECK_KICK;
Chris Wilson1ec14ad2010-12-04 11:30:53 +00002902 }
Chris Wilsona24a11e2013-03-14 17:52:05 +02002903
Chris Wilson6274f212013-06-10 11:20:21 +01002904 if (INTEL_INFO(dev)->gen >= 6 && tmp & RING_WAIT_SEMAPHORE) {
2905 switch (semaphore_passed(ring)) {
2906 default:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002907 return HANGCHECK_HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01002908 case 1:
Mika Kuoppala58174462014-02-25 17:11:26 +02002909 i915_handle_error(dev, false,
2910 "Kicking stuck semaphore on %s",
2911 ring->name);
Chris Wilson6274f212013-06-10 11:20:21 +01002912 I915_WRITE_CTL(ring, tmp);
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002913 return HANGCHECK_KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01002914 case 0:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002915 return HANGCHECK_WAIT;
Chris Wilson6274f212013-06-10 11:20:21 +01002916 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01002917 }
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002918
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002919 return HANGCHECK_HUNG;
Mika Kuoppalaed5cbb02013-05-13 16:32:11 +03002920}
2921
Ben Gamarif65d9422009-09-14 17:48:44 -04002922/**
2923 * This is called when the chip hasn't reported back with completed
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002924 * batchbuffers in a long time. We keep track per ring seqno progress and
2925 * if there are no progress, hangcheck score for that ring is increased.
2926 * Further, acthd is inspected to see if the ring is stuck. On stuck case
2927 * we kick the ring. If we see no progress on three subsequent calls
2928 * we assume chip is wedged and try to fix it by resetting the chip.
Ben Gamarif65d9422009-09-14 17:48:44 -04002929 */
Damien Lespiaua658b5d2013-08-08 22:28:56 +01002930static void i915_hangcheck_elapsed(unsigned long data)
Ben Gamarif65d9422009-09-14 17:48:44 -04002931{
2932 struct drm_device *dev = (struct drm_device *)data;
Jani Nikula2d1013d2014-03-31 14:27:17 +03002933 struct drm_i915_private *dev_priv = dev->dev_private;
Oscar Mateoa4872ba2014-05-22 14:13:33 +01002934 struct intel_engine_cs *ring;
Chris Wilsonb4519512012-05-11 14:29:30 +01002935 int i;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002936 int busy_count = 0, rings_hung = 0;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002937 bool stuck[I915_NUM_RINGS] = { 0 };
2938#define BUSY 1
2939#define KICK 5
2940#define HUNG 20
Chris Wilson893eead2010-10-27 14:44:35 +01002941
Jani Nikulad330a952014-01-21 11:24:25 +02002942 if (!i915.enable_hangcheck)
Ben Widawsky3e0dc6b2011-06-29 10:26:42 -07002943 return;
2944
Chris Wilsonb4519512012-05-11 14:29:30 +01002945 for_each_ring(ring, dev_priv, i) {
Chris Wilson50877442014-03-21 12:41:53 +00002946 u64 acthd;
2947 u32 seqno;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002948 bool busy = true;
Chris Wilsonb4519512012-05-11 14:29:30 +01002949
Chris Wilson6274f212013-06-10 11:20:21 +01002950 semaphore_clear_deadlocks(dev_priv);
2951
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002952 seqno = ring->get_seqno(ring, false);
2953 acthd = intel_ring_get_active_head(ring);
Chris Wilsond1e61e72012-04-10 17:00:41 +01002954
Chris Wilson9107e9d2013-06-10 11:20:20 +01002955 if (ring->hangcheck.seqno == seqno) {
2956 if (ring_idle(ring, seqno)) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002957 ring->hangcheck.action = HANGCHECK_IDLE;
2958
Chris Wilson9107e9d2013-06-10 11:20:20 +01002959 if (waitqueue_active(&ring->irq_queue)) {
2960 /* Issue a wake-up to catch stuck h/w. */
Chris Wilson094f9a52013-09-25 17:34:55 +01002961 if (!test_and_set_bit(ring->id, &dev_priv->gpu_error.missed_irq_rings)) {
Daniel Vetterf4adcd22013-10-28 09:24:13 +01002962 if (!(dev_priv->gpu_error.test_irq_rings & intel_ring_flag(ring)))
2963 DRM_ERROR("Hangcheck timer elapsed... %s idle\n",
2964 ring->name);
2965 else
2966 DRM_INFO("Fake missed irq on %s\n",
2967 ring->name);
Chris Wilson094f9a52013-09-25 17:34:55 +01002968 wake_up_all(&ring->irq_queue);
2969 }
2970 /* Safeguard against driver failure */
2971 ring->hangcheck.score += BUSY;
Chris Wilson9107e9d2013-06-10 11:20:20 +01002972 } else
2973 busy = false;
Mika Kuoppala05407ff2013-05-30 09:04:29 +03002974 } else {
Chris Wilson6274f212013-06-10 11:20:21 +01002975 /* We always increment the hangcheck score
2976 * if the ring is busy and still processing
2977 * the same request, so that no single request
2978 * can run indefinitely (such as a chain of
2979 * batches). The only time we do not increment
2980 * the hangcheck score on this ring, if this
2981 * ring is in a legitimate wait for another
2982 * ring. In that case the waiting ring is a
2983 * victim and we want to be sure we catch the
2984 * right culprit. Then every time we do kick
2985 * the ring, add a small increment to the
2986 * score so that we can catch a batch that is
2987 * being repeatedly kicked and so responsible
2988 * for stalling the machine.
2989 */
Mika Kuoppalaad8beae2013-06-12 12:35:32 +03002990 ring->hangcheck.action = ring_stuck(ring,
2991 acthd);
2992
2993 switch (ring->hangcheck.action) {
Mika Kuoppalada661462013-09-06 16:03:28 +03002994 case HANGCHECK_IDLE:
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002995 case HANGCHECK_WAIT:
Chris Wilson6274f212013-06-10 11:20:21 +01002996 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03002997 case HANGCHECK_ACTIVE:
Jani Nikulaea04cb32013-08-11 12:44:02 +03002998 ring->hangcheck.score += BUSY;
Chris Wilson6274f212013-06-10 11:20:21 +01002999 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003000 case HANGCHECK_KICK:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003001 ring->hangcheck.score += KICK;
Chris Wilson6274f212013-06-10 11:20:21 +01003002 break;
Jani Nikulaf2f4d822013-08-11 12:44:01 +03003003 case HANGCHECK_HUNG:
Jani Nikulaea04cb32013-08-11 12:44:02 +03003004 ring->hangcheck.score += HUNG;
Chris Wilson6274f212013-06-10 11:20:21 +01003005 stuck[i] = true;
3006 break;
3007 }
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003008 }
Chris Wilson9107e9d2013-06-10 11:20:20 +01003009 } else {
Mika Kuoppalada661462013-09-06 16:03:28 +03003010 ring->hangcheck.action = HANGCHECK_ACTIVE;
3011
Chris Wilson9107e9d2013-06-10 11:20:20 +01003012 /* Gradually reduce the count so that we catch DoS
3013 * attempts across multiple batches.
3014 */
3015 if (ring->hangcheck.score > 0)
3016 ring->hangcheck.score--;
Chris Wilsond1e61e72012-04-10 17:00:41 +01003017 }
3018
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003019 ring->hangcheck.seqno = seqno;
3020 ring->hangcheck.acthd = acthd;
Chris Wilson9107e9d2013-06-10 11:20:20 +01003021 busy_count += busy;
Chris Wilson893eead2010-10-27 14:44:35 +01003022 }
Eric Anholtb9201c12010-01-08 14:25:16 -08003023
Mika Kuoppala92cab732013-05-24 17:16:07 +03003024 for_each_ring(ring, dev_priv, i) {
Mika Kuoppalab6b0fac2014-01-30 19:04:43 +02003025 if (ring->hangcheck.score >= HANGCHECK_SCORE_RING_HUNG) {
Daniel Vetterb8d88d12013-08-28 10:57:59 +02003026 DRM_INFO("%s on %s\n",
3027 stuck[i] ? "stuck" : "no progress",
3028 ring->name);
Chris Wilsona43adf02013-06-10 11:20:22 +01003029 rings_hung++;
Mika Kuoppala92cab732013-05-24 17:16:07 +03003030 }
3031 }
3032
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003033 if (rings_hung)
Mika Kuoppala58174462014-02-25 17:11:26 +02003034 return i915_handle_error(dev, true, "Ring hung");
Ben Gamarif65d9422009-09-14 17:48:44 -04003035
Mika Kuoppala05407ff2013-05-30 09:04:29 +03003036 if (busy_count)
3037 /* Reset timer case chip hangs without another request
3038 * being added */
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003039 i915_queue_hangcheck(dev);
3040}
3041
3042void i915_queue_hangcheck(struct drm_device *dev)
3043{
3044 struct drm_i915_private *dev_priv = dev->dev_private;
Jani Nikulad330a952014-01-21 11:24:25 +02003045 if (!i915.enable_hangcheck)
Mika Kuoppala10cd45b2013-07-03 17:22:08 +03003046 return;
3047
3048 mod_timer(&dev_priv->gpu_error.hangcheck_timer,
3049 round_jiffies_up(jiffies + DRM_I915_HANGCHECK_JIFFIES));
Ben Gamarif65d9422009-09-14 17:48:44 -04003050}
3051
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003052static void ibx_irq_reset(struct drm_device *dev)
Paulo Zanoni91738a92013-06-05 14:21:51 -03003053{
3054 struct drm_i915_private *dev_priv = dev->dev_private;
3055
3056 if (HAS_PCH_NOP(dev))
3057 return;
3058
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003059 GEN5_IRQ_RESET(SDE);
Paulo Zanoni105b1222014-04-01 15:37:17 -03003060
3061 if (HAS_PCH_CPT(dev) || HAS_PCH_LPT(dev))
3062 I915_WRITE(SERR_INT, 0xffffffff);
Paulo Zanoni622364b2014-04-01 15:37:22 -03003063}
Paulo Zanoni105b1222014-04-01 15:37:17 -03003064
Paulo Zanoni622364b2014-04-01 15:37:22 -03003065/*
3066 * SDEIER is also touched by the interrupt handler to work around missed PCH
3067 * interrupts. Hence we can't update it after the interrupt handler is enabled -
3068 * instead we unconditionally enable all PCH interrupt sources here, but then
3069 * only unmask them as needed with SDEIMR.
3070 *
3071 * This function needs to be called before interrupts are enabled.
3072 */
3073static void ibx_irq_pre_postinstall(struct drm_device *dev)
3074{
3075 struct drm_i915_private *dev_priv = dev->dev_private;
3076
3077 if (HAS_PCH_NOP(dev))
3078 return;
3079
3080 WARN_ON(I915_READ(SDEIER) != 0);
Paulo Zanoni91738a92013-06-05 14:21:51 -03003081 I915_WRITE(SDEIER, 0xffffffff);
3082 POSTING_READ(SDEIER);
3083}
3084
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003085static void gen5_gt_irq_reset(struct drm_device *dev)
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003086{
3087 struct drm_i915_private *dev_priv = dev->dev_private;
3088
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003089 GEN5_IRQ_RESET(GT);
Paulo Zanonia9d356a2014-04-01 15:37:09 -03003090 if (INTEL_INFO(dev)->gen >= 6)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003091 GEN5_IRQ_RESET(GEN6_PM);
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003092}
3093
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094/* drm_dma.h hooks
3095*/
Paulo Zanonibe30b292014-04-01 15:37:25 -03003096static void ironlake_irq_reset(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003097{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003098 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003099
Paulo Zanoni0c841212014-04-01 15:37:27 -03003100 I915_WRITE(HWSTAM, 0xffffffff);
Daniel Vetterbdfcdb62012-01-05 01:05:26 +01003101
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003102 GEN5_IRQ_RESET(DE);
Paulo Zanonic6d954c2014-04-01 15:37:18 -03003103 if (IS_GEN7(dev))
3104 I915_WRITE(GEN7_ERR_INT, 0xffffffff);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003105
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003106 gen5_gt_irq_reset(dev);
Zhenyu Wangc6501562009-11-03 18:57:21 +00003107
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003108 ibx_irq_reset(dev);
Ben Widawsky7d991632013-05-28 19:22:25 -07003109}
3110
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003111static void valleyview_irq_preinstall(struct drm_device *dev)
3112{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003113 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003114 int pipe;
3115
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003116 /* VLV magic */
3117 I915_WRITE(VLV_IMR, 0);
3118 I915_WRITE(RING_IMR(RENDER_RING_BASE), 0);
3119 I915_WRITE(RING_IMR(GEN6_BSD_RING_BASE), 0);
3120 I915_WRITE(RING_IMR(BLT_RING_BASE), 0);
3121
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003122 /* and GT */
3123 I915_WRITE(GTIIR, I915_READ(GTIIR));
3124 I915_WRITE(GTIIR, I915_READ(GTIIR));
Daniel Vetterd18ea1b2013-07-12 22:43:25 +02003125
Paulo Zanoni7c4d6642014-04-01 15:37:19 -03003126 gen5_gt_irq_reset(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003127
3128 I915_WRITE(DPINVGTT, 0xff);
3129
3130 I915_WRITE(PORT_HOTPLUG_EN, 0);
3131 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3132 for_each_pipe(pipe)
3133 I915_WRITE(PIPESTAT(pipe), 0xffff);
3134 I915_WRITE(VLV_IIR, 0xffffffff);
3135 I915_WRITE(VLV_IMR, 0xffffffff);
3136 I915_WRITE(VLV_IER, 0x0);
3137 POSTING_READ(VLV_IER);
3138}
3139
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003140static void gen8_gt_irq_reset(struct drm_i915_private *dev_priv)
3141{
3142 GEN8_IRQ_RESET_NDX(GT, 0);
3143 GEN8_IRQ_RESET_NDX(GT, 1);
3144 GEN8_IRQ_RESET_NDX(GT, 2);
3145 GEN8_IRQ_RESET_NDX(GT, 3);
3146}
3147
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003148static void gen8_irq_reset(struct drm_device *dev)
Ben Widawskyabd58f02013-11-02 21:07:09 -07003149{
3150 struct drm_i915_private *dev_priv = dev->dev_private;
3151 int pipe;
3152
Ben Widawskyabd58f02013-11-02 21:07:09 -07003153 I915_WRITE(GEN8_MASTER_IRQ, 0);
3154 POSTING_READ(GEN8_MASTER_IRQ);
3155
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003156 gen8_gt_irq_reset(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003157
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003158 for_each_pipe(pipe)
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003159 GEN8_IRQ_RESET_NDX(DE_PIPE, pipe);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003160
Paulo Zanonif86f3fb2014-04-01 15:37:14 -03003161 GEN5_IRQ_RESET(GEN8_DE_PORT_);
3162 GEN5_IRQ_RESET(GEN8_DE_MISC_);
3163 GEN5_IRQ_RESET(GEN8_PCU_);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003164
Paulo Zanoni1c69eb42014-04-01 15:37:23 -03003165 ibx_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003166}
Ben Widawskyabd58f02013-11-02 21:07:09 -07003167
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003168static void cherryview_irq_preinstall(struct drm_device *dev)
3169{
3170 struct drm_i915_private *dev_priv = dev->dev_private;
3171 int pipe;
3172
3173 I915_WRITE(GEN8_MASTER_IRQ, 0);
3174 POSTING_READ(GEN8_MASTER_IRQ);
3175
Daniel Vetterd6e3cca2014-05-22 22:18:22 +02003176 gen8_gt_irq_reset(dev_priv);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003177
3178 GEN5_IRQ_RESET(GEN8_PCU_);
3179
3180 POSTING_READ(GEN8_PCU_IIR);
3181
3182 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK_CHV);
3183
3184 I915_WRITE(PORT_HOTPLUG_EN, 0);
3185 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3186
3187 for_each_pipe(pipe)
3188 I915_WRITE(PIPESTAT(pipe), 0xffff);
3189
3190 I915_WRITE(VLV_IMR, 0xffffffff);
3191 I915_WRITE(VLV_IER, 0x0);
3192 I915_WRITE(VLV_IIR, 0xffffffff);
3193 POSTING_READ(VLV_IIR);
3194}
3195
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003196static void ibx_hpd_irq_setup(struct drm_device *dev)
Keith Packard7fe0b972011-09-19 13:31:02 -07003197{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003198 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003199 struct drm_mode_config *mode_config = &dev->mode_config;
3200 struct intel_encoder *intel_encoder;
Daniel Vetterfee884e2013-07-04 23:35:21 +02003201 u32 hotplug_irqs, hotplug, enabled_irqs = 0;
Keith Packard7fe0b972011-09-19 13:31:02 -07003202
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003203 if (HAS_PCH_IBX(dev)) {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003204 hotplug_irqs = SDE_HOTPLUG_MASK;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003205 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003206 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003207 enabled_irqs |= hpd_ibx[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003208 } else {
Daniel Vetterfee884e2013-07-04 23:35:21 +02003209 hotplug_irqs = SDE_HOTPLUG_MASK_CPT;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003210 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
Egbert Eichcd569ae2013-04-16 13:36:57 +02003211 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
Daniel Vetterfee884e2013-07-04 23:35:21 +02003212 enabled_irqs |= hpd_cpt[intel_encoder->hpd_pin];
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003213 }
3214
Daniel Vetterfee884e2013-07-04 23:35:21 +02003215 ibx_display_interrupt_update(dev_priv, hotplug_irqs, enabled_irqs);
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003216
3217 /*
3218 * Enable digital hotplug on the PCH, and configure the DP short pulse
3219 * duration to 2ms (which is the minimum in the Display Port spec)
3220 *
3221 * This register is the same on all known PCH chips.
3222 */
Keith Packard7fe0b972011-09-19 13:31:02 -07003223 hotplug = I915_READ(PCH_PORT_HOTPLUG);
3224 hotplug &= ~(PORTD_PULSE_DURATION_MASK|PORTC_PULSE_DURATION_MASK|PORTB_PULSE_DURATION_MASK);
3225 hotplug |= PORTD_HOTPLUG_ENABLE | PORTD_PULSE_DURATION_2ms;
3226 hotplug |= PORTC_HOTPLUG_ENABLE | PORTC_PULSE_DURATION_2ms;
3227 hotplug |= PORTB_HOTPLUG_ENABLE | PORTB_PULSE_DURATION_2ms;
3228 I915_WRITE(PCH_PORT_HOTPLUG, hotplug);
3229}
3230
Paulo Zanonid46da432013-02-08 17:35:15 -02003231static void ibx_irq_postinstall(struct drm_device *dev)
3232{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003233 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01003234 u32 mask;
Paulo Zanonid46da432013-02-08 17:35:15 -02003235
Daniel Vetter692a04c2013-05-29 21:43:05 +02003236 if (HAS_PCH_NOP(dev))
3237 return;
3238
Paulo Zanoni105b1222014-04-01 15:37:17 -03003239 if (HAS_PCH_IBX(dev))
Daniel Vetter5c673b62014-03-07 20:34:46 +01003240 mask = SDE_GMBUS | SDE_AUX_MASK | SDE_POISON;
Paulo Zanoni105b1222014-04-01 15:37:17 -03003241 else
Daniel Vetter5c673b62014-03-07 20:34:46 +01003242 mask = SDE_GMBUS_CPT | SDE_AUX_MASK_CPT;
Paulo Zanoni86642812013-04-12 17:57:57 -03003243
Paulo Zanoni337ba012014-04-01 15:37:16 -03003244 GEN5_ASSERT_IIR_IS_ZERO(SDEIIR);
Paulo Zanonid46da432013-02-08 17:35:15 -02003245 I915_WRITE(SDEIMR, ~mask);
Paulo Zanonid46da432013-02-08 17:35:15 -02003246}
3247
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003248static void gen5_gt_irq_postinstall(struct drm_device *dev)
3249{
3250 struct drm_i915_private *dev_priv = dev->dev_private;
3251 u32 pm_irqs, gt_irqs;
3252
3253 pm_irqs = gt_irqs = 0;
3254
3255 dev_priv->gt_irq_mask = ~0;
Ben Widawsky040d2ba2013-09-19 11:01:40 -07003256 if (HAS_L3_DPF(dev)) {
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003257 /* L3 parity interrupt is always unmasked. */
Ben Widawsky35a85ac2013-09-19 11:13:41 -07003258 dev_priv->gt_irq_mask = ~GT_PARITY_ERROR(dev);
3259 gt_irqs |= GT_PARITY_ERROR(dev);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003260 }
3261
3262 gt_irqs |= GT_RENDER_USER_INTERRUPT;
3263 if (IS_GEN5(dev)) {
3264 gt_irqs |= GT_RENDER_PIPECTL_NOTIFY_INTERRUPT |
3265 ILK_BSD_USER_INTERRUPT;
3266 } else {
3267 gt_irqs |= GT_BLT_USER_INTERRUPT | GT_BSD_USER_INTERRUPT;
3268 }
3269
Paulo Zanoni35079892014-04-01 15:37:15 -03003270 GEN5_IRQ_INIT(GT, dev_priv->gt_irq_mask, gt_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003271
3272 if (INTEL_INFO(dev)->gen >= 6) {
Deepak Sa6706b42014-03-15 20:23:22 +05303273 pm_irqs |= dev_priv->pm_rps_events;
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003274
3275 if (HAS_VEBOX(dev))
3276 pm_irqs |= PM_VEBOX_USER_INTERRUPT;
3277
Paulo Zanoni605cd252013-08-06 18:57:15 -03003278 dev_priv->pm_irq_mask = 0xffffffff;
Paulo Zanoni35079892014-04-01 15:37:15 -03003279 GEN5_IRQ_INIT(GEN6_PM, dev_priv->pm_irq_mask, pm_irqs);
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003280 }
3281}
3282
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003283static int ironlake_irq_postinstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003284{
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003285 unsigned long irqflags;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003286 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003287 u32 display_mask, extra_mask;
3288
3289 if (INTEL_INFO(dev)->gen >= 7) {
3290 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE_IVB |
3291 DE_PCH_EVENT_IVB | DE_PLANEC_FLIP_DONE_IVB |
3292 DE_PLANEB_FLIP_DONE_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003293 DE_PLANEA_FLIP_DONE_IVB | DE_AUX_CHANNEL_A_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003294 extra_mask = (DE_PIPEC_VBLANK_IVB | DE_PIPEB_VBLANK_IVB |
Daniel Vetter5c673b62014-03-07 20:34:46 +01003295 DE_PIPEA_VBLANK_IVB | DE_ERR_INT_IVB);
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003296 } else {
3297 display_mask = (DE_MASTER_IRQ_CONTROL | DE_GSE | DE_PCH_EVENT |
3298 DE_PLANEA_FLIP_DONE | DE_PLANEB_FLIP_DONE |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003299 DE_AUX_CHANNEL_A |
Daniel Vetter5b3a8562013-10-16 22:55:48 +02003300 DE_PIPEB_CRC_DONE | DE_PIPEA_CRC_DONE |
3301 DE_POISON);
Daniel Vetter5c673b62014-03-07 20:34:46 +01003302 extra_mask = DE_PIPEA_VBLANK | DE_PIPEB_VBLANK | DE_PCU_EVENT |
3303 DE_PIPEB_FIFO_UNDERRUN | DE_PIPEA_FIFO_UNDERRUN;
Paulo Zanoni8e76f8d2013-07-12 20:01:56 -03003304 }
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003305
Chris Wilson1ec14ad2010-12-04 11:30:53 +00003306 dev_priv->irq_mask = ~display_mask;
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003307
Paulo Zanoni0c841212014-04-01 15:37:27 -03003308 I915_WRITE(HWSTAM, 0xeffe);
3309
Paulo Zanoni622364b2014-04-01 15:37:22 -03003310 ibx_irq_pre_postinstall(dev);
3311
Paulo Zanoni35079892014-04-01 15:37:15 -03003312 GEN5_IRQ_INIT(DE, dev_priv->irq_mask, display_mask | extra_mask);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003313
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003314 gen5_gt_irq_postinstall(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003315
Paulo Zanonid46da432013-02-08 17:35:15 -02003316 ibx_irq_postinstall(dev);
Keith Packard7fe0b972011-09-19 13:31:02 -07003317
Jesse Barnesf97108d2010-01-29 11:27:07 -08003318 if (IS_IRONLAKE_M(dev)) {
Daniel Vetter6005ce42013-06-27 13:44:59 +02003319 /* Enable PCU event interrupts
3320 *
3321 * spinlocking not required here for correctness since interrupt
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003322 * setup is guaranteed to run in single-threaded context. But we
3323 * need it to make the assert_spin_locked happy. */
3324 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003325 ironlake_enable_display_irq(dev_priv, DE_PCU_EVENT);
Daniel Vetter4bc9d432013-06-27 13:44:58 +02003326 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnesf97108d2010-01-29 11:27:07 -08003327 }
3328
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003329 return 0;
3330}
3331
Imre Deakf8b79e52014-03-04 19:23:07 +02003332static void valleyview_display_irqs_install(struct drm_i915_private *dev_priv)
3333{
3334 u32 pipestat_mask;
3335 u32 iir_mask;
3336
3337 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3338 PIPE_FIFO_UNDERRUN_STATUS;
3339
3340 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3341 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3342 POSTING_READ(PIPESTAT(PIPE_A));
3343
3344 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3345 PIPE_CRC_DONE_INTERRUPT_STATUS;
3346
3347 i915_enable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3348 PIPE_GMBUS_INTERRUPT_STATUS);
3349 i915_enable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3350
3351 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3352 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3353 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
3354 dev_priv->irq_mask &= ~iir_mask;
3355
3356 I915_WRITE(VLV_IIR, iir_mask);
3357 I915_WRITE(VLV_IIR, iir_mask);
3358 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3359 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3360 POSTING_READ(VLV_IER);
3361}
3362
3363static void valleyview_display_irqs_uninstall(struct drm_i915_private *dev_priv)
3364{
3365 u32 pipestat_mask;
3366 u32 iir_mask;
3367
3368 iir_mask = I915_DISPLAY_PORT_INTERRUPT |
3369 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Imre Deak6c7fba02014-03-10 19:44:48 +02003370 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT;
Imre Deakf8b79e52014-03-04 19:23:07 +02003371
3372 dev_priv->irq_mask |= iir_mask;
3373 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
3374 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3375 I915_WRITE(VLV_IIR, iir_mask);
3376 I915_WRITE(VLV_IIR, iir_mask);
3377 POSTING_READ(VLV_IIR);
3378
3379 pipestat_mask = PLANE_FLIP_DONE_INT_STATUS_VLV |
3380 PIPE_CRC_DONE_INTERRUPT_STATUS;
3381
3382 i915_disable_pipestat(dev_priv, PIPE_A, pipestat_mask |
3383 PIPE_GMBUS_INTERRUPT_STATUS);
3384 i915_disable_pipestat(dev_priv, PIPE_B, pipestat_mask);
3385
3386 pipestat_mask = PIPESTAT_INT_STATUS_MASK |
3387 PIPE_FIFO_UNDERRUN_STATUS;
3388 I915_WRITE(PIPESTAT(PIPE_A), pipestat_mask);
3389 I915_WRITE(PIPESTAT(PIPE_B), pipestat_mask);
3390 POSTING_READ(PIPESTAT(PIPE_A));
3391}
3392
3393void valleyview_enable_display_irqs(struct drm_i915_private *dev_priv)
3394{
3395 assert_spin_locked(&dev_priv->irq_lock);
3396
3397 if (dev_priv->display_irqs_enabled)
3398 return;
3399
3400 dev_priv->display_irqs_enabled = true;
3401
3402 if (dev_priv->dev->irq_enabled)
3403 valleyview_display_irqs_install(dev_priv);
3404}
3405
3406void valleyview_disable_display_irqs(struct drm_i915_private *dev_priv)
3407{
3408 assert_spin_locked(&dev_priv->irq_lock);
3409
3410 if (!dev_priv->display_irqs_enabled)
3411 return;
3412
3413 dev_priv->display_irqs_enabled = false;
3414
3415 if (dev_priv->dev->irq_enabled)
3416 valleyview_display_irqs_uninstall(dev_priv);
3417}
3418
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003419static int valleyview_irq_postinstall(struct drm_device *dev)
3420{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003421 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb79480b2013-06-27 17:52:10 +02003422 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003423
Imre Deakf8b79e52014-03-04 19:23:07 +02003424 dev_priv->irq_mask = ~0;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003425
Daniel Vetter20afbda2012-12-11 14:05:07 +01003426 I915_WRITE(PORT_HOTPLUG_EN, 0);
3427 POSTING_READ(PORT_HOTPLUG_EN);
3428
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003429 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
Imre Deakf8b79e52014-03-04 19:23:07 +02003430 I915_WRITE(VLV_IER, ~dev_priv->irq_mask);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003431 I915_WRITE(VLV_IIR, 0xffffffff);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003432 POSTING_READ(VLV_IER);
3433
Daniel Vetterb79480b2013-06-27 17:52:10 +02003434 /* Interrupt setup is already guaranteed to be single-threaded, this is
3435 * just to make the assert_spin_locked check happy. */
3436 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deakf8b79e52014-03-04 19:23:07 +02003437 if (dev_priv->display_irqs_enabled)
3438 valleyview_display_irqs_install(dev_priv);
Daniel Vetterb79480b2013-06-27 17:52:10 +02003439 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Jesse Barnes31acc7f2012-06-20 10:53:11 -07003440
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003441 I915_WRITE(VLV_IIR, 0xffffffff);
3442 I915_WRITE(VLV_IIR, 0xffffffff);
3443
Daniel Vetter0a9a8c92013-07-12 22:43:26 +02003444 gen5_gt_irq_postinstall(dev);
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003445
3446 /* ack & enable invalid PTE error interrupts */
3447#if 0 /* FIXME: add support to irq handler for checking these bits */
3448 I915_WRITE(DPINVGTT, DPINVGTT_STATUS_MASK);
3449 I915_WRITE(DPINVGTT, DPINVGTT_EN_MASK);
3450#endif
3451
3452 I915_WRITE(VLV_MASTER_IER, MASTER_INTERRUPT_ENABLE);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003453
3454 return 0;
3455}
3456
Ben Widawskyabd58f02013-11-02 21:07:09 -07003457static void gen8_gt_irq_postinstall(struct drm_i915_private *dev_priv)
3458{
3459 int i;
3460
3461 /* These are interrupts we'll toggle with the ring mask register */
3462 uint32_t gt_interrupts[] = {
3463 GT_RENDER_USER_INTERRUPT << GEN8_RCS_IRQ_SHIFT |
3464 GT_RENDER_L3_PARITY_ERROR_INTERRUPT |
3465 GT_RENDER_USER_INTERRUPT << GEN8_BCS_IRQ_SHIFT,
3466 GT_RENDER_USER_INTERRUPT << GEN8_VCS1_IRQ_SHIFT |
3467 GT_RENDER_USER_INTERRUPT << GEN8_VCS2_IRQ_SHIFT,
3468 0,
3469 GT_RENDER_USER_INTERRUPT << GEN8_VECS_IRQ_SHIFT
3470 };
3471
Paulo Zanoni337ba012014-04-01 15:37:16 -03003472 for (i = 0; i < ARRAY_SIZE(gt_interrupts); i++)
Paulo Zanoni35079892014-04-01 15:37:15 -03003473 GEN8_IRQ_INIT_NDX(GT, i, ~gt_interrupts[i], gt_interrupts[i]);
Ben Widawsky09610212014-05-15 20:58:08 +03003474
3475 dev_priv->pm_irq_mask = 0xffffffff;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003476}
3477
3478static void gen8_de_irq_postinstall(struct drm_i915_private *dev_priv)
3479{
3480 struct drm_device *dev = dev_priv->dev;
Damien Lespiaud0e1f1c2014-04-08 01:22:44 +01003481 uint32_t de_pipe_masked = GEN8_PIPE_PRIMARY_FLIP_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003482 GEN8_PIPE_CDCLK_CRC_DONE |
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003483 GEN8_DE_PIPE_IRQ_FAULT_ERRORS;
Daniel Vetter5c673b62014-03-07 20:34:46 +01003484 uint32_t de_pipe_enables = de_pipe_masked | GEN8_PIPE_VBLANK |
3485 GEN8_PIPE_FIFO_UNDERRUN;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003486 int pipe;
Daniel Vetter13b3a0a2013-11-07 15:31:52 +01003487 dev_priv->de_irq_mask[PIPE_A] = ~de_pipe_masked;
3488 dev_priv->de_irq_mask[PIPE_B] = ~de_pipe_masked;
3489 dev_priv->de_irq_mask[PIPE_C] = ~de_pipe_masked;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003490
Paulo Zanoni337ba012014-04-01 15:37:16 -03003491 for_each_pipe(pipe)
Paulo Zanoni35079892014-04-01 15:37:15 -03003492 GEN8_IRQ_INIT_NDX(DE_PIPE, pipe, dev_priv->de_irq_mask[pipe],
3493 de_pipe_enables);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003494
Paulo Zanoni35079892014-04-01 15:37:15 -03003495 GEN5_IRQ_INIT(GEN8_DE_PORT_, ~GEN8_AUX_CHANNEL_A, GEN8_AUX_CHANNEL_A);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003496}
3497
3498static int gen8_irq_postinstall(struct drm_device *dev)
3499{
3500 struct drm_i915_private *dev_priv = dev->dev_private;
3501
Paulo Zanoni622364b2014-04-01 15:37:22 -03003502 ibx_irq_pre_postinstall(dev);
3503
Ben Widawskyabd58f02013-11-02 21:07:09 -07003504 gen8_gt_irq_postinstall(dev_priv);
3505 gen8_de_irq_postinstall(dev_priv);
3506
3507 ibx_irq_postinstall(dev);
3508
3509 I915_WRITE(GEN8_MASTER_IRQ, DE_MASTER_IRQ_CONTROL);
3510 POSTING_READ(GEN8_MASTER_IRQ);
3511
3512 return 0;
3513}
3514
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003515static int cherryview_irq_postinstall(struct drm_device *dev)
3516{
3517 struct drm_i915_private *dev_priv = dev->dev_private;
3518 u32 enable_mask = I915_DISPLAY_PORT_INTERRUPT |
3519 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003520 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
Ville Syrjälä3278f672014-04-09 13:28:49 +03003521 I915_DISPLAY_PIPE_C_EVENT_INTERRUPT;
3522 u32 pipestat_enable = PLANE_FLIP_DONE_INT_STATUS_VLV |
3523 PIPE_CRC_DONE_INTERRUPT_STATUS;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003524 unsigned long irqflags;
3525 int pipe;
3526
3527 /*
3528 * Leave vblank interrupts masked initially. enable/disable will
3529 * toggle them based on usage.
3530 */
Ville Syrjälä3278f672014-04-09 13:28:49 +03003531 dev_priv->irq_mask = ~enable_mask;
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003532
3533 for_each_pipe(pipe)
3534 I915_WRITE(PIPESTAT(pipe), 0xffff);
3535
3536 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Ville Syrjälä3278f672014-04-09 13:28:49 +03003537 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003538 for_each_pipe(pipe)
3539 i915_enable_pipestat(dev_priv, pipe, pipestat_enable);
3540 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3541
3542 I915_WRITE(VLV_IIR, 0xffffffff);
3543 I915_WRITE(VLV_IMR, dev_priv->irq_mask);
3544 I915_WRITE(VLV_IER, enable_mask);
3545
3546 gen8_gt_irq_postinstall(dev_priv);
3547
3548 I915_WRITE(GEN8_MASTER_IRQ, MASTER_INTERRUPT_ENABLE);
3549 POSTING_READ(GEN8_MASTER_IRQ);
3550
3551 return 0;
3552}
3553
Ben Widawskyabd58f02013-11-02 21:07:09 -07003554static void gen8_irq_uninstall(struct drm_device *dev)
3555{
3556 struct drm_i915_private *dev_priv = dev->dev_private;
Ben Widawskyabd58f02013-11-02 21:07:09 -07003557
3558 if (!dev_priv)
3559 return;
3560
Paulo Zanonid4eb6b12014-04-01 15:37:24 -03003561 intel_hpd_irq_uninstall(dev_priv);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003562
Paulo Zanoni823f6b32014-04-01 15:37:26 -03003563 gen8_irq_reset(dev);
Ben Widawskyabd58f02013-11-02 21:07:09 -07003564}
3565
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003566static void valleyview_irq_uninstall(struct drm_device *dev)
3567{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003568 struct drm_i915_private *dev_priv = dev->dev_private;
Imre Deakf8b79e52014-03-04 19:23:07 +02003569 unsigned long irqflags;
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003570 int pipe;
3571
3572 if (!dev_priv)
3573 return;
3574
Imre Deak843d0e72014-04-14 20:24:23 +03003575 I915_WRITE(VLV_MASTER_IER, 0);
3576
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02003577 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003578
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003579 for_each_pipe(pipe)
3580 I915_WRITE(PIPESTAT(pipe), 0xffff);
3581
3582 I915_WRITE(HWSTAM, 0xffffffff);
3583 I915_WRITE(PORT_HOTPLUG_EN, 0);
3584 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Imre Deakf8b79e52014-03-04 19:23:07 +02003585
3586 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3587 if (dev_priv->display_irqs_enabled)
3588 valleyview_display_irqs_uninstall(dev_priv);
3589 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3590
3591 dev_priv->irq_mask = 0;
3592
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07003593 I915_WRITE(VLV_IIR, 0xffffffff);
3594 I915_WRITE(VLV_IMR, 0xffffffff);
3595 I915_WRITE(VLV_IER, 0x0);
3596 POSTING_READ(VLV_IER);
3597}
3598
Ville Syrjälä43f328d2014-04-09 20:40:52 +03003599static void cherryview_irq_uninstall(struct drm_device *dev)
3600{
3601 struct drm_i915_private *dev_priv = dev->dev_private;
3602 int pipe;
3603
3604 if (!dev_priv)
3605 return;
3606
3607 I915_WRITE(GEN8_MASTER_IRQ, 0);
3608 POSTING_READ(GEN8_MASTER_IRQ);
3609
3610#define GEN8_IRQ_FINI_NDX(type, which) \
3611do { \
3612 I915_WRITE(GEN8_##type##_IMR(which), 0xffffffff); \
3613 I915_WRITE(GEN8_##type##_IER(which), 0); \
3614 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3615 POSTING_READ(GEN8_##type##_IIR(which)); \
3616 I915_WRITE(GEN8_##type##_IIR(which), 0xffffffff); \
3617} while (0)
3618
3619#define GEN8_IRQ_FINI(type) \
3620do { \
3621 I915_WRITE(GEN8_##type##_IMR, 0xffffffff); \
3622 I915_WRITE(GEN8_##type##_IER, 0); \
3623 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3624 POSTING_READ(GEN8_##type##_IIR); \
3625 I915_WRITE(GEN8_##type##_IIR, 0xffffffff); \
3626} while (0)
3627
3628 GEN8_IRQ_FINI_NDX(GT, 0);
3629 GEN8_IRQ_FINI_NDX(GT, 1);
3630 GEN8_IRQ_FINI_NDX(GT, 2);
3631 GEN8_IRQ_FINI_NDX(GT, 3);
3632
3633 GEN8_IRQ_FINI(PCU);
3634
3635#undef GEN8_IRQ_FINI
3636#undef GEN8_IRQ_FINI_NDX
3637
3638 I915_WRITE(PORT_HOTPLUG_EN, 0);
3639 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3640
3641 for_each_pipe(pipe)
3642 I915_WRITE(PIPESTAT(pipe), 0xffff);
3643
3644 I915_WRITE(VLV_IMR, 0xffffffff);
3645 I915_WRITE(VLV_IER, 0x0);
3646 I915_WRITE(VLV_IIR, 0xffffffff);
3647 POSTING_READ(VLV_IIR);
3648}
3649
Jesse Barnesf71d4af2011-06-28 13:00:41 -07003650static void ironlake_irq_uninstall(struct drm_device *dev)
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003651{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003652 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes46979952011-04-07 13:53:55 -07003653
3654 if (!dev_priv)
3655 return;
3656
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02003657 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02003658
Paulo Zanonibe30b292014-04-01 15:37:25 -03003659 ironlake_irq_reset(dev);
Zhenyu Wang036a4a72009-06-08 14:40:19 +08003660}
3661
Chris Wilsonc2798b12012-04-22 21:13:57 +01003662static void i8xx_irq_preinstall(struct drm_device * dev)
3663{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003664 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003665 int pipe;
3666
Chris Wilsonc2798b12012-04-22 21:13:57 +01003667 for_each_pipe(pipe)
3668 I915_WRITE(PIPESTAT(pipe), 0);
3669 I915_WRITE16(IMR, 0xffff);
3670 I915_WRITE16(IER, 0x0);
3671 POSTING_READ16(IER);
3672}
3673
3674static int i8xx_irq_postinstall(struct drm_device *dev)
3675{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003676 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter379ef822013-10-16 22:55:56 +02003677 unsigned long irqflags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003678
Chris Wilsonc2798b12012-04-22 21:13:57 +01003679 I915_WRITE16(EMR,
3680 ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3681
3682 /* Unmask the interrupts that we always want on. */
3683 dev_priv->irq_mask =
3684 ~(I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3685 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3686 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3687 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3688 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3689 I915_WRITE16(IMR, dev_priv->irq_mask);
3690
3691 I915_WRITE16(IER,
3692 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3693 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3694 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3695 I915_USER_INTERRUPT);
3696 POSTING_READ16(IER);
3697
Daniel Vetter379ef822013-10-16 22:55:56 +02003698 /* Interrupt setup is already guaranteed to be single-threaded, this is
3699 * just to make the assert_spin_locked check happy. */
3700 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02003701 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3702 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetter379ef822013-10-16 22:55:56 +02003703 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3704
Chris Wilsonc2798b12012-04-22 21:13:57 +01003705 return 0;
3706}
3707
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003708/*
3709 * Returns true when a page flip has completed.
3710 */
3711static bool i8xx_handle_vblank(struct drm_device *dev,
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003712 int plane, int pipe, u32 iir)
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003713{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003714 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003715 u16 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003716
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003717 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003718 return false;
3719
3720 if ((iir & flip_pending) == 0)
3721 return false;
3722
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003723 intel_prepare_page_flip(dev, plane);
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003724
3725 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3726 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3727 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3728 * the flip is completed (no longer pending). Since this doesn't raise
3729 * an interrupt per se, we watch for the change at vblank.
3730 */
3731 if (I915_READ16(ISR) & flip_pending)
3732 return false;
3733
3734 intel_finish_page_flip(dev, pipe);
3735
3736 return true;
3737}
3738
Daniel Vetterff1f5252012-10-02 15:10:55 +02003739static irqreturn_t i8xx_irq_handler(int irq, void *arg)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003740{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003741 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003742 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003743 u16 iir, new_iir;
3744 u32 pipe_stats[2];
3745 unsigned long irqflags;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003746 int pipe;
3747 u16 flip_mask =
3748 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3749 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
3750
Chris Wilsonc2798b12012-04-22 21:13:57 +01003751 iir = I915_READ16(IIR);
3752 if (iir == 0)
3753 return IRQ_NONE;
3754
3755 while (iir & ~flip_mask) {
3756 /* Can't rely on pipestat interrupt bit in iir as it might
3757 * have been cleared after the pipestat interrupt was received.
3758 * It doesn't set the bit in iir again, but it still produces
3759 * interrupts (for non-MSI).
3760 */
3761 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3762 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02003763 i915_handle_error(dev, false,
3764 "Command parser error, iir 0x%08x",
3765 iir);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003766
3767 for_each_pipe(pipe) {
3768 int reg = PIPESTAT(pipe);
3769 pipe_stats[pipe] = I915_READ(reg);
3770
3771 /*
3772 * Clear the PIPE*STAT regs before the IIR
3773 */
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003774 if (pipe_stats[pipe] & 0x8000ffff)
Chris Wilsonc2798b12012-04-22 21:13:57 +01003775 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003776 }
3777 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3778
3779 I915_WRITE16(IIR, iir & ~flip_mask);
3780 new_iir = I915_READ16(IIR); /* Flush posted writes */
3781
Daniel Vetterd05c6172012-04-26 23:28:09 +02003782 i915_update_dri1_breadcrumb(dev);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003783
3784 if (iir & I915_USER_INTERRUPT)
3785 notify_ring(dev, &dev_priv->ring[RCS]);
3786
Daniel Vetter4356d582013-10-16 22:55:55 +02003787 for_each_pipe(pipe) {
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003788 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003789 if (HAS_FBC(dev))
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003790 plane = !plane;
3791
Daniel Vetter4356d582013-10-16 22:55:55 +02003792 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä1f1c2e22013-11-28 17:30:01 +02003793 i8xx_handle_vblank(dev, plane, pipe, iir))
3794 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsonc2798b12012-04-22 21:13:57 +01003795
Daniel Vetter4356d582013-10-16 22:55:55 +02003796 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02003797 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003798
3799 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
3800 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02003801 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Daniel Vetter4356d582013-10-16 22:55:55 +02003802 }
Chris Wilsonc2798b12012-04-22 21:13:57 +01003803
3804 iir = new_iir;
3805 }
3806
3807 return IRQ_HANDLED;
3808}
3809
3810static void i8xx_irq_uninstall(struct drm_device * dev)
3811{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003812 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc2798b12012-04-22 21:13:57 +01003813 int pipe;
3814
Chris Wilsonc2798b12012-04-22 21:13:57 +01003815 for_each_pipe(pipe) {
3816 /* Clear enable bits; then clear status bits */
3817 I915_WRITE(PIPESTAT(pipe), 0);
3818 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
3819 }
3820 I915_WRITE16(IMR, 0xffff);
3821 I915_WRITE16(IER, 0x0);
3822 I915_WRITE16(IIR, I915_READ16(IIR));
3823}
3824
Chris Wilsona266c7d2012-04-24 22:59:44 +01003825static void i915_irq_preinstall(struct drm_device * dev)
3826{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003827 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003828 int pipe;
3829
Chris Wilsona266c7d2012-04-24 22:59:44 +01003830 if (I915_HAS_HOTPLUG(dev)) {
3831 I915_WRITE(PORT_HOTPLUG_EN, 0);
3832 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
3833 }
3834
Chris Wilson00d98eb2012-04-24 22:59:48 +01003835 I915_WRITE16(HWSTAM, 0xeffe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003836 for_each_pipe(pipe)
3837 I915_WRITE(PIPESTAT(pipe), 0);
3838 I915_WRITE(IMR, 0xffffffff);
3839 I915_WRITE(IER, 0x0);
3840 POSTING_READ(IER);
3841}
3842
3843static int i915_irq_postinstall(struct drm_device *dev)
3844{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003845 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson38bde182012-04-24 22:59:50 +01003846 u32 enable_mask;
Daniel Vetter379ef822013-10-16 22:55:56 +02003847 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003848
Chris Wilson38bde182012-04-24 22:59:50 +01003849 I915_WRITE(EMR, ~(I915_ERROR_PAGE_TABLE | I915_ERROR_MEMORY_REFRESH));
3850
3851 /* Unmask the interrupts that we always want on. */
3852 dev_priv->irq_mask =
3853 ~(I915_ASLE_INTERRUPT |
3854 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3855 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3856 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3857 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
3858 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
3859
3860 enable_mask =
3861 I915_ASLE_INTERRUPT |
3862 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
3863 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
3864 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT |
3865 I915_USER_INTERRUPT;
3866
Chris Wilsona266c7d2012-04-24 22:59:44 +01003867 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetter20afbda2012-12-11 14:05:07 +01003868 I915_WRITE(PORT_HOTPLUG_EN, 0);
3869 POSTING_READ(PORT_HOTPLUG_EN);
3870
Chris Wilsona266c7d2012-04-24 22:59:44 +01003871 /* Enable in IER... */
3872 enable_mask |= I915_DISPLAY_PORT_INTERRUPT;
3873 /* and unmask in IMR */
3874 dev_priv->irq_mask &= ~I915_DISPLAY_PORT_INTERRUPT;
3875 }
3876
Chris Wilsona266c7d2012-04-24 22:59:44 +01003877 I915_WRITE(IMR, dev_priv->irq_mask);
3878 I915_WRITE(IER, enable_mask);
3879 POSTING_READ(IER);
3880
Jani Nikulaf49e38d2013-04-29 13:02:54 +03003881 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01003882
Daniel Vetter379ef822013-10-16 22:55:56 +02003883 /* Interrupt setup is already guaranteed to be single-threaded, this is
3884 * just to make the assert_spin_locked check happy. */
3885 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02003886 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
3887 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetter379ef822013-10-16 22:55:56 +02003888 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3889
Daniel Vetter20afbda2012-12-11 14:05:07 +01003890 return 0;
3891}
3892
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003893/*
3894 * Returns true when a page flip has completed.
3895 */
3896static bool i915_handle_vblank(struct drm_device *dev,
3897 int plane, int pipe, u32 iir)
3898{
Jani Nikula2d1013d2014-03-31 14:27:17 +03003899 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003900 u32 flip_pending = DISPLAY_PLANE_FLIP_PENDING(plane);
3901
Ville Syrjälä8d7849d2014-04-29 13:35:46 +03003902 if (!intel_pipe_handle_vblank(dev, pipe))
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003903 return false;
3904
3905 if ((iir & flip_pending) == 0)
3906 return false;
3907
3908 intel_prepare_page_flip(dev, plane);
3909
3910 /* We detect FlipDone by looking for the change in PendingFlip from '1'
3911 * to '0' on the following vblank, i.e. IIR has the Pendingflip
3912 * asserted following the MI_DISPLAY_FLIP, but ISR is deasserted, hence
3913 * the flip is completed (no longer pending). Since this doesn't raise
3914 * an interrupt per se, we watch for the change at vblank.
3915 */
3916 if (I915_READ(ISR) & flip_pending)
3917 return false;
3918
3919 intel_finish_page_flip(dev, pipe);
3920
3921 return true;
3922}
3923
Daniel Vetterff1f5252012-10-02 15:10:55 +02003924static irqreturn_t i915_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01003925{
Daniel Vetter45a83f82014-05-12 19:17:55 +02003926 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03003927 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson8291ee92012-04-24 22:59:47 +01003928 u32 iir, new_iir, pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01003929 unsigned long irqflags;
Chris Wilson38bde182012-04-24 22:59:50 +01003930 u32 flip_mask =
3931 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
3932 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilson38bde182012-04-24 22:59:50 +01003933 int pipe, ret = IRQ_NONE;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003934
Chris Wilsona266c7d2012-04-24 22:59:44 +01003935 iir = I915_READ(IIR);
Chris Wilson38bde182012-04-24 22:59:50 +01003936 do {
3937 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson8291ee92012-04-24 22:59:47 +01003938 bool blc_event = false;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003939
3940 /* Can't rely on pipestat interrupt bit in iir as it might
3941 * have been cleared after the pipestat interrupt was received.
3942 * It doesn't set the bit in iir again, but it still produces
3943 * interrupts (for non-MSI).
3944 */
3945 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
3946 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02003947 i915_handle_error(dev, false,
3948 "Command parser error, iir 0x%08x",
3949 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003950
3951 for_each_pipe(pipe) {
3952 int reg = PIPESTAT(pipe);
3953 pipe_stats[pipe] = I915_READ(reg);
3954
Chris Wilson38bde182012-04-24 22:59:50 +01003955 /* Clear the PIPE*STAT regs before the IIR */
Chris Wilsona266c7d2012-04-24 22:59:44 +01003956 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01003957 I915_WRITE(reg, pipe_stats[pipe]);
Chris Wilson38bde182012-04-24 22:59:50 +01003958 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01003959 }
3960 }
3961 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
3962
3963 if (!irq_received)
3964 break;
3965
Chris Wilsona266c7d2012-04-24 22:59:44 +01003966 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03003967 if (I915_HAS_HOTPLUG(dev) &&
3968 iir & I915_DISPLAY_PORT_INTERRUPT)
3969 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003970
Chris Wilson38bde182012-04-24 22:59:50 +01003971 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003972 new_iir = I915_READ(IIR); /* Flush posted writes */
3973
Chris Wilsona266c7d2012-04-24 22:59:44 +01003974 if (iir & I915_USER_INTERRUPT)
3975 notify_ring(dev, &dev_priv->ring[RCS]);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003976
Chris Wilsona266c7d2012-04-24 22:59:44 +01003977 for_each_pipe(pipe) {
Chris Wilson38bde182012-04-24 22:59:50 +01003978 int plane = pipe;
Daniel Vetter3a77c4c2014-01-10 08:50:12 +01003979 if (HAS_FBC(dev))
Chris Wilson38bde182012-04-24 22:59:50 +01003980 plane = !plane;
Ville Syrjälä5e2032d2013-02-19 15:16:38 +02003981
Ville Syrjälä90a72f82013-02-19 23:16:44 +02003982 if (pipe_stats[pipe] & PIPE_VBLANK_INTERRUPT_STATUS &&
3983 i915_handle_vblank(dev, plane, pipe, iir))
3984 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(plane);
Chris Wilsona266c7d2012-04-24 22:59:44 +01003985
3986 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
3987 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02003988
3989 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02003990 i9xx_pipe_crc_irq_handler(dev, pipe);
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02003991
3992 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
3993 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02003994 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Chris Wilsona266c7d2012-04-24 22:59:44 +01003995 }
3996
Chris Wilsona266c7d2012-04-24 22:59:44 +01003997 if (blc_event || (iir & I915_ASLE_INTERRUPT))
3998 intel_opregion_asle_intr(dev);
3999
4000 /* With MSI, interrupts are only generated when iir
4001 * transitions from zero to nonzero. If another bit got
4002 * set while we were handling the existing iir bits, then
4003 * we would never get another interrupt.
4004 *
4005 * This is fine on non-MSI as well, as if we hit this path
4006 * we avoid exiting the interrupt handler only to generate
4007 * another one.
4008 *
4009 * Note that for MSI this could cause a stray interrupt report
4010 * if an interrupt landed in the time between writing IIR and
4011 * the posting read. This should be rare enough to never
4012 * trigger the 99% of 100,000 interrupts test for disabling
4013 * stray interrupts.
4014 */
Chris Wilson38bde182012-04-24 22:59:50 +01004015 ret = IRQ_HANDLED;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004016 iir = new_iir;
Chris Wilson38bde182012-04-24 22:59:50 +01004017 } while (iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004018
Daniel Vetterd05c6172012-04-26 23:28:09 +02004019 i915_update_dri1_breadcrumb(dev);
Chris Wilson8291ee92012-04-24 22:59:47 +01004020
Chris Wilsona266c7d2012-04-24 22:59:44 +01004021 return ret;
4022}
4023
4024static void i915_irq_uninstall(struct drm_device * dev)
4025{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004026 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004027 int pipe;
4028
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004029 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004030
Chris Wilsona266c7d2012-04-24 22:59:44 +01004031 if (I915_HAS_HOTPLUG(dev)) {
4032 I915_WRITE(PORT_HOTPLUG_EN, 0);
4033 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
4034 }
4035
Chris Wilson00d98eb2012-04-24 22:59:48 +01004036 I915_WRITE16(HWSTAM, 0xffff);
Chris Wilson55b39752012-04-24 22:59:49 +01004037 for_each_pipe(pipe) {
4038 /* Clear enable bits; then clear status bits */
Chris Wilsona266c7d2012-04-24 22:59:44 +01004039 I915_WRITE(PIPESTAT(pipe), 0);
Chris Wilson55b39752012-04-24 22:59:49 +01004040 I915_WRITE(PIPESTAT(pipe), I915_READ(PIPESTAT(pipe)));
4041 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004042 I915_WRITE(IMR, 0xffffffff);
4043 I915_WRITE(IER, 0x0);
4044
Chris Wilsona266c7d2012-04-24 22:59:44 +01004045 I915_WRITE(IIR, I915_READ(IIR));
4046}
4047
4048static void i965_irq_preinstall(struct drm_device * dev)
4049{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004050 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004051 int pipe;
4052
Chris Wilsonadca4732012-05-11 18:01:31 +01004053 I915_WRITE(PORT_HOTPLUG_EN, 0);
4054 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004055
4056 I915_WRITE(HWSTAM, 0xeffe);
4057 for_each_pipe(pipe)
4058 I915_WRITE(PIPESTAT(pipe), 0);
4059 I915_WRITE(IMR, 0xffffffff);
4060 I915_WRITE(IER, 0x0);
4061 POSTING_READ(IER);
4062}
4063
4064static int i965_irq_postinstall(struct drm_device *dev)
4065{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004066 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004067 u32 enable_mask;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004068 u32 error_mask;
Daniel Vetterb79480b2013-06-27 17:52:10 +02004069 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004070
Chris Wilsona266c7d2012-04-24 22:59:44 +01004071 /* Unmask the interrupts that we always want on. */
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004072 dev_priv->irq_mask = ~(I915_ASLE_INTERRUPT |
Chris Wilsonadca4732012-05-11 18:01:31 +01004073 I915_DISPLAY_PORT_INTERRUPT |
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004074 I915_DISPLAY_PIPE_A_EVENT_INTERRUPT |
4075 I915_DISPLAY_PIPE_B_EVENT_INTERRUPT |
4076 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4077 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT |
4078 I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT);
4079
4080 enable_mask = ~dev_priv->irq_mask;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004081 enable_mask &= ~(I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4082 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT);
Chris Wilsonbbba0a92012-04-24 22:59:51 +01004083 enable_mask |= I915_USER_INTERRUPT;
4084
4085 if (IS_G4X(dev))
4086 enable_mask |= I915_BSD_USER_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004087
Daniel Vetterb79480b2013-06-27 17:52:10 +02004088 /* Interrupt setup is already guaranteed to be single-threaded, this is
4089 * just to make the assert_spin_locked check happy. */
4090 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Imre Deak755e9012014-02-10 18:42:47 +02004091 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_GMBUS_INTERRUPT_STATUS);
4092 i915_enable_pipestat(dev_priv, PIPE_A, PIPE_CRC_DONE_INTERRUPT_STATUS);
4093 i915_enable_pipestat(dev_priv, PIPE_B, PIPE_CRC_DONE_INTERRUPT_STATUS);
Daniel Vetterb79480b2013-06-27 17:52:10 +02004094 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004095
Chris Wilsona266c7d2012-04-24 22:59:44 +01004096 /*
4097 * Enable some error detection, note the instruction error mask
4098 * bit is reserved, so we leave it masked.
4099 */
4100 if (IS_G4X(dev)) {
4101 error_mask = ~(GM45_ERROR_PAGE_TABLE |
4102 GM45_ERROR_MEM_PRIV |
4103 GM45_ERROR_CP_PRIV |
4104 I915_ERROR_MEMORY_REFRESH);
4105 } else {
4106 error_mask = ~(I915_ERROR_PAGE_TABLE |
4107 I915_ERROR_MEMORY_REFRESH);
4108 }
4109 I915_WRITE(EMR, error_mask);
4110
4111 I915_WRITE(IMR, dev_priv->irq_mask);
4112 I915_WRITE(IER, enable_mask);
4113 POSTING_READ(IER);
4114
Daniel Vetter20afbda2012-12-11 14:05:07 +01004115 I915_WRITE(PORT_HOTPLUG_EN, 0);
4116 POSTING_READ(PORT_HOTPLUG_EN);
4117
Jani Nikulaf49e38d2013-04-29 13:02:54 +03004118 i915_enable_asle_pipestat(dev);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004119
4120 return 0;
4121}
4122
Egbert Eichbac56d52013-02-25 12:06:51 -05004123static void i915_hpd_irq_setup(struct drm_device *dev)
Daniel Vetter20afbda2012-12-11 14:05:07 +01004124{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004125 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eiche5868a32013-02-28 04:17:12 -05004126 struct drm_mode_config *mode_config = &dev->mode_config;
Egbert Eichcd569ae2013-04-16 13:36:57 +02004127 struct intel_encoder *intel_encoder;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004128 u32 hotplug_en;
4129
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004130 assert_spin_locked(&dev_priv->irq_lock);
4131
Egbert Eichbac56d52013-02-25 12:06:51 -05004132 if (I915_HAS_HOTPLUG(dev)) {
4133 hotplug_en = I915_READ(PORT_HOTPLUG_EN);
4134 hotplug_en &= ~HOTPLUG_INT_EN_MASK;
4135 /* Note HDMI and DP share hotplug bits */
Egbert Eiche5868a32013-02-28 04:17:12 -05004136 /* enable bits are the same for all generations */
Egbert Eichcd569ae2013-04-16 13:36:57 +02004137 list_for_each_entry(intel_encoder, &mode_config->encoder_list, base.head)
4138 if (dev_priv->hpd_stats[intel_encoder->hpd_pin].hpd_mark == HPD_ENABLED)
4139 hotplug_en |= hpd_mask_i915[intel_encoder->hpd_pin];
Egbert Eichbac56d52013-02-25 12:06:51 -05004140 /* Programming the CRT detection parameters tends
4141 to generate a spurious hotplug event about three
4142 seconds later. So just do it once.
4143 */
4144 if (IS_G4X(dev))
4145 hotplug_en |= CRT_HOTPLUG_ACTIVATION_PERIOD_64;
Daniel Vetter85fc95b2013-03-27 15:47:11 +01004146 hotplug_en &= ~CRT_HOTPLUG_VOLTAGE_COMPARE_MASK;
Egbert Eichbac56d52013-02-25 12:06:51 -05004147 hotplug_en |= CRT_HOTPLUG_VOLTAGE_COMPARE_50;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004148
Egbert Eichbac56d52013-02-25 12:06:51 -05004149 /* Ignore TV since it's buggy */
4150 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
4151 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004152}
4153
Daniel Vetterff1f5252012-10-02 15:10:55 +02004154static irqreturn_t i965_irq_handler(int irq, void *arg)
Chris Wilsona266c7d2012-04-24 22:59:44 +01004155{
Daniel Vetter45a83f82014-05-12 19:17:55 +02004156 struct drm_device *dev = arg;
Jani Nikula2d1013d2014-03-31 14:27:17 +03004157 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004158 u32 iir, new_iir;
4159 u32 pipe_stats[I915_MAX_PIPES];
Chris Wilsona266c7d2012-04-24 22:59:44 +01004160 unsigned long irqflags;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004161 int ret = IRQ_NONE, pipe;
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004162 u32 flip_mask =
4163 I915_DISPLAY_PLANE_A_FLIP_PENDING_INTERRUPT |
4164 I915_DISPLAY_PLANE_B_FLIP_PENDING_INTERRUPT;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004165
Chris Wilsona266c7d2012-04-24 22:59:44 +01004166 iir = I915_READ(IIR);
4167
Chris Wilsona266c7d2012-04-24 22:59:44 +01004168 for (;;) {
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004169 bool irq_received = (iir & ~flip_mask) != 0;
Chris Wilson2c8ba292012-04-24 22:59:46 +01004170 bool blc_event = false;
4171
Chris Wilsona266c7d2012-04-24 22:59:44 +01004172 /* Can't rely on pipestat interrupt bit in iir as it might
4173 * have been cleared after the pipestat interrupt was received.
4174 * It doesn't set the bit in iir again, but it still produces
4175 * interrupts (for non-MSI).
4176 */
4177 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4178 if (iir & I915_RENDER_COMMAND_PARSER_ERROR_INTERRUPT)
Mika Kuoppala58174462014-02-25 17:11:26 +02004179 i915_handle_error(dev, false,
4180 "Command parser error, iir 0x%08x",
4181 iir);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004182
4183 for_each_pipe(pipe) {
4184 int reg = PIPESTAT(pipe);
4185 pipe_stats[pipe] = I915_READ(reg);
4186
4187 /*
4188 * Clear the PIPE*STAT regs before the IIR
4189 */
4190 if (pipe_stats[pipe] & 0x8000ffff) {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004191 I915_WRITE(reg, pipe_stats[pipe]);
Ville Syrjälä501e01d2014-01-17 11:35:15 +02004192 irq_received = true;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004193 }
4194 }
4195 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4196
4197 if (!irq_received)
4198 break;
4199
4200 ret = IRQ_HANDLED;
4201
4202 /* Consume port. Then clear IIR or we'll miss events */
Ville Syrjälä16c6c562014-04-01 10:54:36 +03004203 if (iir & I915_DISPLAY_PORT_INTERRUPT)
4204 i9xx_hpd_irq_handler(dev);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004205
Ville Syrjälä21ad8332013-02-19 15:16:39 +02004206 I915_WRITE(IIR, iir & ~flip_mask);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004207 new_iir = I915_READ(IIR); /* Flush posted writes */
4208
Chris Wilsona266c7d2012-04-24 22:59:44 +01004209 if (iir & I915_USER_INTERRUPT)
4210 notify_ring(dev, &dev_priv->ring[RCS]);
4211 if (iir & I915_BSD_USER_INTERRUPT)
4212 notify_ring(dev, &dev_priv->ring[VCS]);
4213
Chris Wilsona266c7d2012-04-24 22:59:44 +01004214 for_each_pipe(pipe) {
Chris Wilson2c8ba292012-04-24 22:59:46 +01004215 if (pipe_stats[pipe] & PIPE_START_VBLANK_INTERRUPT_STATUS &&
Ville Syrjälä90a72f82013-02-19 23:16:44 +02004216 i915_handle_vblank(dev, pipe, pipe, iir))
4217 flip_mask &= ~DISPLAY_PLANE_FLIP_PENDING(pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004218
4219 if (pipe_stats[pipe] & PIPE_LEGACY_BLC_EVENT_STATUS)
4220 blc_event = true;
Daniel Vetter4356d582013-10-16 22:55:55 +02004221
4222 if (pipe_stats[pipe] & PIPE_CRC_DONE_INTERRUPT_STATUS)
Daniel Vetter277de952013-10-18 16:37:07 +02004223 i9xx_pipe_crc_irq_handler(dev, pipe);
Chris Wilsona266c7d2012-04-24 22:59:44 +01004224
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004225 if (pipe_stats[pipe] & PIPE_FIFO_UNDERRUN_STATUS &&
4226 intel_set_cpu_fifo_underrun_reporting(dev, pipe, false))
Ville Syrjäläfc2c8072014-01-17 11:44:32 +02004227 DRM_ERROR("pipe %c underrun\n", pipe_name(pipe));
Ville Syrjälä2d9d2b02014-01-17 11:44:31 +02004228 }
Chris Wilsona266c7d2012-04-24 22:59:44 +01004229
4230 if (blc_event || (iir & I915_ASLE_INTERRUPT))
4231 intel_opregion_asle_intr(dev);
4232
Daniel Vetter515ac2b2012-12-01 13:53:44 +01004233 if (pipe_stats[0] & PIPE_GMBUS_INTERRUPT_STATUS)
4234 gmbus_irq_handler(dev);
4235
Chris Wilsona266c7d2012-04-24 22:59:44 +01004236 /* With MSI, interrupts are only generated when iir
4237 * transitions from zero to nonzero. If another bit got
4238 * set while we were handling the existing iir bits, then
4239 * we would never get another interrupt.
4240 *
4241 * This is fine on non-MSI as well, as if we hit this path
4242 * we avoid exiting the interrupt handler only to generate
4243 * another one.
4244 *
4245 * Note that for MSI this could cause a stray interrupt report
4246 * if an interrupt landed in the time between writing IIR and
4247 * the posting read. This should be rare enough to never
4248 * trigger the 99% of 100,000 interrupts test for disabling
4249 * stray interrupts.
4250 */
4251 iir = new_iir;
4252 }
4253
Daniel Vetterd05c6172012-04-26 23:28:09 +02004254 i915_update_dri1_breadcrumb(dev);
Chris Wilson2c8ba292012-04-24 22:59:46 +01004255
Chris Wilsona266c7d2012-04-24 22:59:44 +01004256 return ret;
4257}
4258
4259static void i965_irq_uninstall(struct drm_device * dev)
4260{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004261 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004262 int pipe;
4263
4264 if (!dev_priv)
4265 return;
4266
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004267 intel_hpd_irq_uninstall(dev_priv);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004268
Chris Wilsonadca4732012-05-11 18:01:31 +01004269 I915_WRITE(PORT_HOTPLUG_EN, 0);
4270 I915_WRITE(PORT_HOTPLUG_STAT, I915_READ(PORT_HOTPLUG_STAT));
Chris Wilsona266c7d2012-04-24 22:59:44 +01004271
4272 I915_WRITE(HWSTAM, 0xffffffff);
4273 for_each_pipe(pipe)
4274 I915_WRITE(PIPESTAT(pipe), 0);
4275 I915_WRITE(IMR, 0xffffffff);
4276 I915_WRITE(IER, 0x0);
4277
4278 for_each_pipe(pipe)
4279 I915_WRITE(PIPESTAT(pipe),
4280 I915_READ(PIPESTAT(pipe)) & 0x8000ffff);
4281 I915_WRITE(IIR, I915_READ(IIR));
4282}
4283
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004284static void intel_hpd_irq_reenable(unsigned long data)
Egbert Eichac4c16c2013-04-16 13:36:58 +02004285{
Jani Nikula2d1013d2014-03-31 14:27:17 +03004286 struct drm_i915_private *dev_priv = (struct drm_i915_private *)data;
Egbert Eichac4c16c2013-04-16 13:36:58 +02004287 struct drm_device *dev = dev_priv->dev;
4288 struct drm_mode_config *mode_config = &dev->mode_config;
4289 unsigned long irqflags;
4290 int i;
4291
4292 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
4293 for (i = (HPD_NONE + 1); i < HPD_NUM_PINS; i++) {
4294 struct drm_connector *connector;
4295
4296 if (dev_priv->hpd_stats[i].hpd_mark != HPD_DISABLED)
4297 continue;
4298
4299 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4300
4301 list_for_each_entry(connector, &mode_config->connector_list, head) {
4302 struct intel_connector *intel_connector = to_intel_connector(connector);
4303
4304 if (intel_connector->encoder->hpd_pin == i) {
4305 if (connector->polled != intel_connector->polled)
4306 DRM_DEBUG_DRIVER("Reenabling HPD on connector %s\n",
Jani Nikulac23cc412014-06-03 14:56:17 +03004307 connector->name);
Egbert Eichac4c16c2013-04-16 13:36:58 +02004308 connector->polled = intel_connector->polled;
4309 if (!connector->polled)
4310 connector->polled = DRM_CONNECTOR_POLL_HPD;
4311 }
4312 }
4313 }
4314 if (dev_priv->display.hpd_irq_setup)
4315 dev_priv->display.hpd_irq_setup(dev);
4316 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
4317}
4318
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004319void intel_irq_init(struct drm_device *dev)
4320{
Chris Wilson8b2e3262012-04-24 22:59:41 +01004321 struct drm_i915_private *dev_priv = dev->dev_private;
4322
4323 INIT_WORK(&dev_priv->hotplug_work, i915_hotplug_work_func);
Daniel Vetter99584db2012-11-14 17:14:04 +01004324 INIT_WORK(&dev_priv->gpu_error.work, i915_error_work_func);
Daniel Vetterc6a828d2012-08-08 23:35:35 +02004325 INIT_WORK(&dev_priv->rps.work, gen6_pm_rps_work);
Daniel Vettera4da4fa2012-11-02 19:55:07 +01004326 INIT_WORK(&dev_priv->l3_parity.error_work, ivybridge_parity_work);
Chris Wilson8b2e3262012-04-24 22:59:41 +01004327
Deepak Sa6706b42014-03-15 20:23:22 +05304328 /* Let's track the enabled rps events */
4329 dev_priv->pm_rps_events = GEN6_PM_RPS_EVENTS;
4330
Daniel Vetter99584db2012-11-14 17:14:04 +01004331 setup_timer(&dev_priv->gpu_error.hangcheck_timer,
4332 i915_hangcheck_elapsed,
Daniel Vetter61bac782012-12-01 21:03:21 +01004333 (unsigned long) dev);
Ville Syrjälä3ca1cce2014-01-17 13:43:51 +02004334 setup_timer(&dev_priv->hotplug_reenable_timer, intel_hpd_irq_reenable,
Egbert Eichac4c16c2013-04-16 13:36:58 +02004335 (unsigned long) dev_priv);
Daniel Vetter61bac782012-12-01 21:03:21 +01004336
Tomas Janousek97a19a22012-12-08 13:48:13 +01004337 pm_qos_add_request(&dev_priv->pm_qos, PM_QOS_CPU_DMA_LATENCY, PM_QOS_DEFAULT_VALUE);
Daniel Vetter9ee32fea2012-12-01 13:53:48 +01004338
Ville Syrjälä4cdb83e2013-10-11 21:52:44 +03004339 if (IS_GEN2(dev)) {
4340 dev->max_vblank_count = 0;
4341 dev->driver->get_vblank_counter = i8xx_get_vblank_counter;
4342 } else if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) {
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004343 dev->max_vblank_count = 0xffffffff; /* full 32 bit counter */
4344 dev->driver->get_vblank_counter = gm45_get_vblank_counter;
Ville Syrjälä391f75e2013-09-25 19:55:26 +03004345 } else {
4346 dev->driver->get_vblank_counter = i915_get_vblank_counter;
4347 dev->max_vblank_count = 0xffffff; /* only 24 bits of frame count */
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004348 }
4349
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004350 if (drm_core_check_feature(dev, DRIVER_MODESET)) {
Keith Packardc3613de2011-08-12 17:05:54 -07004351 dev->driver->get_vblank_timestamp = i915_get_vblank_timestamp;
Ville Syrjäläc2baf4b2013-09-23 14:48:50 +03004352 dev->driver->get_scanout_position = i915_get_crtc_scanoutpos;
4353 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004354
Ville Syrjälä43f328d2014-04-09 20:40:52 +03004355 if (IS_CHERRYVIEW(dev)) {
4356 dev->driver->irq_handler = cherryview_irq_handler;
4357 dev->driver->irq_preinstall = cherryview_irq_preinstall;
4358 dev->driver->irq_postinstall = cherryview_irq_postinstall;
4359 dev->driver->irq_uninstall = cherryview_irq_uninstall;
4360 dev->driver->enable_vblank = valleyview_enable_vblank;
4361 dev->driver->disable_vblank = valleyview_disable_vblank;
4362 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
4363 } else if (IS_VALLEYVIEW(dev)) {
Jesse Barnes7e231dbe2012-03-28 13:39:38 -07004364 dev->driver->irq_handler = valleyview_irq_handler;
4365 dev->driver->irq_preinstall = valleyview_irq_preinstall;
4366 dev->driver->irq_postinstall = valleyview_irq_postinstall;
4367 dev->driver->irq_uninstall = valleyview_irq_uninstall;
4368 dev->driver->enable_vblank = valleyview_enable_vblank;
4369 dev->driver->disable_vblank = valleyview_disable_vblank;
Egbert Eichfa00abe2013-02-25 12:06:48 -05004370 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004371 } else if (IS_GEN8(dev)) {
4372 dev->driver->irq_handler = gen8_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004373 dev->driver->irq_preinstall = gen8_irq_reset;
Ben Widawskyabd58f02013-11-02 21:07:09 -07004374 dev->driver->irq_postinstall = gen8_irq_postinstall;
4375 dev->driver->irq_uninstall = gen8_irq_uninstall;
4376 dev->driver->enable_vblank = gen8_enable_vblank;
4377 dev->driver->disable_vblank = gen8_disable_vblank;
4378 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004379 } else if (HAS_PCH_SPLIT(dev)) {
4380 dev->driver->irq_handler = ironlake_irq_handler;
Daniel Vetter723761b2014-05-22 17:56:34 +02004381 dev->driver->irq_preinstall = ironlake_irq_reset;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004382 dev->driver->irq_postinstall = ironlake_irq_postinstall;
4383 dev->driver->irq_uninstall = ironlake_irq_uninstall;
4384 dev->driver->enable_vblank = ironlake_enable_vblank;
4385 dev->driver->disable_vblank = ironlake_disable_vblank;
Daniel Vetter82a28bc2013-03-27 15:55:01 +01004386 dev_priv->display.hpd_irq_setup = ibx_hpd_irq_setup;
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004387 } else {
Chris Wilsonc2798b12012-04-22 21:13:57 +01004388 if (INTEL_INFO(dev)->gen == 2) {
4389 dev->driver->irq_preinstall = i8xx_irq_preinstall;
4390 dev->driver->irq_postinstall = i8xx_irq_postinstall;
4391 dev->driver->irq_handler = i8xx_irq_handler;
4392 dev->driver->irq_uninstall = i8xx_irq_uninstall;
Chris Wilsona266c7d2012-04-24 22:59:44 +01004393 } else if (INTEL_INFO(dev)->gen == 3) {
4394 dev->driver->irq_preinstall = i915_irq_preinstall;
4395 dev->driver->irq_postinstall = i915_irq_postinstall;
4396 dev->driver->irq_uninstall = i915_irq_uninstall;
4397 dev->driver->irq_handler = i915_irq_handler;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004398 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004399 } else {
Chris Wilsona266c7d2012-04-24 22:59:44 +01004400 dev->driver->irq_preinstall = i965_irq_preinstall;
4401 dev->driver->irq_postinstall = i965_irq_postinstall;
4402 dev->driver->irq_uninstall = i965_irq_uninstall;
4403 dev->driver->irq_handler = i965_irq_handler;
Egbert Eichbac56d52013-02-25 12:06:51 -05004404 dev_priv->display.hpd_irq_setup = i915_hpd_irq_setup;
Chris Wilsonc2798b12012-04-22 21:13:57 +01004405 }
Jesse Barnesf71d4af2011-06-28 13:00:41 -07004406 dev->driver->enable_vblank = i915_enable_vblank;
4407 dev->driver->disable_vblank = i915_disable_vblank;
4408 }
4409}
Daniel Vetter20afbda2012-12-11 14:05:07 +01004410
4411void intel_hpd_init(struct drm_device *dev)
4412{
4413 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich821450c2013-04-16 13:36:55 +02004414 struct drm_mode_config *mode_config = &dev->mode_config;
4415 struct drm_connector *connector;
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004416 unsigned long irqflags;
Egbert Eich821450c2013-04-16 13:36:55 +02004417 int i;
Daniel Vetter20afbda2012-12-11 14:05:07 +01004418
Egbert Eich821450c2013-04-16 13:36:55 +02004419 for (i = 1; i < HPD_NUM_PINS; i++) {
4420 dev_priv->hpd_stats[i].hpd_cnt = 0;
4421 dev_priv->hpd_stats[i].hpd_mark = HPD_ENABLED;
4422 }
4423 list_for_each_entry(connector, &mode_config->connector_list, head) {
4424 struct intel_connector *intel_connector = to_intel_connector(connector);
4425 connector->polled = intel_connector->polled;
4426 if (!connector->polled && I915_HAS_HOTPLUG(dev) && intel_connector->encoder->hpd_pin > HPD_NONE)
4427 connector->polled = DRM_CONNECTOR_POLL_HPD;
4428 }
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004429
4430 /* Interrupt setup is already guaranteed to be single-threaded, this is
4431 * just to make the assert_spin_locked checks happy. */
4432 spin_lock_irqsave(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004433 if (dev_priv->display.hpd_irq_setup)
4434 dev_priv->display.hpd_irq_setup(dev);
Daniel Vetterb5ea2d52013-06-27 17:52:15 +02004435 spin_unlock_irqrestore(&dev_priv->irq_lock, irqflags);
Daniel Vetter20afbda2012-12-11 14:05:07 +01004436}
Paulo Zanonic67a4702013-08-19 13:18:09 -03004437
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004438/* Disable interrupts so we can allow runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004439void intel_runtime_pm_disable_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004440{
4441 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004442
Paulo Zanoni730488b2014-03-07 20:12:32 -03004443 dev->driver->irq_uninstall(dev);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004444 dev_priv->pm.irqs_disabled = true;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004445}
4446
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004447/* Restore interrupts so we can recover from runtime PM. */
Paulo Zanoni730488b2014-03-07 20:12:32 -03004448void intel_runtime_pm_restore_interrupts(struct drm_device *dev)
Paulo Zanonic67a4702013-08-19 13:18:09 -03004449{
4450 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonic67a4702013-08-19 13:18:09 -03004451
Paulo Zanoni5d584b22014-03-07 20:08:15 -03004452 dev_priv->pm.irqs_disabled = false;
Paulo Zanoni730488b2014-03-07 20:12:32 -03004453 dev->driver->irq_preinstall(dev);
4454 dev->driver->irq_postinstall(dev);
Paulo Zanonic67a4702013-08-19 13:18:09 -03004455}